:root {
    --paper: #e9e7df;
    --paper-2: #d8d7cd;
    --ink: #151713;
    --muted: #6f7268;
    --line: rgba(21, 23, 19, 0.18);
    --moss: #68745e;
    --moss-dark: #3f493a;
    --acid: #c8d08f;
    --white: #f6f5ef;
    --max: 1500px;
    --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    --body: Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--ink); color: var(--paper); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

.section-pad { max-width: var(--max); margin: 0 auto; padding-left: 4vw; padding-right: 4vw; }
.eyebrow, .kicker, .section-number, .summary-label, .login-state {
    font-family: var(--display);
    font-weight: 800;
    font-size: 11px;
    line-height: 1;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.site-header {
    height: 82px;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 4vw;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 40;
}
.brand {
    width: max-content;
    font-family: var(--display);
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -.06em;
}
.desktop-nav { display: flex; gap: 34px; }
.desktop-nav a, .account-link {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    position: relative;
}
.desktop-nav a::after, .account-link::after {
    content: "";
    position: absolute;
    left: 0; right: 100%; bottom: -7px;
    height: 1px; background: var(--ink);
    transition: right .25s ease;
}
.desktop-nav a:hover::after, .account-link:hover::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 22px; }
.menu-toggle { display: none; background: none; border: 0; font-size: 26px; padding: 0; cursor: pointer; }
.mobile-menu { display: none; }

.hero {
    min-height: calc(100vh - 82px);
    display: grid;
    grid-template-columns: .94fr 1.06fr;
    gap: 5vw;
    padding-top: 8vh;
    padding-bottom: 7vh;
    align-items: stretch;
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; }
.hero h1, .page-hero h1, .reservation-intro h1, .checkout-main h1, .confirmation h1, .login-layout h1 {
    margin: 22px 0 26px;
    font-family: var(--display);
    font-size: clamp(64px, 7.8vw, 132px);
    line-height: .78;
    letter-spacing: -.075em;
    font-weight: 900;
    text-transform: uppercase;
}
.hero-intro { max-width: 430px; font-size: 17px; line-height: 1.55; color: var(--muted); }
.hero-actions { margin-top: 35px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 23px;
    border: 1px solid var(--ink);
    font-family: var(--display);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
}
.button-dark { background: var(--ink); color: var(--white); }
.button-outline { background: transparent; color: var(--ink); }
.button-full { width: 100%; }
.text-link { font-family: var(--display); font-weight: 800; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.hero-art {
    min-height: 640px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 30%, rgba(200,208,143,.9), transparent 0 16%, transparent 17%),
        radial-gradient(circle at 24% 72%, rgba(17,21,16,.92), transparent 0 19%, transparent 20%),
        linear-gradient(145deg, #7d8b6f 0 36%, #b3ba9e 36% 61%, #596451 61% 100%);
}
.garden-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(233,231,223,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(233,231,223,.18) 1px, transparent 1px);
    background-size: 13% 13%;
    mix-blend-mode: overlay;
}
.garden-orbit { position: absolute; border: 1px solid rgba(233,231,223,.6); border-radius: 50%; }
.orbit-a { width: 72%; aspect-ratio: 1; right: -21%; top: 3%; }
.orbit-b { width: 58%; aspect-ratio: 1; left: -20%; bottom: -21%; }
.garden-caption { position: absolute; right: 22px; bottom: 20px; font: 800 10px/1 var(--display); letter-spacing: .16em; color: var(--white); }

.manifesto {
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 90px 1.2fr .8fr;
    gap: 5vw;
    padding-top: 80px;
    padding-bottom: 100px;
}
.manifesto h2, .editorial-copy h2, .story-copy h2, .faq h2 {
    margin: 12px 0 0;
    font-family: var(--display);
    font-size: clamp(44px, 5.2vw, 82px);
    line-height: .93;
    letter-spacing: -.055em;
    text-transform: uppercase;
}
.manifesto-copy { margin: 24px 0 0; align-self: end; max-width: 460px; color: var(--muted); line-height: 1.65; }

