/* ============================================================
   LAZY DUCK COTTAGES — "Dark Cabin / Cinematic" design system
   Dark by default, warm-paper light theme via [data-theme="light"].
   ============================================================ */

/* 1. TOKENS ------------------------------------------------- */
:root {
  /* surfaces (dark, default) */
  --ink:        #0E110D;
  --ink-2:      #12150F;
  --charcoal:   #181C15;
  --surface:    #1F241B;
  --surface-2:  #262C20;

  /* text */
  --text:       #ECE6D6;
  --text-soft:  #C7C5B4;
  --muted:      #9A9C89;

  /* brand */
  --gold:       #C9A24B;
  --gold-bright:#E2BC63;
  --gold-deep:  #A07E33;
  --moss:       #5B6B4E;
  --moss-soft:  #7C8A6E;

  --border:     rgba(236, 230, 214, .12);
  --border-strong: rgba(236, 230, 214, .22);
  --scrim:      rgba(8, 10, 7, .62);
  --card:       #161A13;
  --glow:       rgba(201, 162, 75, .16);

  /* type */
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body:    'Hanken Grotesk', system-ui, -apple-system, Segoe UI, sans-serif;

  /* metrics */
  --container: 1240px;
  --radius:    16px;
  --radius-sm: 10px;
  --nav-h:     76px;
  --ease:      cubic-bezier(.22, .61, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.4, .5, 1);

  --shadow:    0 24px 60px -24px rgba(0,0,0,.7);
  --shadow-sm: 0 10px 30px -16px rgba(0,0,0,.6);

  color-scheme: dark;
}

[data-theme="light"] {
  --ink:        #F3EDE1;
  --ink-2:      #EFE8DA;
  --charcoal:   #EDE6D7;
  --surface:    #FBF7EE;
  --surface-2:  #F4EEE1;
  --text:       #1E2218;
  --text-soft:  #3C4233;
  --muted:      #6A6F5C;
  --gold:       #9A6A2E;
  --gold-bright:#B07F3C;
  --gold-deep:  #7E5523;
  --moss:       #5B6B4E;
  --border:     rgba(30, 34, 24, .14);
  --border-strong: rgba(30, 34, 24, .26);
  --scrim:      rgba(20, 18, 10, .42);
  --card:       #FBF7EE;
  --glow:       rgba(154, 106, 46, .12);
  --shadow:     0 24px 60px -28px rgba(60,48,24,.4);
  --shadow-sm:  0 10px 30px -18px rgba(60,48,24,.35);
  color-scheme: light;
}

/* 2. RESET / BASE ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* film grain + faint top-of-page lantern glow over the whole page */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-bright); }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }
::selection { background: var(--gold); color: var(--ink); }

