/* =================================================================
   Field Cottage — luxury countryside retreat design system
   Refined editorial aesthetic: muted palette, brushed gold accents,
   elegant serif display, generous whitespace, hairline detailing.
   ================================================================= */

:root {
  /* palette — warm, natural, elegant (family luxury) */
  --forest: #46503a;        /* warm olive green */
  --forest-deep: #38402c;   /* deep olive for dark sections */
  --sage: #8b9775;
  --sage-soft: #e8ebdc;
  --ivory: #f7f2e8;         /* warm oat page background */
  --cream: #fbf7ee;
  --cream-2: #f1e9d9;
  --stone: #e8ddc7;
  --gold: #bd9a5b;          /* warm honey gold */
  --gold-soft: #d4b980;
  --gold-pale: #f1e8d2;
  --charcoal: #332e26;      /* warm soft charcoal-brown */
  --ink: #3b352c;
  --muted: #7d7565;
  --line: #e7ddc9;
  --line-soft: #f0e7d7;
  --white: #ffffff;

  /* legacy accent names kept for compatibility, tuned to honey gold */
  --terra: #bd9a5b;
  --terra-dark: #a07f44;

  /* type */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* layout */
  --max: 1220px;
  --radius: 4px;
  --radius-lg: 6px;
  --shadow: 0 30px 70px -40px rgba(58, 50, 36, 0.42);
  --shadow-sm: 0 18px 44px -30px rgba(58, 50, 36, 0.38);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.85;
  font-size: 1.02rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }

a { color: var(--gold); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--forest); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--charcoal);
  line-height: 1.1;
  font-weight: 400;
  margin: 0 0 .5em;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.1vw, 1.6rem); font-weight: 500; }

p { margin: 0 0 1.2em; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.2rem, 5vw, 2.4rem); }
.container-narrow { max-width: 800px; }

section { padding: clamp(4.5rem, 10vw, 9rem) 0; }

/* refined section eyebrow with hairline accent */
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .72rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: .7; }
.text-center .eyebrow, .section-head.text-center .eyebrow { justify-content: center; }
.section-head.text-center .eyebrow::after { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: .7; }

.lead { font-size: clamp(1.1rem, 1.7vw, 1.32rem); color: var(--muted); line-height: 1.7; font-weight: 400; }

.text-center { text-align: center; }
.section-head { max-width: 720px; margin: 0 auto 3.5rem; }
.section-head.text-center { text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 1.05rem 2rem;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  line-height: 1;
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--forest); color: #fff; }
.btn-dark { background: var(--forest); color: #fff; }
.btn-dark:hover { background: var(--forest-deep); color: #fff; }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { background: #fff; border-color: #fff; color: var(--forest); }
.btn-outline { background: transparent; border-color: var(--gold); color: var(--forest); }
.btn-outline:hover { background: var(--gold); color: #fff; }

/* ---------- header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .45s var(--ease), box-shadow .45s var(--ease), padding .45s var(--ease);
  padding: 1.6rem 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .8rem; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: #fff; letter-spacing: .01em; }
.brand .mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
  display: grid; place-items: center; font-size: 1rem; flex: none;
  font-family: var(--serif); letter-spacing: .02em;
  transition: color .45s var(--ease), border-color .45s var(--ease);
}
.brand small { display: block; font-family: var(--sans); font-size: .58rem; letter-spacing: .32em; text-transform: uppercase; opacity: .75; font-weight: 400; margin-top: .25rem; }

.nav { display: flex; align-items: center; gap: 2.4rem; }
.nav a { color: #fff; font-weight: 400; font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; position: relative; opacity: .92; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -7px; height: 1px; width: 0; background: var(--gold); transition: width .35s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a:hover { color: #fff; opacity: 1; }

/* scrolled state */
.site-header.scrolled { background: rgba(247,244,236,.96); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); padding: 1rem 0; }
.site-header.scrolled .brand,
.site-header.scrolled .nav a { color: var(--charcoal); }
.site-header.scrolled .nav a:hover { color: var(--gold); }
.site-header.scrolled .nav-toggle span { background: var(--charcoal); }

/* solid header variant for interior pages without hero image */
.site-header.solid { position: sticky; background: var(--forest-deep); }

.nav-cta { padding: .75rem 1.5rem; font-size: .72rem; }
.site-header.scrolled .btn-ghost { border-color: var(--gold); color: var(--forest); }
.site-header.scrolled .btn-ghost:hover { background: var(--gold); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 110; }
.nav-toggle span { width: 26px; height: 1.5px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 7rem 0 4rem;
  background: var(--forest-deep);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(44,48,34,.46) 0%, rgba(44,48,34,.28) 40%, rgba(40,44,30,.8) 100%), url("../images/hero.png?v=2");
  background-size: cover; background-position: center;
}
.hero::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 220px rgba(0,0,0,.5); pointer-events: none; }
.hero > .container { position: relative; z-index: 1; max-width: 1000px; }
.hero h1 { color: #fff; max-width: 18ch; font-weight: 300; letter-spacing: -0.01em; }
.hero .lead { color: rgba(255,255,255,.86); max-width: 54ch; font-size: clamp(1.1rem, 1.6vw, 1.32rem); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-bottom: 2rem; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: .5rem; background: transparent; border: 0; padding: 0; border-radius: 0; font-size: .72rem; font-weight: 400; text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.85); position: relative; }
.pill + .pill::before { content: "·"; position: absolute; left: -.85rem; color: var(--gold); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

/* page hero (interior) */
.page-hero {
  position: relative; color: #fff; padding: clamp(9rem, 18vw, 13rem) 0 clamp(3.5rem, 8vw, 6rem); background: var(--forest-deep);
}
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(180deg, rgba(44,48,34,.5), rgba(40,44,30,.74)); background-size: cover; background-position: center; }
.page-hero[data-bg]::before { background-image: linear-gradient(180deg, rgba(44,48,34,.42), rgba(40,44,30,.72)), var(--hero-img); }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: .5rem; font-weight: 300; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 60ch; margin: 0; font-size: 1.1rem; }
.breadcrumbs { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.4rem; color: rgba(255,255,255,.7); }
.breadcrumbs a { color: rgba(255,255,255,.7); }
.breadcrumbs a:hover { color: var(--gold-soft); }