.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--ink); padding-left: 0; padding-right: 0; max-width: none; }
.experience-card { min-height: 410px; padding: 38px 4vw; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.experience-card::after { content: "↗"; position: absolute; right: 30px; top: 30px; font-size: 20px; transition: transform .25s ease; }
.experience-card:hover::after { transform: translate(5px,-5px); }
.experience-card span, .experience-card em { font: 800 10px/1.2 var(--display); letter-spacing: .12em; font-style: normal; }
.experience-card strong { margin: auto 0 16px; font: 900 clamp(38px, 4vw, 66px)/.9 var(--display); letter-spacing: -.05em; }
.experience-card p { max-width: 300px; margin: 0 0 28px; line-height: 1.45; }
.card-garden { background: var(--acid); }
.card-tea { background: var(--paper-2); }
.card-night { background: var(--moss-dark); color: var(--white); }

.editorial { padding-top: 120px; padding-bottom: 120px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 6vw; }
.editorial-art { min-height: 650px; background: #c4c0b3; position: relative; overflow: hidden; }
.stone { position: absolute; border-radius: 46% 54% 59% 41% / 50% 44% 56% 50%; background: #54584f; filter: contrast(1.05); }
.stone-one { width: 58%; height: 50%; left: 8%; top: 17%; transform: rotate(-12deg); }
.stone-two { width: 40%; height: 38%; right: 1%; bottom: 8%; background: #7c806f; transform: rotate(17deg); }
.editorial-label { position: absolute; left: 22px; bottom: 20px; font: 800 10px/1 var(--display); letter-spacing: .15em; }
.editorial-copy { display: flex; flex-direction: column; justify-content: center; }
.editorial-copy p { max-width: 470px; line-height: 1.7; color: var(--muted); margin: 28px 0; }

.visit-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); }
.visit-strip > * { padding: 28px 3vw; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 9px; }
.visit-strip span { font: 800 9px/1 var(--display); letter-spacing: .14em; }
.visit-strip strong, .visit-strip a { font: 900 16px/1 var(--display); letter-spacing: -.01em; }
.visit-strip a { justify-content: center; background: var(--ink); color: var(--white); }

.compact-hero { padding-top: 11vh; padding-bottom: 9vh; border-bottom: 1px solid var(--line); }
.compact-hero h1 { font-size: clamp(62px, 8.3vw, 140px); margin-bottom: 0; }
.split-story { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; padding-top: 110px; padding-bottom: 110px; }
.story-art { min-height: 560px; background: var(--moss); position: relative; overflow: hidden; }
.story-art::before, .story-art::after { content: ""; position: absolute; border: 1px solid rgba(233,231,223,.55); width: 78%; height: 78%; border-radius: 50%; }
.story-art::before { left: -26%; top: -15%; }
.story-art::after { right: -35%; bottom: -28%; }
.story-art span { position: absolute; left: 20px; bottom: 20px; color: var(--white); font: 800 10px/1 var(--display); letter-spacing: .14em; }
.story-copy { align-self: center; }
.story-copy p { max-width: 580px; line-height: 1.75; color: var(--muted); }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); padding-left: 0; padding-right: 0; max-width: none; }
.principles article { padding: 55px 4vw 80px; border-right: 1px solid var(--line); }
.principles span { font: 800 10px/1 var(--display); letter-spacing: .15em; }
.principles h3 { margin: 65px 0 13px; font: 900 30px/.95 var(--display); letter-spacing: -.03em; }
.principles p { color: var(--muted); line-height: 1.6; }

.menu-layout { display: grid; grid-template-columns: .55fr 1.45fr; gap: 7vw; padding-top: 90px; padding-bottom: 120px; }
.menu-note { color: var(--muted); line-height: 1.65; }
.menu-note span { display: block; margin-top: 30px; font: 800 9px/1 var(--display); letter-spacing: .15em; color: var(--ink); }
.menu-group + .menu-group { margin-top: 80px; }
.menu-group h2 { font: 900 12px/1 var(--display); letter-spacing: .18em; border-bottom: 2px solid var(--ink); padding-bottom: 14px; }
.menu-item { display: flex; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line); padding: 24px 0; }
.menu-item strong { font: 900 25px/1 var(--display); letter-spacing: -.025em; }
.menu-item p { margin: 7px 0 0; color: var(--muted); font-size: 13px; }
.menu-item > span { font: 900 17px/1 var(--display); }

