/* =================================================================
   Aranya Resort & Spa — Bengaluru
   Design system + global styles
   Palette: cream / blush / deep olive / gold / taupe / near-black
   Type:   Cormorant Garamond (display serif) + Jost (sans)
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
  --cream:       #faf7f2;
  --cream-2:     #f4ece3;
  --blush:       #f3eae3;
  --olive:       #5a6650;
  --olive-deep:  #3b4332;
  --gold:        #b0894a;
  --gold-light:  #c9a867;
  --ink:         #2b2a26;
  --muted:       #726d64;
  --taupe:       #8b847c;
  --dark:        #17150f;
  --dark-2:      #211e17;
  --line:        rgba(43, 42, 38, .14);
  --line-light:  rgba(255, 255, 255, .18);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --shadow-sm: 0 6px 18px rgba(43, 42, 38, .08);
  --shadow-md: 0 18px 50px rgba(43, 42, 38, .14);
  --shadow-lg: 0 30px 80px rgba(43, 42, 38, .22);

  --maxw: 1240px;
  --gut:  clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  letter-spacing: .2px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- Typography helpers ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: .5px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
.eyebrow.line::after {
  content: "";
  width: clamp(40px, 8vw, 96px);
  height: 1px;
  background: var(--gold);
  opacity: .5;
}

.section-title {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  margin: .35em 0 .5em;
  color: var(--ink);
}
.lead { color: var(--muted); max-width: 60ch; font-size: 1.02rem; }

.stars { color: var(--gold-light); letter-spacing: 6px; font-size: 1rem; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
section { position: relative; }
.section-pad { padding-block: clamp(72px, 11vw, 140px); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 34px;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  background: var(--bg);
  color: var(--fg);
  border-radius: 2px;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--olive { --bg: var(--olive); }
.btn--ghost {
  --bg: transparent; --fg: #fff;
  border: 1px solid rgba(255,255,255,.6);
  backdrop-filter: blur(2px);
}
.btn--ghost:hover { --bg: rgba(255,255,255,.12); border-color: #fff; }
.btn--dark { --bg: var(--ink); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.text-link svg { transition: transform .4s var(--ease); }
.text-link:hover svg { transform: translateX(6px); }

/* =================================================================
   HEADER / NAV
   ================================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease);
  padding-block: 22px;
}
.site-header.scrolled {
  background: rgba(250, 247, 242, .94);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding-block: 12px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; color: #fff; transition: color .5s var(--ease); }
.scrolled .brand { color: var(--ink); }
.brand__mark { width: 30px; height: 38px; flex: none; }
.brand__mark path, .brand__mark line { stroke: currentColor; }
.brand__text { line-height: 1; }
.brand__name { font-family: var(--serif); font-size: 1.32rem; letter-spacing: .14em; font-weight: 600; }
.brand__sub { font-size: .56rem; letter-spacing: .42em; text-transform: uppercase; opacity: .8; }

.nav__menu { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 34px); }
.nav__link {
  position: relative;
  color: #fff;
  font-size: .82rem;
  letter-spacing: .12em;
  font-weight: 400;
  padding: 6px 0;
  transition: color .35s var(--ease);
}
.scrolled .nav__link { color: var(--ink); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--gold); }
.scrolled .nav__link[aria-current="page"] { color: var(--gold); }

.nav__cta { padding: 11px 24px; font-size: .68rem; }

.nav__toggle { display: none; width: 38px; height: 38px; position: relative; z-index: 110; }
.nav__toggle span { position: absolute; left: 7px; right: 7px; height: 2px; background: #fff; transition: .4s var(--ease); }
.scrolled .nav__toggle span, .menu-open .nav__toggle span { background: var(--ink); }
.nav__toggle span:nth-child(1) { top: 13px; }
.nav__toggle span:nth-child(2) { top: 19px; }
.nav__toggle span:nth-child(3) { top: 25px; }
.menu-open .nav__toggle span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
.menu-open .nav__toggle span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 140px var(--gut) 200px;
  isolation: isolate;
}
.hero__slides { position: absolute; inset: 0; z-index: -2; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--olive-deep);
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s var(--ease), transform 7s linear;
}
.hero__slide.active { opacity: 1; transform: scale(1); }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,18,12,.55) 0%, rgba(20,18,12,.25) 38%, rgba(20,18,12,.6) 100%);
}
.hero__inner { max-width: 880px; }
.hero__loc { display: block; margin: 18px 0 6px; font-size: .76rem; letter-spacing: .4em; text-transform: uppercase; opacity: .92; }
.hero__title {
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 500;
  line-height: 1.02;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__cta { margin-top: 36px; }

.hero__arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  color: #fff;
  display: grid; place-items: center;
  transition: background .35s var(--ease), border-color .35s var(--ease);
  z-index: 3;
}
.hero__arrow:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.hero__arrow--prev { left: clamp(12px, 3vw, 40px); }
.hero__arrow--next { right: clamp(12px, 3vw, 40px); }

/* Booking bar */
.booking {
  position: absolute;
  left: 50%; bottom: -1px;
  transform: translate(-50%, 50%);
  width: min(1080px, calc(100% - 2 * var(--gut)));
  background: #fff;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr auto;
  gap: 0;
  z-index: 5;
}
.booking__field { padding: 18px 24px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; position: relative; }
.booking__field label { font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.booking__field input, .booking__field select {
  font-family: var(--sans);
  font-size: .92rem;
  color: var(--ink);
  border: none;
  background: transparent;
  width: 100%;
  padding: 2px 0;
}
.booking__field input[type="date"] { color: var(--ink); }
.booking__flex { grid-column: 1 / 2; grid-row: 2; display: flex; align-items: center; gap: 8px; padding: 0 24px 14px; font-size: .76rem; color: var(--muted); }
.booking__flex input { accent-color: var(--olive); }
.booking__submit {
  background: var(--olive);
  color: #fff;
  padding: 0 40px;
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .35s var(--ease);
  border-radius: 0 4px 4px 0;
}
.booking__submit:hover { background: var(--olive-deep); }

/* booking confirmation toast */
.toast {
  position: fixed;
  left: 50%; bottom: 32px;
  transform: translate(-50%, 140%);
  background: var(--olive-deep);
  color: #fff;
  padding: 16px 26px;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  font-size: .9rem;
  z-index: 200;
  max-width: 90vw;
  transition: transform .55s var(--ease);
  border-left: 3px solid var(--gold);
}
.toast.show { transform: translate(-50%, 0); }

/* =================================================================
   WELCOME / collage
   ================================================================= */
.welcome { padding-top: clamp(150px, 18vw, 230px); }
.welcome__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.welcome__copy p { margin: 1.4rem 0 2rem; }

.collage { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, 1fr); gap: 16px; aspect-ratio: 1 / 1; }
.collage figure { overflow: hidden; border-radius: 6px; background: var(--cream-2); }
.collage img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.collage figure:hover img { transform: scale(1.07); }
.collage .c1 { grid-row: span 1; margin-top: 28px; }
.collage .c2 { grid-row: span 1; }
.collage .c3 { transform: translateY(-12px); }
.collage .c4 { transform: translateY(16px); }