/* ---------- stat strip ---------- */
.stats { background: var(--forest-deep); color: #fff; padding: clamp(3.5rem, 6vw, 5rem) 0; }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat { position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 15%; height: 70%; width: 1px; background: rgba(255,255,255,.12); }
.stat .num { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--gold-soft); line-height: 1; font-weight: 300; }
.stat .label { font-size: .68rem; text-transform: uppercase; letter-spacing: .22em; opacity: .7; margin-top: .9rem; }

/* ---------- feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split-media { position: relative; }
.float-card { position: absolute; bottom: 26px; left: -26px; background: var(--ivory); padding: 1.3rem 1.6rem; box-shadow: var(--shadow); font-family: var(--serif); font-size: 1.15rem; color: var(--forest); border-top: 2px solid var(--gold); }
.float-card span { display: block; font-family: var(--sans); font-size: .64rem; text-transform: uppercase; letter-spacing: .22em; color: var(--gold); margin-top: .2rem; }

/* ---------- feature cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.2rem; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.4rem 2rem; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.card .ico { width: 50px; height: 50px; border-radius: 50%; background: transparent; border: 1px solid var(--gold); color: var(--gold); display: grid; place-items: center; margin-bottom: 1.4rem; }
.card h3 { margin-bottom: .5rem; font-weight: 500; }
.card p { margin: 0; color: var(--muted); font-size: .96rem; line-height: 1.7; }

/* alt background */
.bg-cream2 { background: var(--cream-2); }
.bg-sage { background: var(--sage-soft); }
.bg-white { background: var(--white); }

/* ---------- amenities list ---------- */
.amenities { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: .4rem 2.5rem; list-style: none; padding: 0; margin: 1.6rem 0 0; }
.amenities li { display: flex; align-items: center; gap: .9rem; padding: .7rem 0; border-bottom: 1px solid var(--line-soft); font-size: .95rem; letter-spacing: .01em; }
.amenities li svg { color: var(--gold); flex: none; }

/* ---------- rooms ---------- */
.room { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.room:nth-child(even) .room-media { order: 2; }
.room-media img { border-radius: var(--radius); box-shadow: var(--shadow-sm); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.room h3 { margin-bottom: .4rem; font-size: clamp(1.5rem, 2.4vw, 1.9rem); font-weight: 400; }
.room .room-meta { color: var(--gold); font-weight: 500; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1rem; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; grid-auto-rows: 250px; }
.gallery-grid a { overflow: hidden; border-radius: var(--radius); display: block; position: relative; }
.gallery-grid a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(20,26,21,.35)); opacity: 0; transition: opacity .4s var(--ease); }
.gallery-grid a:hover::after { opacity: 1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.07); }
.gallery-grid .wide { grid-column: span 2; }
.gallery-grid .tall { grid-row: span 2; }

/* lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(36,33,26,.95); display: none; align-items: center; justify-content: center; z-index: 200; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius); box-shadow: 0 40px 90px rgba(0,0,0,.6); }
.lightbox button { position: absolute; background: transparent; border: 1px solid rgba(255,255,255,.35); color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 1.3rem; cursor: pointer; transition: background .25s, border-color .25s; }
.lightbox button:hover { background: var(--gold); border-color: var(--gold); }
.lb-close { top: 1.6rem; right: 1.6rem; }
.lb-prev { left: 1.6rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.6rem; top: 50%; transform: translateY(-50%); }

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.2rem; }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.4rem 2rem; }
.quote .stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 1rem; font-size: .9rem; }
.quote p { font-family: var(--serif); font-size: 1.2rem; color: var(--charcoal); font-style: italic; line-height: 1.55; font-weight: 400; }
.quote .who { font-family: var(--sans); font-style: normal; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin: 1.2rem 0 0; font-weight: 500; }

/* ---------- cta band ---------- */
.cta-band { position: relative; color: #fff; text-align: center; background: var(--forest-deep); padding: clamp(5rem, 11vw, 9rem) 0; }
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(44,48,34,.82), rgba(40,44,30,.88)), url("../images/garden.png?v=2"); background-size: cover; background-position: center; }
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-weight: 300; max-width: 18ch; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 56ch; margin-inline: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ---------- booking partners ---------- */
.partners { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; }
.partner { background: transparent; border: 1px solid var(--line); border-radius: 0; padding: .85rem 1.6rem; font-weight: 500; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--forest); display: inline-flex; gap: .5rem; align-items: center; transition: border-color .3s var(--ease), color .3s var(--ease); }
.partner:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.post-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.post-card .body { padding: 1.8rem 1.8rem 2rem; display: flex; flex-direction: column; flex: 1; }
.post-card .tag { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.post-card h3 { margin: .7rem 0 .6rem; font-size: 1.4rem; font-weight: 400; line-height: 1.25; }
.post-card p { color: var(--muted); font-size: .95rem; margin-bottom: 1.2rem; }
.post-card .meta { margin-top: auto; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: flex; gap: .6rem; align-items: center; }
.read-more { font-weight: 500; color: var(--gold); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }

/* article */
.article { max-width: 740px; margin: 0 auto; }
.article p, .article li { font-size: 1.08rem; line-height: 1.85; }
.article img { border-radius: var(--radius); margin: 2.4rem 0; box-shadow: var(--shadow-sm); }
.article h2 { margin-top: 2.6rem; font-weight: 400; }
.article h3 { margin-top: 1.8rem; }
.article ul, .article ol { margin: 0 0 1.3rem; padding-left: 1.3rem; }
.article li { margin-bottom: .5rem; }
.article blockquote { border-left: 2px solid var(--gold); margin: 2.2rem 0; padding: .6rem 0 .6rem 1.8rem; font-family: var(--serif); font-style: italic; font-size: 1.4rem; line-height: 1.5; color: var(--forest); }
.post-meta { color: var(--muted); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.5rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.post-meta .tag { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: .3rem .9rem; border-radius: 0; font-weight: 500; font-size: .66rem; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 4.5rem); align-items: start; }
.info-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.info-list li { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.info-list .ico { width: 46px; height: 46px; border-radius: 50%; background: transparent; border: 1px solid var(--gold); color: var(--gold); display: grid; place-items: center; flex: none; }
.info-list strong { display: block; font-family: var(--serif); font-size: 1.15rem; font-weight: 400; margin-bottom: .15rem; }
.info-list a, .info-list span { color: var(--muted); }

form .field { margin-bottom: 1.2rem; }
form label { display: block; font-weight: 500; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .5rem; color: var(--ink); }
form input, form textarea, form select {
  width: 100%; padding: .95rem 1.1rem; border: 1px solid var(--line); border-radius: 0;
  font-family: var(--sans); font-size: 1rem; background: var(--white); color: var(--ink); transition: border-color .25s;
}
form input:focus, form textarea:focus, form select:focus { outline: none; border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.card form, .contact-grid .card { border-top: 2px solid var(--gold); }

/* ---------- footer ---------- */
.site-footer { background: var(--forest-deep); color: #b7bdb3; padding: clamp(4rem, 7vw, 5.5rem) 0 2.2rem; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .7rem; text-transform: uppercase; letter-spacing: .22em; margin-bottom: 1.3rem; font-weight: 500; }
.site-footer a { color: #b7bdb3; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; font-size: .9rem; }
.footer-brand .brand { color: #fff; margin-bottom: 1.2rem; }
.footer-brand p { color: #8e948a; max-width: 34ch; line-height: 1.7; }
.socials { display: flex; gap: .7rem; margin-top: 1.2rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; color: #fff; transition: background .3s, border-color .3s; }
.socials a:hover { background: var(--gold); border-color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: #767c72; font-size: .76rem; letter-spacing: .06em; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- notice ---------- */
.notice { background: var(--gold-pale); border: 1px solid #e3d4ad; color: #6f5a2a; padding: .9rem 1.2rem; border-radius: 0; font-size: .9rem; border-left: 2px solid var(--gold); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  /* a backdrop-filter ancestor traps position:fixed children, which breaks
     the slide-in menu when the header is scrolled — disable it on mobile */
  .site-header.scrolled { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(247,242,232,.98); }
  .nav { position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px); background: var(--forest-deep); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.8rem; padding: 3rem; transform: translateX(100%); transition: transform .5s var(--ease); box-shadow: -30px 0 80px -40px rgba(0,0,0,.7); z-index: 105; }
  .nav.open { transform: translateX(0); }
  .nav a { color: #fff; font-size: .95rem; }
  .site-header.scrolled .nav a { color: #fff; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .split, .room, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media, .room:nth-child(even) .room-media { order: 0; }
  .split-media img { aspect-ratio: 3/2; }
  .float-card { left: 16px; bottom: 16px; }
  .stats .grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1rem; }
  .stat:nth-child(3)::before, .stat + .stat::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .gallery-grid { grid-auto-rows: 190px; }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; gap: .6rem; }
  .gallery-grid .wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero { min-height: 92vh; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions .btn, .cta-actions .btn { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