.visit-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; padding-top: 90px; padding-bottom: 110px; }
.map-art { min-height: 640px; background: #b9b8aa; position: relative; overflow: hidden; }
.map-art::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 12% 12%; }
.map-art > span { position: absolute; top: 20px; right: 22px; font: 900 15px/1 var(--display); }
.map-path { position: absolute; border: 2px solid var(--ink); border-radius: 50%; }
.path-one { width: 72%; height: 42%; left: 3%; top: 20%; transform: rotate(-18deg); }
.path-two { width: 45%; height: 55%; right: 1%; bottom: 3%; transform: rotate(25deg); }
.map-dot { position: absolute; width: 14px; height: 14px; background: var(--ink); border-radius: 50%; left: 53%; top: 48%; box-shadow: 0 0 0 10px rgba(21,23,19,.13); }
.visit-info { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.visit-info > div { background: var(--paper); padding: 34px; min-height: 240px; display: flex; flex-direction: column; }
.visit-info span { font: 800 9px/1 var(--display); letter-spacing: .15em; }
.visit-info strong { margin-top: auto; font: 900 28px/.95 var(--display); letter-spacing: -.03em; }
.visit-info p { color: var(--muted); font-size: 13px; line-height: 1.5; }
.faq { padding-top: 70px; padding-bottom: 120px; border-top: 1px solid var(--line); }
.faq h2 { font-size: clamp(40px, 5vw, 70px); margin-bottom: 55px; }
.faq details { border-top: 1px solid var(--line); padding: 22px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font: 900 16px/1.2 var(--display); letter-spacing: .03em; }
.faq details p { max-width: 640px; color: var(--muted); line-height: 1.65; }

.reservation-layout, .checkout-layout, .login-layout { min-height: calc(100vh - 82px); display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; padding-top: 9vh; padding-bottom: 10vh; align-items: start; }
.reservation-intro h1, .checkout-main h1, .login-layout h1 { font-size: clamp(62px, 7.3vw, 118px); }
.reservation-intro > p, .login-layout > div > p { max-width: 450px; color: var(--muted); line-height: 1.6; }
.price-key { margin-top: 55px; border-top: 1px solid var(--line); }
.price-key > div { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.price-key span, .price-key strong { font: 800 10px/1 var(--display); letter-spacing: .08em; }
.reservation-form { background: var(--white); padding: clamp(25px, 4vw, 58px); }
.field { display: block; margin-bottom: 24px; }
.field > span { display: block; margin-bottom: 9px; font: 800 9px/1 var(--display); letter-spacing: .14em; text-transform: uppercase; }
.field input, .field select, .field textarea {
    width: 100%; border: 0; border-bottom: 1px solid #aaa99e; background: transparent; border-radius: 0; padding: 13px 0; outline: none; color: var(--ink);
}
.field textarea { border: 1px solid #aaa99e; padding: 13px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field small, .form-error { color: #8a2a20; display: block; margin-top: 6px; font-size: 11px; }
.form-fineprint { margin: 14px 0 0; text-align: center; color: var(--muted); font-size: 11px; }

.checkout-main { max-width: 660px; }
.payment-card { margin-top: 60px; border: 1px solid var(--line); }
.payment-card-head { display: flex; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--line); font: 800 9px/1 var(--display); letter-spacing: .12em; }
.payment-option { padding: 20px 16px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 22px 1fr auto; gap: 12px; align-items: center; }
.payment-option span { font: 900 13px/1 var(--display); }
.payment-option em { font: 800 9px/1 var(--display); letter-spacing: .08em; font-style: normal; color: var(--muted); }
.payment-card > p { padding: 18px 16px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.booking-summary { background: var(--moss-dark); color: var(--white); padding: clamp(28px, 4vw, 56px); min-height: 600px; display: flex; flex-direction: column; }
.booking-summary h2 { font: 900 clamp(38px,4vw,58px)/.92 var(--display); letter-spacing: -.04em; text-transform: uppercase; margin: 25px 0 60px; }
.booking-summary dl { margin: 0; }
.booking-summary dl > div { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.24); padding: 14px 0; gap: 30px; }
.booking-summary dt { font: 800 9px/1 var(--display); letter-spacing: .12em; }
.booking-summary dd { margin: 0; text-align: right; font-size: 13px; }
.summary-total { margin-top: auto; display: flex; justify-content: space-between; align-items: end; padding: 30px 0 20px; border-top: 1px solid rgba(255,255,255,.24); }
.summary-total span { font: 800 10px/1 var(--display); letter-spacing: .12em; }
.summary-total strong { font: 900 40px/1 var(--display); }
.booking-summary .button-dark { background: var(--white); color: var(--ink); border-color: var(--white); }

.confirmation { min-height: calc(100vh - 82px); padding-top: 10vh; padding-bottom: 12vh; text-align: center; }
.confirmation-mark { width: 64px; height: 64px; margin: 35px auto 20px; border: 1px solid var(--ink); border-radius: 50%; display: grid; place-items: center; font-size: 20px; }
.confirmation h1 { font-size: clamp(64px, 9vw, 140px); }
.confirmation > p { color: var(--muted); }
.confirmation-ticket { max-width: 900px; margin: 60px auto 45px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.confirmation-ticket > div { padding: 25px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 16px; }
.confirmation-ticket > div:last-child { border-right: 0; }
.confirmation-ticket span { font: 800 9px/1 var(--display); letter-spacing: .12em; }
.confirmation-ticket strong { font: 900 17px/1.1 var(--display); }

.login-panel { background: var(--white); padding: clamp(28px, 5vw, 65px); min-height: 470px; display: flex; flex-direction: column; justify-content: center; }
.login-panel h2 { font: 900 42px/.95 var(--display); letter-spacing: -.04em; margin: 22px 0; }
.login-panel p { color: var(--muted); line-height: 1.6; }
.login-panel small { margin-top: 24px; color: var(--muted); line-height: 1.5; }
.google-button { margin-top: 30px; border: 1px solid var(--ink); min-height: 54px; display: flex; align-items: center; justify-content: center; gap: 14px; font: 900 11px/1 var(--display); letter-spacing: .11em; }
.google-g { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-family: Arial, sans-serif; }

.site-footer { max-width: var(--max); margin: 0 auto; padding: 80px 4vw 30px; border-top: 1px solid var(--line); }
.footer-mark { font: 900 clamp(70px, 11vw, 170px)/.72 var(--display); letter-spacing: -.075em; }
.site-footer > div:first-child p { color: var(--muted); }
.footer-meta { margin-top: 70px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; font: 800 10px/1 var(--display); letter-spacing: .1em; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 35px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; font: 800 9px/1 var(--display); letter-spacing: .1em; color: var(--muted); }

@media (max-width: 900px) {
    .site-header { grid-template-columns: 1fr auto; height: 68px; }
    .desktop-nav, .account-link { display: none; }
    .menu-toggle { display: block; }
    .mobile-menu { position: fixed; inset: 68px 0 auto 0; background: rgba(233, 231, 223, .78); color: var(--ink); z-index: 35; display: grid; grid-template-columns: 1fr; transform: translateY(-120%); transition: transform .35s cubic-bezier(.22,.61,.36,1); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(21,23,19,.14); }
    .mobile-menu.is-open { transform: translateY(0); }
    .mobile-menu a { padding: 22px 5vw; border-bottom: 1px solid rgba(21,23,19,.14); font: 700 28px/.9 var(--display); letter-spacing: -.02em; color: var(--ink); }
    .hero, .editorial, .split-story, .visit-layout, .reservation-layout, .checkout-layout, .login-layout, .menu-layout { grid-template-columns: 1fr; }
    .hero { padding-top: 8vh; gap: 50px; }
    .hero-art { min-height: 72vw; }
    .manifesto { grid-template-columns: 1fr; gap: 20px; }
    .experience-grid { grid-template-columns: 1fr; }
    .experience-card { min-height: 330px; }
    .editorial-art, .story-art, .map-art { min-height: 72vw; }
    .visit-strip { grid-template-columns: 1fr 1fr; }
    .visit-strip > * { border-bottom: 1px solid var(--line); }
    .principles { grid-template-columns: 1fr; }
    .principles article { border-right: 0; border-bottom: 1px solid var(--line); }
    .visit-info { grid-template-columns: 1fr 1fr; }
    .confirmation-ticket { grid-template-columns: 1fr 1fr; }
    .confirmation-ticket > div:nth-child(2) { border-right: 0; }
    .confirmation-ticket > div { border-bottom: 1px solid var(--line); }
    .footer-meta { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .section-pad, .site-header, .site-footer { padding-left: 20px; padding-right: 20px; }
    .hero { min-height: auto; padding-top: 70px; padding-bottom: 70px; }
    .hero h1, .page-hero h1, .reservation-intro h1, .checkout-main h1, .confirmation h1, .login-layout h1 { font-size: clamp(54px, 18vw, 82px); }
    .manifesto, .editorial, .split-story, .visit-layout { padding-top: 70px; padding-bottom: 70px; }
    .visit-strip { grid-template-columns: 1fr; }
    .visit-info { grid-template-columns: 1fr; }
    .reservation-layout, .checkout-layout, .login-layout { padding-top: 70px; padding-bottom: 80px; }
    .reservation-form { padding: 28px 20px; }
    .payment-option { grid-template-columns: 20px 1fr; }
    .payment-option em { grid-column: 2; }
    .confirmation-ticket { grid-template-columns: 1fr; }
    .confirmation-ticket > div { border-right: 0; }
    .footer-bottom { flex-direction: column; }
}

/* Demo authentication + demo card UI */
.google-button {
    width: 100%;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
}
.demo-google-dialog {
    width: min(92vw, 470px);
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--ink);
}
.demo-google-dialog::backdrop {
    background: rgba(21, 23, 19, .34);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.demo-google-window {
    position: relative;
    background: #fff;
    border: 1px solid rgba(21, 23, 19, .18);
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 24px 80px rgba(21, 23, 19, .22);
}
.demo-google-close-row { position: absolute; top: 14px; right: 14px; }
.demo-google-close { border: 0; background: transparent; font-size: 25px; cursor: pointer; color: var(--ink); }
.demo-badge { display: inline-block; font: 800 9px/1 var(--display); letter-spacing: .15em; border: 1px solid var(--ink); padding: 7px 9px; }
.demo-google-mark { width: 42px; height: 42px; margin: 28px 0 18px; border: 1px solid var(--ink); border-radius: 50%; display: grid; place-items: center; font: 700 20px/1 Arial, sans-serif; }
.demo-google-window h2 { margin: 0 0 10px; font: 700 30px/1 var(--display); letter-spacing: -.03em; }
.demo-google-window > p { color: var(--muted); line-height: 1.5; }
.demo-google-account { margin: 24px 0 14px; padding: 16px; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 5px; }
.demo-google-account strong { font: 700 14px/1.2 var(--display); }
.demo-google-account span { color: var(--muted); font-size: 12px; }
.demo-google-warning { font-size: 11px; }

.demo-card-form { padding: 20px 16px 8px; display: grid; gap: 16px; }
.demo-card-form label { display: grid; gap: 8px; }
.demo-card-form label > span { font: 700 9px/1 var(--display); letter-spacing: .12em; }
.demo-card-form input { width: 100%; border: 1px solid var(--line); background: rgba(246,245,239,.62); color: var(--ink); padding: 14px 13px; outline: none; }
.demo-card-form input:focus { border-color: var(--ink); }
.demo-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

@media (max-width: 600px) {
    .demo-google-window { padding: 28px 22px; border-radius: 14px; }
}
