:root {
    --forest-950: #071812;
    --forest-900: #0b241c;
    --forest-800: #123629;
    --forest-700: #1a4a37;
    --sage: #8fa78d;
    --gold: #cba35a;
    --gold-light: #ead09b;
    --cream: #f5efe4;
    --ivory: #fcfaf5;
    --ink: #18211c;
    --muted: #667069;
    --line: rgba(11, 36, 28, 0.14);
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(7, 24, 18, 0.14);
    --radius-sm: 8px;
    --radius-md: 18px;
    --radius-lg: 30px;
    --shell: min(1180px, calc(100vw - 40px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--ivory);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
    position: fixed;
    z-index: 1000;
    left: 16px;
    top: -60px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--forest-900);
    border-radius: 0 0 8px 8px;
}
.skip-link:focus { top: 0; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.12;
    color: var(--forest-900);
}
h1 { font-size: clamp(3.1rem, 7vw, 6.6rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.3rem, 4.6vw, 4.4rem); letter-spacing: -0.035em; }
h3 { font-size: clamp(1.35rem, 2.4vw, 2rem); }
p { color: var(--muted); }
.display-compact { font-size: clamp(2.8rem, 5.8vw, 5.3rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.24rem); line-height: 1.75; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--forest-700);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.eyebrow--light { color: var(--gold-light); }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading p { max-width: 650px; margin-bottom: 0; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center p { margin-inline: auto; }
.section-heading--center .eyebrow::before { display: none; }
.section-pad { padding: 110px 0; }
.section-pad--small { padding: 78px 0; }
.section-cream { background: var(--cream); }
.section-forest { color: var(--white); background: var(--forest-900); }
.section-forest h2, .section-forest h3 { color: var(--white); }
.section-forest p { color: rgba(255,255,255,.68); }

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .primary-nav a:focus-visible, .social-links a:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }
.button--gold { color: var(--forest-950); background: var(--gold); }
.button--gold:hover { background: var(--gold-light); }
.button--forest { color: var(--white); background: var(--forest-900); }
.button--forest:hover { background: var(--forest-700); }
.button--cream { color: var(--forest-900); background: var(--cream); }
.button--outline { color: var(--forest-900); border-color: var(--forest-900); }
.button--outline:hover { color: var(--white); background: var(--forest-900); }
.button--outline-light { color: var(--white); border-color: rgba(255,255,255,.42); }
.button--outline-light:hover { color: var(--forest-900); background: var(--white); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--forest-800); font-weight: 700; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.announcement { color: rgba(255,255,255,.76); background: var(--forest-950); font-size: .75rem; }
.announcement__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.announcement a { display: flex; align-items: center; gap: 9px; }
.announcement strong { color: var(--white); }
.stars { color: var(--gold); letter-spacing: 1px; }
.announcement__location { text-transform: uppercase; letter-spacing: .1em; }
.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: 84px;
    background: rgba(252, 250, 245, .96);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: height .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { height: 72px; border-color: var(--line); box-shadow: 0 10px 30px rgba(7,24,18,.06); }
.site-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 190px; align-self: stretch; display: flex; align-items: center; gap: 11px; }
.brand img { width: 58px; height: 58px; flex: 0 0 58px; object-fit: cover; border: 1px solid rgba(203,163,90,.5); border-radius: 50%; filter: drop-shadow(0 5px 8px rgba(74,50,15,.14)); }
.brand__type { display: grid; line-height: 1; }
.brand__type strong { color: var(--forest-900); font-family: "Playfair Display", Georgia, serif; font-size: 1.35rem; letter-spacing: .03em; text-transform: uppercase; }
.brand__type small { margin-top: 5px; color: #6a766e; font-size: .57rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 31px); }
.primary-nav a { position: relative; color: #354039; font-size: .82rem; font-weight: 700; letter-spacing: .03em; }
.primary-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--gold); transition: right .2s ease; }
.primary-nav > a:hover::after, .primary-nav > a.is-active::after { right: 0; }
.primary-nav .nav-cta { padding: 11px 20px; color: var(--white); background: var(--forest-900); border-radius: 999px; }
.menu-toggle { display: none; width: 45px; height: 45px; padding: 10px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--forest-900); }