/* 3. TYPOGRAPHY -------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--text);
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.9rem, 7vw, 5.4rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }
h4 { font-size: 1.15rem; }
p { color: var(--text-soft); }
strong { color: var(--text); font-weight: 600; }

.display-italic { font-style: italic; font-weight: 400; color: var(--gold-bright); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--body);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow--center::before { display: none; }

.lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-soft); line-height: 1.6; }

/* 4. LAYOUT ------------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }
.container--narrow { max-width: 820px; }

.section { padding: clamp(72px, 11vw, 144px) 0; position: relative; }
.section--tight { padding: clamp(48px, 7vw, 90px) 0; }
.section--alt { background: var(--ink-2); }
.section--panel { background: var(--charcoal); }

.section-head { max-width: 660px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head h2 { margin-bottom: 1rem; }

.grid-cottages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

.glow-spot { position: absolute; border-radius: 50%; filter: blur(80px); background: var(--glow); pointer-events: none; z-index: 0; }

/* 5. BUTTONS ----------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--body); font-weight: 600; font-size: .92rem; letter-spacing: .01em;
  padding: .95rem 1.7rem; border-radius: 999px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn--gold { background: var(--gold); color: #14110A; box-shadow: 0 10px 30px -12px var(--gold-deep); }
.btn--gold:hover { background: var(--gold-bright); color: #14110A; transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--border-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1rem; }
.btn--block { width: 100%; }

.text-link { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--gold); }
.text-link::after { content: "→"; transition: transform .25s var(--ease); }
.text-link:hover::after { transform: translateX(5px); }

/* 6. HEADER ------------------------------------------------ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--ink) 72%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
#site-header.scrolled { background: color-mix(in srgb, var(--ink) 92%, transparent); border-bottom-color: var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 1.5rem; }

.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--text); }
.brand:hover { color: var(--text); }
.brand__mark { width: 34px; height: 34px; color: var(--gold); flex: none; }
.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--display); font-size: 1.18rem; font-weight: 600; letter-spacing: -0.01em; }
.brand__sub { font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; align-items: center; gap: 1.7rem; }
.nav-link { position: relative; font-size: .92rem; font-weight: 500; color: var(--text-soft); padding: .3rem 0; }
.nav-link:hover { color: var(--text); }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: var(--gold); transition: width .28s var(--ease); }
.nav-link:hover::after { width: 100%; }

.has-menu { position: relative; }
.submenu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: .5rem; min-width: 220px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: .25s var(--ease);
}
.has-menu:hover .submenu, .has-menu:focus-within .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.submenu a { display: block; padding: .6rem .8rem; border-radius: 7px; color: var(--text-soft); font-size: .9rem; }
.submenu a:hover { background: var(--surface-2); color: var(--gold-bright); }
.submenu small { display: block; font-size: .72rem; color: var(--muted); }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .9rem; color: var(--text); }
.header-phone svg { width: 15px; height: 15px; color: var(--gold); }
.header-phone:hover { color: var(--gold-bright); }

.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-strong);
  display: inline-grid; place-items: center; color: var(--text); transition: .25s var(--ease);
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold-bright); transform: rotate(-12deg); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

.nav-toggle { display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { height: 2px; width: 22px; background: var(--text); border-radius: 2px; transition: .3s var(--ease); }

/* 7. HERO -------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding-top: calc(var(--nav-h) + 32px); padding-bottom: clamp(56px, 9vw, 110px); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 18% 100%, rgba(201,162,75,.18), transparent 55%),
    linear-gradient(180deg, rgba(8,10,7,.55) 0%, rgba(8,10,7,.15) 35%, rgba(8,10,7,.78) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { color: #F5F0E2; margin: 1.2rem 0 1.4rem; text-shadow: 0 2px 40px rgba(0,0,0,.4); }
.hero .lede { color: #E2DDCE; max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__meta { display: flex; gap: 2rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero__meta-item { display: flex; flex-direction: column; }
.hero__meta-item b { font-family: var(--display); font-size: 1.6rem; font-weight: 600; color: var(--gold-bright); }
.hero__meta-item span { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #C9C6B5; }
.hero .eyebrow { color: var(--gold-bright); }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; color: #D9D5C5; font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue::after { content: ""; width: 1px; height: 38px; background: linear-gradient(var(--gold), transparent); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* 8. PAGE HEADER (interior pages) -------------------------- */
.page-hero { position: relative; padding: calc(var(--nav-h) + 70px) 0 64px; overflow: hidden; }
.page-hero--image { min-height: 56svh; display: flex; align-items: flex-end; padding-bottom: 56px; }
.page-hero--image .page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero--image .page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--image .page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,10,7,.5), rgba(8,10,7,.82)); }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { color: #F5F0E2; margin-top: 1rem; }
.page-hero .lede { margin-top: 1.1rem; max-width: 620px; }
.breadcrumb { font-size: .82rem; color: var(--muted); }
.breadcrumb a { color: var(--text-soft); }

/* 9. COTTAGE CARD ------------------------------------------ */
.cottage-card { position: relative; display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease); }
.cottage-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.cottage-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.cottage-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.cottage-card:hover .cottage-card__media img { transform: scale(1.05); }
.cottage-card__badge { position: absolute; top: 14px; left: 14px; z-index: 2; display: inline-flex; align-items: center; gap: .4rem; background: var(--gold); color: #14110A; font-size: .72rem; font-weight: 700; letter-spacing: .04em; padding: .35rem .7rem; border-radius: 999px; }
.cottage-card__rate { position: absolute; bottom: 14px; right: 14px; z-index: 2; background: color-mix(in srgb, var(--ink) 80%, transparent); backdrop-filter: blur(6px); border: 1px solid var(--border); color: var(--text); padding: .4rem .8rem; border-radius: 999px; font-size: .82rem; }
.cottage-card__rate b { color: var(--gold-bright); font-family: var(--display); font-size: 1rem; }
.cottage-card__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.cottage-card__name { margin-bottom: .35rem; }
.cottage-card__specs { display: flex; flex-wrap: wrap; gap: .4rem 1rem; font-size: .82rem; color: var(--muted); margin-bottom: .9rem; }
.cottage-card__specs span { display: inline-flex; align-items: center; gap: .35rem; }
.cottage-card__blurb { font-size: .94rem; color: var(--text-soft); margin-bottom: 1.3rem; flex: 1; }
.cottage-card__foot { display: flex; align-items: center; justify-content: space-between; padding-top: 1.1rem; border-top: 1px solid var(--border); }

/* 10. COTTAGE DETAIL --------------------------------------- */
.specs-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin: 2rem 0; }
.specs-bar div { background: var(--card); padding: 1.2rem 1.3rem; }
.specs-bar b { display: block; font-family: var(--display); font-size: 1.45rem; font-weight: 600; color: var(--text); }
.specs-bar span { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.amenities { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .9rem 1.6rem; }
.amenities li { display: flex; align-items: center; gap: .7rem; color: var(--text-soft); font-size: .95rem; }
.amenities li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; box-shadow: 0 0 0 3px var(--glow); }