/* =================================================================
   ROOMS
   ================================================================= */
.rooms { background: var(--blush); }
.section-head { max-width: 720px; margin-bottom: 56px; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.room-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--olive-deep);
  box-shadow: var(--shadow-sm);
  display: block;
}
.room-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.room-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(20,18,12,.78) 100%); }
.room-card:hover img { transform: scale(1.08); }
.room-card__body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 28px; color: #fff; }
.room-card__name { font-size: 1.8rem; }
.room-card__meta { font-size: .76rem; letter-spacing: .1em; opacity: .85; margin-top: 4px; }
.room-card__link {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0; transform: translateY(10px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.room-card:hover .room-card__link { opacity: 1; transform: translateY(0); }

/* =================================================================
   Full-bleed feature band
   ================================================================= */
.feature-band {
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: var(--olive-deep);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  isolation: isolate;
}
.feature-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(20,18,12,.42); }
.feature-band__inner { max-width: 640px; padding: var(--gut); }
.feature-band__inner h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.feature-band__inner p { margin-top: 16px; opacity: .9; }

/* =================================================================
   RECREATION grid
   ================================================================= */
.recreation { background: var(--blush); }
.cards-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rec-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  background: var(--olive-deep);
}
.rec-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.rec-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,12,.15) 30%, rgba(20,18,12,.72) 100%); }
.rec-card:hover img { transform: scale(1.08); }
.rec-card__label {
  position: absolute; left: 24px; bottom: 22px; z-index: 2;
  color: #fff; font-family: var(--serif); font-size: 1.5rem;
}
.rec-card__label small { display: block; font-family: var(--sans); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); margin-top: 4px; }