.hero {
    position: relative;
    min-height: calc(100svh - 118px);
    display: grid;
    align-items: end;
    color: var(--white);
    overflow: hidden;
    background: var(--forest-900);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; filter: saturate(1.08) contrast(1.05); }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,18,13,.90) 0%, rgba(4,22,16,.66) 42%, rgba(4,22,16,.15) 78%), linear-gradient(0deg, rgba(3,18,13,.74) 0%, transparent 50%); }
.hero__content { position: relative; z-index: 2; padding: 10vh 0 9vh; }
.hero__copy { max-width: 790px; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 { max-width: 780px; margin-bottom: 24px; color: var(--white); text-wrap: balance; }
.hero h1 em { color: var(--gold-light); font-weight: 600; }
.hero p { max-width: 640px; color: rgba(255,255,255,.78); font-size: clamp(1.02rem, 1.6vw, 1.24rem); }
.hero .button-row { margin-top: 34px; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 58px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.2); }
.hero__fact { min-width: 140px; }
.hero__fact strong { display: block; margin-bottom: 3px; color: var(--white); font-family: "Playfair Display", Georgia, serif; font-size: 1.35rem; }
.hero__fact span { color: rgba(255,255,255,.58); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }

.page-hero { position: relative; min-height: 64vh; display: grid; align-items: end; overflow: hidden; background: var(--forest-900); }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.04); }
.page-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,20,15,.9), rgba(4,20,15,.22)), linear-gradient(0deg, rgba(4,20,15,.62), transparent 60%); }
.page-hero__content { position: relative; z-index: 2; max-width: 850px; padding: 110px 0 74px; }
.page-hero h1 { margin-bottom: 18px; color: var(--white); }
.page-hero p { max-width: 660px; margin-bottom: 0; color: rgba(255,255,255,.76); font-size: 1.14rem; }
.page-hero .eyebrow { color: var(--gold-light); }

