/* fonts.css */
@font-face{font-family:'Instrument Serif';font-style:italic;font-weight:400;font-display:swap;src:url(/assets/fonts/instrument-serif-italic-400.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}
@font-face{font-family:'Instrument Serif';font-style:normal;font-weight:400;font-display:swap;src:url(/assets/fonts/instrument-serif-normal-400.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}
@font-face{font-family:'Jost';font-style:normal;font-weight:300 600;font-display:swap;src:url(/assets/fonts/jost-normal-300-600.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}
/* base.css */
:root {
  --night: #07080F; --midnight: #0E1024; --indigo: #1A1C46; --dusk: #3A2B5E;
  --coral: #E07A5F; --amber: #F2A65A; --gold: #E9C987; --cream: #F6EFE3; --mist: #A9A6BD;
  --line: rgba(233, 201, 135, .16); --line-2: rgba(246, 239, 227, .1);
  --card: rgba(26, 28, 70, .38); --card-2: rgba(14, 16, 36, .72);
  --serif: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
  --sans: 'Jost', 'Avenir Next', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --wrap: 1200px; --gutter: clamp(20px, 5vw, 48px);
  --r: 18px; --r-sm: 10px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --sec-y: clamp(84px, 11vw, 150px);
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0; background: var(--night); color: var(--cream);
  font: 400 1.0625rem/1.65 var(--sans); letter-spacing: .005em;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration-color: rgba(233, 201, 135, .5); text-underline-offset: .2em; }
a:hover { color: var(--gold); }
p, h1, h2, h3, ul, ol, figure { margin: 0; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--coral); color: var(--night); }
.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: calc(760px + var(--gutter) * 2); }
.vh { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; padding: 10px 16px; background: var(--cream); color: var(--night); border-radius: 8px; text-decoration: none; }
.skip:focus { top: 12px; }
.sm-only { display: none; }
.display, .h1, .h2, .h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -.012em; line-height: 1.02; }
.display { font-size: clamp(3.3rem, 8.4vw, 7.4rem); line-height: .94; letter-spacing: -.02em; }
.h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); }
.h2 { font-size: clamp(2.4rem, 4.8vw, 4rem); text-wrap: balance; }
.h3 { font-size: clamp(1.5rem, 2.2vw, 1.85rem); line-height: 1.12; }
.display em, .h1 em, .h2 em { font-style: italic; color: var(--gold); }
.lede { font-size: clamp(1.08rem, 1.4vw, 1.22rem); color: var(--mist); max-width: 38em; font-weight: 300; }
.eyebrow { font-size: .78rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.fineprint { font-size: .85rem; color: var(--mist); line-height: 1.55; }
.kicker {
  display: inline-flex; align-items: center; gap: .6em; margin-bottom: 1.1rem;
  font-size: .76rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
}
.kicker svg { color: var(--coral); }
.btn {
  --bg: transparent; display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 52px; padding: 0 1.6em; border-radius: 999px; border: 1px solid transparent; background: var(--bg);
  font: 500 .92rem/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; text-decoration: none; cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s, border-color .25s, box-shadow .25s, color .25s;
}
.btn--primary {
  --bg: linear-gradient(180deg, #F4B26A, var(--coral)); background: var(--bg); color: var(--night);
  box-shadow: 0 10px 30px -12px rgba(224, 122, 95, .7), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.btn--primary:hover { color: var(--night); transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(242, 166, 90, .8), inset 0 1px 0 rgba(255, 255, 255, .4); }
.btn--ghost { border-color: rgba(233, 201, 135, .45); color: var(--cream); background: rgba(7, 8, 15, .25); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(233, 201, 135, .06); }
.btn--sm { min-height: 42px; padding: 0 1.2em; font-size: .8rem; }
.btn[disabled] { opacity: .7; cursor: progress; transform: none; }
.sec { position: relative; padding: var(--sec-y) 0; }
.sec-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head .lede { margin-top: 1.2rem; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head--center .lede { margin-left: auto; margin-right: auto; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (max-width: 720px) {
  .lg-only { display: none; }
  .sm-only { display: inline; }
  body { font-size: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
/* chrome.css */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; padding: 14px 0;
  transition: background-color .35s, backdrop-filter .35s, padding .35s, border-color .35s; border-bottom: 1px solid transparent;
}
.site-header.is-scrolled, .page-sub .site-header {
  background: rgba(7, 8, 15, .78); -webkit-backdrop-filter: blur(14px) saturate(140%); backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-2); padding: 10px 0;
}
.site-header__in { display: flex; align-items: center; gap: 28px; }
.brand { flex: none; display: block; }
.brand img { height: 32px; width: auto; }
.site-nav { display: flex; gap: 26px; margin-left: auto; }
.site-nav a { font-size: .8rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; color: rgba(246, 239, 227, .82); }
.site-nav a:hover { color: var(--gold); }
.menu { display: none; position: relative; }
.menu__btn { list-style: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); cursor: pointer; }
.menu__btn::-webkit-details-marker { display: none; }
.menu__bars, .menu__bars::before, .menu__bars::after { display: block; width: 18px; height: 1.5px; background: var(--cream); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.menu__bars { position: relative; }
.menu__bars::before, .menu__bars::after { content: ''; position: absolute; left: 0; }
.menu__bars::before { top: -6px; } .menu__bars::after { top: 6px; }
.menu[open] .menu__bars { background: transparent; }
.menu[open] .menu__bars::before { transform: translateY(6px) rotate(45deg); }
.menu[open] .menu__bars::after { transform: translateY(-6px) rotate(-45deg); }
.menu__panel {
  position: absolute; right: 0; top: calc(100% + 12px); width: min(78vw, 300px); padding: 10px;
  display: flex; flex-direction: column; background: rgba(14, 16, 36, .97); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .7);
}
.menu__panel a { padding: 13px 14px; border-radius: var(--r-sm); text-decoration: none; font-family: var(--serif); font-size: 1.35rem; }
.menu__panel a:hover { background: rgba(233, 201, 135, .08); }
@media (max-width: 1020px) {
  .site-nav { display: none; }
  .site-header__cta { margin-left: auto; }
  .menu { display: block; }
}
@media (max-width: 420px) {
  .site-header__in { gap: 12px; }
  .brand img { height: 26px; }
  .site-header__cta { padding: 0 1em; }
}
.hero {
  position: relative; min-height: max(700px, 100svh); display: flex; align-items: flex-start; overflow: hidden; isolation: isolate;
  background: linear-gradient(180deg, #0A0B1C 0%, #15163A 30%, #2E2458 52%, #6A3D63 68%, #C0656A 80%, #E9935E 90%, #F2B06A 100%);
}
.hero__sky { position: absolute; inset: 0 0 30%; z-index: -3; }
.hero__sky .sky { width: 100%; height: 100%; }
.hero__sky .tw { animation: tw 4s ease-in-out infinite alternate; }
.hero__sky .shoot { stroke-dasharray: 150 400; stroke-dashoffset: 550; animation: shoot 11s 3s linear infinite; }
.hero__scene { position: absolute; inset: auto 0 0; z-index: -2; height: min(74%, 62vw); }
.hero__scene .scene { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); height: 100%; width: auto; min-width: 100%; max-width: none; }
.hero__scene .flicker { animation: flicker 7s steps(1) infinite; }
.hero__scene .pan { animation: pan 26s ease-in-out infinite alternate; }
.hero__scene .glow { animation: glow 5s ease-in-out infinite alternate; transform-origin: 1060px 430px; }
.hero__scene .dust circle { animation: tw 3s ease-in-out infinite alternate; }
.hero__scene .ff { animation: ff 6s ease-in-out infinite alternate; }
.hero__scene .flies > g:nth-child(2n) .ff { animation-duration: 8s; animation-delay: -3s; }
.hero__scene .flies > g:nth-child(3n) .ff { animation-duration: 5s; animation-delay: -1.5s; }
.hero__scene .bulbs .tw { animation: tw 2.6s ease-in-out infinite alternate; }
.hero__grain {
  position: absolute; inset: 0; z-index: -1; opacity: .09; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero::after { content: ''; position: absolute; inset: auto 0 0; height: 120px; background: linear-gradient(transparent, var(--night)); z-index: -1; }
.hero__content { padding-top: clamp(120px, 17vh, 180px); padding-bottom: 60px; }
.hero__content .display { margin: 1.1rem 0 1.4rem; max-width: 9.5em; text-shadow: 0 2px 40px rgba(7, 8, 15, .45); }
.hero__sub { max-width: 32em; font-size: clamp(1.05rem, 1.45vw, 1.24rem); font-weight: 300; color: rgba(246, 239, 227, .86); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2rem; }
.sunset-chip {
  display: inline-flex; align-items: center; gap: .6em; margin-top: 1.6rem; padding: 8px 16px 8px 12px; border-radius: 999px;
  background: rgba(7, 8, 15, .38); border: 1px solid rgba(233, 201, 135, .25); font-size: .88rem; color: rgba(246, 239, 227, .85);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.sunset-chip svg { color: var(--amber); }
.sunset-chip strong { font-weight: 500; color: var(--gold); }
.hero__in { animation: rise 1.1s var(--ease) both; }
.hero__in--2 { animation-delay: .12s; } .hero__in--3 { animation-delay: .24s; } .hero__in--4 { animation-delay: .36s; } .hero__in--5 { animation-delay: .5s; }
@media (max-width: 720px) {
  .hero { min-height: max(760px, 100svh); }
  .hero__scene { height: 46%; }
  .hero__content { padding-top: 112px; }
  .hero__ctas .btn { flex: 1 1 auto; }
}
@keyframes rise { from { opacity: 0; transform: translateY(18px); } }
@keyframes tw { from { opacity: .25; } to { opacity: 1; } }
@keyframes shoot { 0%, 88% { stroke-dashoffset: 550; opacity: 0; } 90% { opacity: 1; } 100% { stroke-dashoffset: -150; opacity: 0; } }
@keyframes flicker { 0%, 100% { opacity: 0; } 31% { opacity: .08; } 32% { opacity: 0; } 63% { opacity: .05; } 64% { opacity: 0; } }
@keyframes pan { to { transform: translateX(-24px); } }
@keyframes glow { from { opacity: .75; } to { opacity: 1; } }
@keyframes ff { 0% { transform: translate(0, 0); opacity: .2; } 50% { opacity: 1; } 100% { transform: translate(14px, -18px); opacity: .4; } }
.site-footer { border-top: 1px solid var(--line-2); background: #05060C; padding: 64px 0 28px; font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px 48px; }
.footer__brand img { height: 36px; width: auto; margin-bottom: 14px; }
.footer__brand p { color: var(--mist); max-width: 26em; }
.footer__nav { display: grid; grid-template-columns: repeat(2, max-content); gap: 10px 40px; align-content: start; justify-self: end; }
.footer__nav a { text-decoration: none; color: rgba(246, 239, 227, .8); }
.footer__note { grid-column: 1 / -1; color: var(--mist); font-size: .85rem; max-width: 52em; padding-top: 24px; border-top: 1px solid var(--line-2); }
.footer__base { display: flex; justify-content: space-between; gap: 16px; margin-top: 22px; color: rgba(169, 166, 189, .75); font-size: .8rem; letter-spacing: .06em; }
@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__nav { justify-self: start; }
}
/* sections.css */
.sec--intro { padding-top: clamp(60px, 8vw, 110px); }
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.intro__body { display: grid; gap: 1.2rem; color: rgba(246, 239, 227, .82); font-weight: 300; font-size: clamp(1.05rem, 1.35vw, 1.18rem); padding-top: 2.4rem; }
.intro__body p:first-child::first-letter { font-family: var(--serif); float: left; font-size: 4.2em; line-height: .8; padding: .08em .1em 0 0; color: var(--gold); }
.sec--how { background: linear-gradient(180deg, var(--night), var(--midnight) 40%, var(--night)); }
.how__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 96px); }
.how__head .sec-head { position: sticky; top: 120px; }
.steps { display: grid; gap: 0; counter-reset: s; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 28px 0; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num { font-family: var(--serif); font-style: italic; font-size: 2.4rem; line-height: 1; color: var(--coral); }
.step__when { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .45rem; }
.step .h3 { margin-bottom: .45rem; }
.step__body > p:last-child { color: var(--mist); }
.sec--packages { background: radial-gradient(80% 60% at 50% 0%, rgba(58, 43, 94, .55), transparent 70%), var(--night); }
.night-toggle {
  position: relative; display: inline-grid; grid-template-columns: 1fr 1fr; margin: 2rem auto 0; padding: 5px; border: 1px solid var(--line);
  border-radius: 999px; background: rgba(14, 16, 36, .8); min-width: 280px;
}
.night-toggle label { position: relative; z-index: 1; cursor: pointer; }
.night-toggle input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.night-toggle span { display: block; padding: 10px 22px; border-radius: 999px; font-size: .82rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--mist); transition: color .3s; }
.night-toggle input:checked + span { color: var(--night); }
.night-toggle input:focus-visible + span { outline: 2px solid var(--amber); outline-offset: 2px; }
.night-toggle__thumb { position: absolute; top: 5px; bottom: 5px; left: 5px; width: calc(50% - 5px); border-radius: 999px; background: linear-gradient(180deg, var(--gold), var(--amber)); transition: transform .35s var(--ease); }
.night-toggle:has(input[value="weekend"]:checked) .night-toggle__thumb { transform: translateX(100%); }
.pkgs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.pkg {
  position: relative; display: flex; flex-direction: column; padding: 36px 30px 30px; border-radius: var(--r);
  background: linear-gradient(180deg, rgba(26, 28, 70, .55), rgba(14, 16, 36, .8)); border: 1px solid var(--line-2);
}
.pkg--featured { border-color: rgba(233, 201, 135, .55); background: linear-gradient(180deg, rgba(58, 43, 94, .75), rgba(20, 18, 48, .92)); box-shadow: 0 40px 80px -40px rgba(242, 166, 90, .45); }
.pkg__badge {
  position: absolute; top: -14px; left: 30px; display: inline-flex; align-items: center; gap: .45em; padding: 6px 14px; border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--amber)); color: var(--night); font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
}
.pkg__name { font-family: var(--serif); font-weight: 400; font-size: 2.1rem; line-height: 1.05; }
.pkg__tag { color: var(--mist); margin-top: .4rem; min-height: 3.3em; }
.pkg__price { display: flex; flex-direction: column; gap: 4px; margin: 1.4rem 0 .4rem; padding: 1.1rem 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.price { display: flex; align-items: baseline; gap: .6em; }
.price__amt { font-family: var(--serif); font-size: 3.2rem; line-height: 1; color: var(--cream); }
.price__when { font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.sec--packages:has(input[value="weekend"]:checked) .price--weeknight,
.sec--packages:has(input[value="weeknight"]:checked) .price--weekend { display: none; }
.pkg__hours { font-size: .88rem; color: var(--mist); margin-top: .6rem; }
.pkg__list { display: grid; gap: .7rem; margin: 1.3rem 0 1.8rem; flex: 1; }
.pkg__list li { display: grid; grid-template-columns: 14px 1fr; gap: 12px; align-items: start; font-size: .98rem; }
.pkg__list svg { color: var(--coral); margin-top: .45em; }
.pkg__cta { width: 100%; }
.addons { max-width: 760px; margin: clamp(48px, 6vw, 80px) auto 0; padding: 32px clamp(22px, 4vw, 40px); border: 1px solid var(--line-2); border-radius: var(--r); background: rgba(14, 16, 36, .55); }
.addons__title { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; margin-bottom: 1rem; }
.addons__list { display: grid; gap: .9rem; }
.addons__list li { display: flex; align-items: baseline; gap: 10px; }
.addons__name { display: flex; flex-direction: column; }
.addons__note { font-size: .8rem; color: var(--gold); }
.addons__dots { flex: 1; min-width: 20px; border-bottom: 1px dotted rgba(233, 201, 135, .35); transform: translateY(-4px); }
.addons__price { font-family: var(--serif); font-size: 1.35rem; white-space: nowrap; }
.addons__foot { margin-top: 1.4rem; }
.incs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; }
.inc { padding: 34px 30px; background: var(--night); transition: background-color .3s; }
.inc:hover { background: #0B0C1A; }
.inc__icon { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; margin-bottom: 1.2rem; color: var(--gold); background: rgba(233, 201, 135, .07); border: 1px solid var(--line); }
.inc .h3 { margin-bottom: .5rem; }
.inc p { color: var(--mist); }
.sec--occasions { background: linear-gradient(180deg, var(--night), var(--midnight)); }
.posters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.poster { display: flex; flex-direction: column; }
.poster .poster-art { width: 100%; height: auto; aspect-ratio: 2 / 3; border-radius: 12px; border: 1px solid var(--line); margin-bottom: 1.2rem; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .8); transition: transform .5s var(--ease); }
.poster:hover .poster-art { transform: translateY(-4px) rotate(-.4deg); }
.poster__tag { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.poster__title { font-family: var(--serif); font-weight: 400; font-size: 2rem; line-height: 1.1; margin: .25rem 0 .5rem; }
.poster__body { color: var(--mist); flex: 1; }
.poster__link { margin-top: 1rem; font-size: .9rem; text-decoration: none; color: var(--cream); }
.poster__sug { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mist); margin-right: .3em; }
@media (max-width: 1020px) {
  .pkgs { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; gap: 34px; }
  .pkg__tag { min-height: 0; }
  .incs, .posters { grid-template-columns: repeat(2, 1fr); }
  .how__grid { grid-template-columns: 1fr; }
  .how__head .sec-head { position: static; }
}
@media (max-width: 720px) {
  .intro__grid { grid-template-columns: 1fr; }
  .intro__body { padding-top: 0; }
  .incs { grid-template-columns: 1fr; }
  .posters { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; gap: 44px; }
  .step { grid-template-columns: 48px 1fr; gap: 14px; }
  .night-toggle { min-width: 0; width: 100%; max-width: 340px; }
  .night-toggle span { padding: 10px 12px; }
}
/* sections2.css */
.sec--area { background: var(--midnight); overflow: hidden; }
.area__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.area__groups { display: grid; gap: 26px; }
.area__name { font-size: .76rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem; }
.area__places { display: flex; flex-wrap: wrap; gap: 8px; }
.area__places li { padding: 6px 14px; border-radius: 999px; border: 1px solid var(--line); font-size: .92rem; color: rgba(246, 239, 227, .88); background: rgba(7, 8, 15, .35); }
.area__places li.is-home { border-color: var(--coral); color: var(--cream); background: rgba(224, 122, 95, .14); }
.area__outside { display: flex; align-items: center; gap: .6em; margin-top: 28px; color: var(--mist); }
.area__outside svg { color: var(--coral); flex: none; }
.area__map { position: relative; justify-self: center; width: 100%; max-width: 400px; }
.area__map .map { width: 100%; height: auto; border-radius: var(--r); border: 1px solid var(--line); box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .9); }
.map text { font-family: var(--sans); font-size: 11px; fill: rgba(246, 239, 227, .78); letter-spacing: .02em; }
.map text.home { font-family: var(--serif); font-size: 17px; fill: var(--cream); }
.map text.cap { font-size: 8.5px; letter-spacing: .2em; text-transform: uppercase; fill: var(--gold); }
.map text.lake { font-family: var(--serif); font-style: italic; font-size: 20px; fill: rgba(233, 201, 135, .4); }
.map .pulse { transform-box: fill-box; transform-origin: center; animation: pulse 2.6s ease-out infinite; }
@keyframes pulse { from { transform: scale(1); opacity: .9; } to { transform: scale(4); opacity: 0; } }
.faq__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.faq__head .sec-head { position: sticky; top: 120px; }
.qas { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; cursor: pointer; }
.qa summary::-webkit-details-marker { display: none; }
.qa__q { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.2; }
.qa summary:hover .qa__q { color: var(--gold); }
.qa__icon { position: relative; flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); }
.qa__icon::before, .qa__icon::after { content: ''; position: absolute; left: 50%; top: 50%; width: 11px; height: 1.5px; background: var(--gold); transform: translate(-50%, -50%); transition: transform .3s var(--ease); }
.qa__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.qa[open] .qa__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.qa__a { padding: 0 48px 24px 0; color: var(--mist); max-width: 40em; }
.sec--closing { text-align: center; overflow: hidden; isolation: isolate; background: linear-gradient(180deg, var(--night), #1B1433 70%, #3A2140); padding-bottom: clamp(110px, 14vw, 190px); }
.closing__rays { position: absolute; inset: auto 0 0; height: 90%; z-index: -1; opacity: .85; }
.closing__rays .rays, .nf__rays .rays { width: 100%; height: 100%; }
.closing__in { display: grid; justify-items: center; gap: 1.4rem; }
.closing__in .h2 { max-width: 13em; }
.page { position: relative; padding: clamp(130px, 16vw, 180px) 0 clamp(80px, 10vw, 130px); min-height: 70vh; }
.page__head { margin-bottom: 48px; }
.page__head .lede { margin-top: 1.2rem; }
.prose { display: grid; gap: 32px; }
.prose__sec { padding-top: 26px; border-top: 1px solid var(--line-2); }
.prose__sec .h3 { margin-bottom: .6rem; }
.prose__sec p { color: rgba(246, 239, 227, .82); }
.page__back { margin-top: 48px; }
.page--404 { overflow: hidden; isolation: isolate; display: flex; align-items: center; min-height: 88vh; background: linear-gradient(180deg, var(--night), #1B1433 75%, #3A2140); text-align: center; }
.nf__rays { position: absolute; inset: auto 0 0; height: 70%; z-index: -1; opacity: .7; }
.nf__in { display: grid; justify-items: center; gap: 1.3rem; }
.nf__code { display: inline-flex; align-items: center; gap: .6em; font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.nf__code svg { color: var(--coral); }
.nf__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: .6rem; }
@media (max-width: 1020px) {
  .area__grid, .faq__grid { grid-template-columns: 1fr; }
  .faq__head .sec-head { position: static; }
  .area__map { max-width: 360px; }
}
@media (max-width: 720px) {
  .qa__a { padding-right: 0; }
  .area__map { max-width: 320px; }
}
/* form.css */
.sec--book { background: radial-gradient(70% 50% at 80% 20%, rgba(58, 43, 94, .45), transparent 70%), var(--night); }
.book__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 88px); align-items: start; }
.next { margin-top: 8px; padding: 26px 28px; border-radius: var(--r); border: 1px solid var(--line-2); background: rgba(14, 16, 36, .55); }
.next__title { font-size: .76rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.next__list { display: grid; gap: .9rem; }
.next__list li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: baseline; }
.next__num { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); font-family: var(--serif); font-style: italic; color: var(--coral); }
.book__card { padding: clamp(24px, 4vw, 44px); border-radius: calc(var(--r) + 6px); border: 1px solid rgba(233, 201, 135, .28); background: linear-gradient(180deg, rgba(26, 28, 70, .6), rgba(14, 16, 36, .88)); box-shadow: 0 50px 100px -50px rgba(0, 0, 0, .9); }
.bform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 20px; }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field--wide { grid-column: 1 / -1; }
.field > label { font-size: .78rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(246, 239, 227, .86); }
.field__opt { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--mist); }
.field input:not([type="checkbox"]), .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; border-radius: var(--r-sm); border: 1px solid rgba(246, 239, 227, .16);
  background: rgba(7, 8, 15, .6); color: var(--cream); font-size: 1rem; transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.field select { appearance: none; -webkit-appearance: none; padding-right: 40px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23E9C987' stroke-width='1.6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.field select option { background: var(--midnight); color: var(--cream); }
.field input::placeholder, .field textarea::placeholder { color: rgba(169, 166, 189, .6); }
.field input[type="date"] { color-scheme: dark; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(242, 166, 90, .2); background: rgba(7, 8, 15, .8); }
.field [aria-invalid="true"] { border-color: #F08A7A !important; }
.field__help { font-size: .82rem; color: var(--mist); line-height: 1.45; }
.field__err { font-size: .84rem; color: #F5A596; }
.field__sun { display: flex; align-items: center; gap: .5em; font-size: .88rem; color: var(--gold); }
.field__sun svg { color: var(--amber); flex: none; }
.check { display: inline-flex; align-items: center; gap: .6em; font-size: .92rem; color: rgba(246, 239, 227, .86); cursor: pointer; margin-top: 2px; }
.check input { width: 18px; height: 18px; accent-color: var(--coral); margin: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.bform__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-top: 28px; }
.bform__submit { min-width: 220px; }
.bform__foot .fineprint { flex: 1 1 220px; }
.bform__alert { margin-top: 22px; padding: 16px 18px; border-radius: var(--r-sm); border: 1px solid rgba(240, 138, 122, .5); background: rgba(224, 122, 95, .12); font-size: .95rem; }
.bform__alert-title { font-weight: 500; color: #FFD2C8; margin-bottom: .3rem; }
.bform__alert a { color: var(--gold); }
.bform__success { display: grid; justify-items: center; gap: 1rem; text-align: center; padding: 40px 10px; outline: none; }
.bform__success[hidden] { display: none; }
.bform__success-icon { display: grid; place-items: center; width: 68px; height: 68px; border-radius: 50%; color: var(--night); background: linear-gradient(180deg, var(--gold), var(--coral)); box-shadow: 0 0 60px rgba(242, 166, 90, .45); }
.bform__success p { color: var(--mist); max-width: 30em; }
.is-sent .bform { display: none; }
@media (max-width: 1020px) {
  .book__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .bform__grid { grid-template-columns: 1fr; }
  .bform__submit { width: 100%; }
}