/* =================================================================
   TESTIMONIALS band
   ================================================================= */
.testimonials { background: var(--dark-2); color: #fff; }
.testimonials .wrap { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(30px, 5vw, 80px); }
.testi-slides { position: relative; min-height: 220px; }
.testi {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.testi.active { opacity: 1; visibility: visible; transform: translateY(0); position: relative; }
.testi__quote { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.9rem); font-style: italic; line-height: 1.5; color: #f3ede2; }
.testi__by { margin-top: 26px; }
.testi__name { font-weight: 500; letter-spacing: .04em; }
.testi__role { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe); margin-top: 2px; }
.testi-dots { display: flex; gap: 10px; margin-top: 30px; }
.testi-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.3); transition: background .35s, transform .35s; }
.testi-dots button.active { background: var(--gold); transform: scale(1.25); }

/* =================================================================
   DINING gallery
   ================================================================= */
.dining-gallery { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 20px; }
.dining-gallery figure { overflow: hidden; border-radius: 6px; aspect-ratio: 3/4; background: var(--cream-2); position: relative; }
.dining-gallery .wide { aspect-ratio: auto; }
.dining-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.dining-gallery figure:hover img { transform: scale(1.06); }
.dining-gallery figcaption {
  position: absolute; left: 22px; bottom: 20px; color: #fff; z-index: 2;
  font-family: var(--serif); font-size: 1.4rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}

/* =================================================================
   CTA band (plan your stay)
   ================================================================= */
.cta-band { background: var(--olive); color: #fff; text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.cta-band p { max-width: 56ch; margin: 14px auto 30px; opacity: .9; }
.cta-band .btn { --bg: var(--gold); }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: var(--dark); color: #cfc9bd; padding-top: clamp(64px, 9vw, 110px); position: relative; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(30px, 5vw, 70px); padding-bottom: 50px; }
.footer h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: #fff; margin-bottom: 20px; font-weight: 500; }
.footer p, .footer a { font-size: .92rem; line-height: 1.9; color: #b6b0a4; }
.footer a:hover { color: var(--gold-light); }
.footer__col + .footer__col .footer-block + .footer-block { margin-top: 26px; }
.footer-block { margin-bottom: 22px; }

.footer__brand { display: flex; align-items: center; gap: 12px; color: #fff; margin-bottom: 22px; }
.footer__brand .brand__mark path, .footer__brand .brand__mark line { stroke: var(--gold-light); }

.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 38px; height: 38px; border: 1px solid var(--line-light); border-radius: 50%; display: grid; place-items: center; transition: background .35s, border-color .35s; }
.socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.socials svg { width: 16px; height: 16px; }

.pay-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.pay-badges span { font-size: .66rem; letter-spacing: .06em; padding: 6px 10px; border: 1px solid var(--line-light); border-radius: 3px; color: #d8d2c6; }

.footer__sitemap a { display: block; }

.footer__bar {
  border-top: 1px solid var(--line-light);
  padding-block: 22px;
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  justify-content: space-between; align-items: center;
  font-size: .76rem; color: #8c867a;
}
.footer__bar a:hover { color: var(--gold-light); }
.footer__legal { display: flex; gap: 16px; flex-wrap: wrap; }

.to-top {
  position: absolute; right: var(--gut); top: -24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease);
}
.to-top:hover { transform: translateY(-4px); }

/* =================================================================
   PAGE HERO (interior pages)
   ================================================================= */
.page-hero {
  min-height: 62vh;
  display: grid; place-items: center; text-align: center;
  color: #fff; padding: 160px var(--gut) 80px;
  background-size: cover; background-position: center;
  background-color: var(--olive-deep);
  position: relative; isolation: isolate;
}
.page-hero::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(20,18,12,.5), rgba(20,18,12,.6)); }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.page-hero .crumb { font-size: .74rem; letter-spacing: .28em; text-transform: uppercase; opacity: .85; margin-top: 14px; }
.page-hero .crumb a:hover { color: var(--gold-light); }