.trust-bar { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 110px; display: flex; align-items: center; gap: 14px; padding: 20px 26px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item__mark { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; color: var(--gold); background: var(--cream); border-radius: 50%; font-size: 1.15rem; }
.trust-item strong { display: block; color: var(--forest-900); font-size: .92rem; }
.trust-item span { display: block; color: var(--muted); font-size: .76rem; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__copy h2 { margin-bottom: 22px; }
.split__copy p { margin-bottom: 22px; }
.split__copy .button-row { margin-top: 30px; }
.image-stack { position: relative; min-height: 620px; }
.image-stack__large { position: absolute; inset: 0 18% 10% 0; width: 82%; height: 90%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.image-stack__small { position: absolute; right: 0; bottom: 0; width: 46%; height: 44%; object-fit: cover; border: 8px solid var(--ivory); border-radius: var(--radius-md); box-shadow: var(--shadow); }
.image-note { position: absolute; z-index: 2; top: 34px; right: -15px; width: 166px; padding: 18px; color: var(--white); background: var(--forest-900); border-radius: 12px; box-shadow: var(--shadow); }
.image-note strong { display: block; font-family: "Playfair Display", Georgia, serif; font-size: 1.4rem; }
.image-note span { font-size: .72rem; color: rgba(255,255,255,.64); }

.experience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.experience-card { position: relative; min-height: 510px; overflow: hidden; border-radius: var(--radius-md); background: var(--forest-900); }
.experience-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.experience-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,19,13,.92), rgba(3,19,13,.03) 70%); }
.experience-card__content { position: absolute; z-index: 2; inset: auto 0 0; padding: 30px 26px; }
.experience-card h3 { margin-bottom: 8px; color: var(--white); }
.experience-card p { margin-bottom: 17px; color: rgba(255,255,255,.67); font-size: .9rem; }
.experience-card a { color: var(--gold-light); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.experience-card:hover img { transform: scale(1.045); }

.feature-list { display: grid; gap: 18px; margin: 30px 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 35px; color: #455149; }
.feature-list li::before { content: "✦"; position: absolute; left: 0; top: -1px; color: var(--gold); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.feature-card__number { display: block; margin-bottom: 24px; color: var(--gold); font-family: "Playfair Display", Georgia, serif; font-size: 2rem; }
.feature-card h3 { margin-bottom: 12px; }
.feature-card p { margin-bottom: 0; }

.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.room-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 16px 46px rgba(7,24,18,.06); }
.room-card__image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.room-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-card:hover .room-card__image img { transform: scale(1.035); }
.room-card__tag { position: absolute; left: 16px; top: 16px; padding: 7px 12px; color: var(--forest-900); background: rgba(252,250,245,.92); border-radius: 999px; font-size: .69rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.room-card__body { padding: 26px; }
.room-card__body h3 { margin-bottom: 9px; }
.room-card__body p { min-height: 50px; margin-bottom: 18px; font-size: .9rem; }
.amenity-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.amenity-row span { padding: 6px 10px; color: #526057; background: var(--cream); border-radius: 99px; font-size: .7rem; }

.wedding-showcase { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 690px; }
.wedding-showcase__image { position: relative; overflow: hidden; }
.wedding-showcase__image img { width: 100%; height: 100%; object-fit: cover; }
.wedding-showcase__copy { display: flex; align-items: center; padding: clamp(48px, 7vw, 100px); color: var(--white); background: var(--forest-900); }
.wedding-showcase__copy h2 { color: var(--white); }
.wedding-showcase__copy p { color: rgba(255,255,255,.68); }
.wedding-showcase__copy .feature-list li { color: rgba(255,255,255,.76); }
.wedding-showcase__copy .feature-list li::before { color: var(--gold-light); }

.gallery-preview { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 260px 260px; gap: 14px; }
.gallery-preview figure { position: relative; margin: 0; overflow: hidden; border-radius: 14px; }
.gallery-preview figure:first-child { grid-row: 1/3; }
.gallery-preview img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-preview figure:hover img { transform: scale(1.04); }

.reviews { position: relative; overflow: hidden; }
.reviews::before { content: "“"; position: absolute; right: 5vw; top: -80px; color: rgba(203,163,90,.09); font-family: Georgia, serif; font-size: 28rem; line-height: 1; }
.review-summary { display: flex; align-items: center; gap: 22px; margin-bottom: 40px; }
.review-summary__score { font-family: "Playfair Display", Georgia, serif; font-size: 4.6rem; line-height: 1; color: var(--white); }
.review-summary .stars { font-size: 1.2rem; }
.review-summary p { margin: 4px 0 0; }
.review-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { padding: 30px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); }
.review-card .stars { display: block; margin-bottom: 22px; }
.review-card blockquote { margin: 0 0 28px; color: var(--white); font-family: "Playfair Display", Georgia, serif; font-size: 1.3rem; line-height: 1.5; }
.review-card cite { color: rgba(255,255,255,.62); font-size: .8rem; font-style: normal; }
.review-card--cta { display: flex; flex-direction: column; justify-content: space-between; background: var(--gold); }
.review-card--cta h3 { color: var(--forest-950); }
.review-card--cta p { color: rgba(7,24,18,.72); }

.location-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; }
.location-card { padding: 42px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow); }
.location-card address { margin-bottom: 24px; color: #4c5850; font-style: normal; }
.location-card__rows { display: grid; gap: 12px; margin-bottom: 28px; }
.location-card__rows a { color: var(--forest-800); font-weight: 700; }
.map-frame { min-height: 500px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 500px; border: 0; }

.contact-ribbon { padding: 58px 0; color: var(--white); background: var(--forest-700); }
.contact-ribbon__inner { display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.contact-ribbon h2 { margin-bottom: 0; color: var(--white); font-size: clamp(2rem, 4vw, 3.5rem); }
.contact-ribbon__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.site-footer { color: rgba(255,255,255,.7); background: var(--forest-950); }
.footer-main { display: grid; grid-template-columns: 1.6fr .7fr 1fr; gap: clamp(40px, 8vw, 110px); padding: 78px 0 55px; }
.footer-brand img { width: 112px; height: 112px; object-fit: cover; margin-bottom: 22px; border: 1px solid rgba(203,163,90,.45); border-radius: 50%; }
.footer-brand p { max-width: 370px; color: rgba(255,255,255,.58); }
.social-links { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 25px; }
.social-links a { color: var(--gold-light); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-column { display: grid; align-content: start; gap: 10px; }
.footer-column h2 { margin-bottom: 10px; color: var(--white); font-family: "DM Sans", Arial, sans-serif; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a { color: rgba(255,255,255,.64); font-size: .9rem; }
.footer-column a:hover { color: var(--gold-light); }
.footer-contact { gap: 14px; }
.footer-seo { padding: 28px 0 42px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-seo__toggle { width: 100%; display: flex; justify-content: space-between; padding: 0 0 20px; color: var(--white); background: transparent; border: 0; text-align: left; font-weight: 700; }
.footer-seo__toggle span { color: var(--gold); }
.footer-seo__links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px 26px; }
.footer-seo__links a { color: rgba(255,255,255,.45); font-size: .72rem; }
.footer-seo__links a:hover { color: var(--gold-light); }
.footer-bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom__inner { display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.38); font-size: .7rem; }
.mobile-actions { display: none; }

.gallery-controls { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-bottom: 40px; }
.gallery-controls button { padding: 10px 18px; color: var(--forest-800); background: transparent; border: 1px solid var(--line); border-radius: 99px; cursor: pointer; }
.gallery-controls button.is-active, .gallery-controls button:hover { color: var(--white); background: var(--forest-900); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 330px; gap: 14px; }
.gallery-grid button { position: relative; padding: 0; overflow: hidden; background: var(--forest-900); border: 0; border-radius: 13px; cursor: zoom-in; }
.gallery-grid button:nth-child(7n+1), .gallery-grid button:nth-child(7n+5) { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .3s ease; }
.gallery-grid button:hover img { opacity: .83; transform: scale(1.035); }
.lightbox { width: min(1000px, 92vw); padding: 0; overflow: hidden; background: #06110d; border: 0; border-radius: 14px; box-shadow: 0 30px 100px rgba(0,0,0,.5); }
.lightbox::backdrop { background: rgba(0,0,0,.86); }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; }
.lightbox p { margin: 0; padding: 14px 60px 18px 20px; color: rgba(255,255,255,.72); }
.lightbox button { position: absolute; right: 15px; top: 15px; width: 40px; height: 40px; color: var(--white); background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; cursor: pointer; }

.form-card { padding: clamp(28px, 4vw, 48px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1/-1; }
.field label { color: var(--forest-900); font-size: .78rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 12px 14px; color: var(--ink); background: var(--ivory); border: 1px solid rgba(11,36,28,.18); border-radius: 8px; outline: none; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(203,163,90,.18); }
.validation { color: #a72d23; font-size: .75rem; }
.form-status { display: block; margin-top: 16px; color: var(--forest-700); font-weight: 700; }
.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px; align-items: start; }
.contact-details { display: grid; gap: 18px; }
.contact-detail { padding: 24px; background: var(--cream); border-radius: 12px; }
.contact-detail strong { display: block; margin-bottom: 5px; color: var(--forest-900); }
.contact-detail p, .contact-detail a { margin: 0; color: var(--muted); }

.seo-hero { padding: 94px 0 60px; background: var(--cream); }
.seo-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.seo-hero h1 { margin-bottom: 20px; }
.seo-hero__image { position: relative; height: 510px; }
.seo-hero__image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.seo-hero__image::after { content: "Gautam Resort · Varanasi"; position: absolute; right: -18px; bottom: 28px; padding: 12px 18px; color: var(--forest-900); background: var(--gold-light); border-radius: 6px; font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.seo-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 38px 0; }
.seo-highlight { padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; }
.seo-highlight span { color: var(--gold); }
.seo-highlight strong { display: block; margin-top: 9px; color: var(--forest-900); font-size: .84rem; }
.faq-list { display: grid; gap: 14px; }
.faq-list details { padding: 22px 24px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; }
.faq-list summary { color: var(--forest-900); cursor: pointer; font-weight: 700; }
.faq-list p { margin: 14px 0 0; }

@media (max-width: 1050px) {
    .primary-nav { gap: 16px; }
    .primary-nav a { font-size: .76rem; }
    .experience-grid { grid-template-columns: repeat(2, 1fr); }
    .experience-card { min-height: 460px; }
    .footer-seo__links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
    :root { --shell: min(100% - 32px, 680px); }
    body { padding-bottom: 62px; }
    h1 { font-size: clamp(2.8rem, 13vw, 4.8rem); }
    .section-pad { padding: 78px 0; }
    .announcement__location { display: none; }
    .announcement__inner { justify-content: center; }
    .site-header, .site-header.is-scrolled { height: 70px; }
    .brand { width: 170px; }
    .brand img { width: 50px; height: 50px; flex-basis: 50px; }
    .brand__type strong { font-size: 1.13rem; }
    .menu-toggle { display: block; }
    .primary-nav {
        position: fixed;
        z-index: 99;
        inset: 104px 0 0;
        display: grid;
        align-content: start;
        gap: 0;
        padding: 25px 24px 40px;
        background: var(--ivory);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    }
    .site-header.is-scrolled .primary-nav { inset-block-start: 104px; }
    .primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
    .primary-nav a { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: .95rem; }
    .primary-nav .nav-cta { margin-top: 18px; color: var(--white); text-align: center; border: 0; }
    .hero { min-height: calc(100svh - 104px); }
    .hero__media::after { background: linear-gradient(90deg, rgba(3,18,13,.86), rgba(3,18,13,.42)), linear-gradient(0deg, rgba(3,18,13,.72), transparent 60%); }
    .hero__content { padding: 70px 0 58px; }
    .hero__facts { gap: 20px; margin-top: 42px; }
    .page-hero { min-height: 520px; }
    .trust-bar__grid { grid-template-columns: 1fr 1fr; }
    .trust-item:nth-child(2) { border-right: 0; }
    .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .split, .location-grid, .contact-layout, .seo-hero__grid { grid-template-columns: 1fr; gap: 42px; }
    .split--reverse .split__media { order: 0; }
    .image-stack { min-height: 530px; }
    .room-grid, .feature-grid { grid-template-columns: 1fr; }
    .wedding-showcase { grid-template-columns: 1fr; }
    .wedding-showcase__image { min-height: 520px; }
    .gallery-preview { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 240px; }
    .gallery-preview figure:first-child { grid-column: 1/3; grid-row: auto; }
    .review-grid { grid-template-columns: 1fr; }
    .contact-ribbon__inner { display: grid; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1/-1; }
    .footer-seo__links { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 280px; }
    .seo-hero__image { height: 440px; }
    .mobile-actions { position: fixed; z-index: 120; inset: auto 0 0; height: 62px; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--forest-950); box-shadow: 0 -8px 30px rgba(0,0,0,.18); }
    .mobile-actions a { display: grid; place-items: center; color: var(--white); border-right: 1px solid rgba(255,255,255,.14); font-size: .76rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
    .mobile-actions a:nth-child(2) { color: var(--forest-950); background: var(--gold); }
}

@media (max-width: 540px) {
    :root { --shell: calc(100% - 26px); }
    .announcement span:last-child { display: none; }
    .hero__facts { display: grid; grid-template-columns: 1fr 1fr; }
    .button-row, .contact-ribbon__actions { display: grid; grid-template-columns: 1fr; }
    .button { width: 100%; }
    .trust-bar__grid, .experience-grid, .gallery-preview, .footer-main, .form-grid { grid-template-columns: 1fr; }
    .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
    .gallery-preview { grid-template-rows: repeat(5, 230px); }
    .gallery-preview figure:first-child { grid-column: auto; }
    .image-stack { min-height: 440px; }
    .image-stack__large { inset: 0 10% 11% 0; width: 90%; }
    .image-stack__small { width: 49%; height: 39%; border-width: 5px; }
    .image-note { top: 20px; right: 0; width: 145px; }
    .wedding-showcase__image { min-height: 400px; }
    .wedding-showcase__copy { padding: 48px 26px; }
    .location-card { padding: 28px; }
    .footer-main { gap: 38px; }
    .footer-brand { grid-column: auto; }
    .footer-seo__links { grid-template-columns: 1fr; }
    .footer-bottom__inner { display: grid; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 330px; }
    .gallery-grid button:nth-child(7n+1), .gallery-grid button:nth-child(7n+5) { grid-row: auto; }
    .seo-highlights { grid-template-columns: 1fr; }
    .seo-hero__image { height: 350px; }
    .seo-hero__image::after { right: 12px; }
    .field--full { grid-column: auto; }
}

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