.prose p { margin-bottom: 1.1em; }
.prose p:last-child { margin-bottom: 0; }

/* 11. GALLERY + LIGHTBOX ----------------------------------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.2rem; }
.chip { padding: .5rem 1.1rem; border-radius: 999px; border: 1px solid var(--border-strong); font-size: .85rem; font-weight: 500; color: var(--text-soft); transition: .2s var(--ease); }
.chip:hover { border-color: var(--gold); color: var(--text); }
.chip.is-active { background: var(--gold); color: #14110A; border-color: var(--gold); }

.gallery-grid { columns: 3; column-gap: 16px; }
.gallery-grid figure { break-inside: avoid; margin: 0 0 16px; position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; }
.gallery-grid img { width: 100%; transition: transform .6s var(--ease), filter .4s var(--ease); }
.gallery-grid figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 60%, rgba(8,10,7,.4)); opacity: 0; transition: opacity .3s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figure:hover::after { opacity: 1; }
.gallery-grid figure.is-hidden { display: none; }

.detail-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.detail-gallery figure { margin: 0; aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; position: relative; }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.detail-gallery figure:hover img { transform: scale(1.06); }

.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(8,9,6,.94); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 6px; box-shadow: 0 40px 100px rgba(0,0,0,.6); }
.lightbox__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); color: #fff; display: grid; place-items: center; transition: .2s var(--ease); }
.lightbox__btn:hover { background: var(--gold); color: #14110A; border-color: var(--gold); }
.lightbox__prev { left: 3vw; } .lightbox__next { right: 3vw; }
.lightbox__close { top: 4vh; right: 4vw; transform: none; }
.lightbox__count { position: absolute; bottom: 4vh; left: 50%; transform: translateX(-50%); color: #D9D5C5; font-size: .85rem; letter-spacing: .1em; }

/* 12. ATV FEATURE ------------------------------------------ */
.atv-feature { position: relative; overflow: hidden; }
.atv-card { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.atv-card__bg { position: absolute; inset: 0; }
.atv-card__bg img { width: 100%; height: 100%; object-fit: cover; }
.atv-card__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8,10,7,.92) 30%, rgba(8,10,7,.55) 70%, rgba(8,10,7,.3)); }
.atv-card__body { position: relative; z-index: 2; padding: clamp(2.4rem, 5vw, 4.2rem); max-width: 560px; }
.atv-card__body h2 { color: #F5F0E2; margin: 1rem 0; }

/* 13. FORM ------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.4rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: var(--text-soft); }
.field label .req { color: var(--gold); }
.input, .select, .textarea {
  font: inherit; font-size: .95rem; color: var(--text);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: .85rem 1rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); width: 100%;
}
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--glow); }
.textarea { resize: vertical; min-height: 130px; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%239A9C89' stroke-width='1.6'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }
.field-error { color: #E08A6A; font-size: .82rem; }
[data-theme="light"] .field-error { color: #B4502C; }
.form-note { font-size: .82rem; color: var(--muted); }

.alert { border-radius: var(--radius-sm); padding: 1.4rem 1.5rem; margin-bottom: 1.6rem; border: 1px solid; }
.alert--ok { background: color-mix(in srgb, var(--moss) 20%, transparent); border-color: var(--moss-soft); color: var(--text); }
.alert--err { background: rgba(176,80,44,.14); border-color: #B4502C; color: var(--text); }
.alert h3 { margin-bottom: .3rem; }

/* 14. CONTACT META ----------------------------------------- */
.contact-meta { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-row__icon { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; color: var(--gold); flex: none; }
.contact-row__icon svg { width: 18px; height: 18px; }
.contact-row b { display: block; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.contact-row a, .contact-row p { color: var(--text); font-size: 1.02rem; }

/* 15. AREA CARDS ------------------------------------------- */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.area-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; transition: .3s var(--ease); }
.area-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.area-card__num { font-family: var(--display); font-size: 1.1rem; color: var(--gold); margin-bottom: .8rem; }
.area-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.area-card p { font-size: .92rem; }

/* 16. FOOTER ----------------------------------------------- */
#site-footer { background: var(--ink-2); border-top: 1px solid var(--border); padding: clamp(56px, 8vw, 90px) 0 32px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand p { font-size: .92rem; max-width: 320px; }
.footer-col h4 { font-family: var(--body); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.1rem; font-weight: 700; }
.footer-col a { display: block; color: var(--text-soft); font-size: .94rem; padding: .3rem 0; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 1.8rem; border-top: 1px solid var(--border); font-size: .82rem; color: var(--muted); }

/* 17. COMING SOON ------------------------------------------ */
.coming { min-height: 100svh; display: grid; place-items: center; position: relative; overflow: hidden; text-align: center; padding: 2rem; }
.coming__bg { position: absolute; inset: 0; z-index: 0; }
.coming__bg img { width: 100%; height: 100%; object-fit: cover; }
.coming__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 60% at 50% 40%, rgba(201,162,75,.16), transparent 60%), linear-gradient(180deg, rgba(8,10,7,.72), rgba(8,10,7,.9)); }
.coming__inner { position: relative; z-index: 2; max-width: 560px; }
.coming__mark { width: 64px; height: 64px; color: var(--gold); margin: 0 auto 1.8rem; }
.coming h1 { color: #F5F0E2; font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 1rem; }
.coming p { color: #DAD6C6; margin-bottom: 2.4rem; font-size: 1.1rem; }
.unlock { display: flex; gap: .6rem; max-width: 420px; margin: 0 auto; }
.unlock .input { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); color: #fff; text-align: center; letter-spacing: .15em; }
.unlock .input::placeholder { color: rgba(255,255,255,.5); letter-spacing: .15em; }
.unlock .field-error { margin-top: 1rem; }
.coming__tag { margin-top: 2.6rem; font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; color: #B6B3A2; }

/* 18. REVEAL ANIMATION ------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.hero .reveal { transition-duration: 1s; }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .22s; }
[data-delay="3"] { transition-delay: .34s; }
[data-delay="4"] { transition-delay: .46s; }

/* 19. RESPONSIVE ------------------------------------------- */
@media (max-width: 1080px) {
  .grid-cottages { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1.4rem;
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--ink); padding: 2.4rem 28px; z-index: 99; overflow-y: auto;
  }
  .nav.open .nav-list { flex-direction: column; align-items: flex-start; gap: 1.3rem; width: 100%; }
  .nav.open .nav-link { font-size: 1.3rem; font-family: var(--display); }
  .nav.open .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; border: none; padding: .6rem 0 0 1rem; }
  .nav.open .header-actions { flex-direction: column; align-items: flex-start; width: 100%; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .split { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-cottages, .area-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .detail-gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__meta { gap: 1.4rem; }
  .container { padding: 0 20px; }
}

/* 20. REDUCED MOTION --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