/* ---------- Room detail rows ---------- */
.room-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.room-row:nth-child(even) .room-row__media { order: 2; }
.room-row + .room-row { margin-top: clamp(50px, 8vw, 100px); }
.room-row__media { border-radius: 6px; overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-md); background: var(--cream-2); }
.room-row__media img { width: 100%; height: 100%; object-fit: cover; }
.room-row__price { font-family: var(--serif); font-size: 1.4rem; color: var(--olive); margin: 8px 0 16px; }
.room-row__price span { font-family: var(--sans); font-size: .8rem; color: var(--muted); letter-spacing: .12em; }
.amenities { display: flex; flex-wrap: wrap; gap: 10px 14px; margin: 22px 0 28px; }
.amenities li { font-size: .8rem; letter-spacing: .04em; color: var(--muted); padding: 7px 14px; border: 1px solid var(--line); border-radius: 40px; }

/* ---------- Dining menu cards ---------- */
.dine-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.dine-card { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.dine-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--cream-2); }
.dine-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.dine-card:hover .dine-card__media img { transform: scale(1.06); }
.dine-card__body { padding: 28px 30px 32px; }
.dine-card__tag { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.dine-card__body h3 { font-size: 1.7rem; margin: 6px 0 10px; }

/* ---------- About stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat { padding: 30px 14px; border: 1px solid var(--line); border-radius: 6px; background: #fff; }
.stat__num { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--olive); }
.stat__label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,70px); align-items: center; }
.split__media { border-radius: 6px; overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-md); background: var(--cream-2); }
.split__media img { width:100%; height:100%; object-fit: cover; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(34px, 5vw, 70px); align-items: start; }
.contact-info .info-item { margin-bottom: 26px; }
.contact-info .info-item h4 { font-family: var(--sans); font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.form { display: grid; gap: 18px; background: #fff; padding: clamp(28px, 4vw, 48px); border-radius: 6px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: .95rem; color: var(--ink);
  padding: 13px 16px; border: 1px solid var(--line); border-radius: 4px; background: var(--cream);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px rgba(90,102,80,.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.map-embed { border-radius: 6px; overflow: hidden; margin-top: 28px; box-shadow: var(--shadow-sm); border: 0; }
.map-embed iframe { width: 100%; height: 300px; border: 0; display: block; filter: grayscale(.2) contrast(1.02); }

/* =================================================================
   Scroll reveal
   ================================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
.reveal[data-delay="4"] { transition-delay: .48s; }
.reveal[data-delay="5"] { transition-delay: .6s; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 980px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto;
    width: min(360px, 84vw);
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    padding: 90px 44px;
    transform: translateX(105%);
    transition: transform .5s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .menu-open .nav__menu { transform: translateX(0); }
  .nav__link { color: var(--ink); font-size: 1.05rem; padding: 10px 0; }
  .nav__cta { margin-top: 14px; }
  .scrolled .nav__link, .nav__link { color: var(--ink); }

  .welcome__grid, .testimonials .wrap, .room-row, .split, .contact-grid { grid-template-columns: 1fr; }
  .room-row:nth-child(even) .room-row__media { order: 0; }
  .booking { position: static; transform: none; width: 100%; margin-top: 36px; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .cards-3, .cards-6, .dining-gallery, .dine-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .dining-gallery .wide { grid-column: 1 / -1; aspect-ratio: 16/10; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .booking { grid-template-columns: 1fr; }
  .booking__field { border-right: none; border-bottom: 1px solid var(--line); }
  .booking__submit { border-radius: 0 0 4px 4px; padding: 18px; }
  .booking__flex { grid-column: 1; grid-row: auto; }
  .hero__arrow { display: none; }
}

@media (max-width: 520px) {
  .cards-3, .cards-6, .dining-gallery, .dine-grid, .stats, .footer__grid { grid-template-columns: 1fr; }
  .collage { aspect-ratio: 4/5; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .feature-band { background-attachment: scroll; }
}
