/* =========================================================
   ARIADNE SUITES — Design System
   Minimal · High-end · Cycladic
   ========================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ---------- Design tokens ---------- */
:root {
  --ivory:      #f7f4ee;
  --ivory-soft: #efeae1;
  --sand:       #e4ddd0;
  --charcoal:   #2b2824;
  --charcoal-2: #4a453e;
  --muted:      #8c8478;
  --line:       rgba(43, 40, 36, 0.14);
  --gold:       #a98b63;
  --gold-dark:  #8f7350;
  --white:      #ffffff;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(1.5rem, 5vw, 6rem);
  --maxw: 1320px;
}

/* ---------- 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(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 300; line-height: 1.08; letter-spacing: 0.01em; }
.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.lede { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--charcoal-2); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 11vw, 9rem); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-family: var(--sans); font-weight: 400;
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1.05em 2.4em;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
  border-radius: 999px;
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.btn:hover { background: var(--charcoal); color: var(--ivory); }
.btn--solid { background: var(--charcoal); color: var(--ivory); }
.btn--solid:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn--light { border-color: rgba(255,255,255,.7); color: #fff; }
.btn--light:hover { background: #fff; color: var(--charcoal); border-color: #fff; }
.link-underline {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--charcoal); position: relative; padding-bottom: 4px;
}
.link-underline::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem var(--gutter);
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
}
.site-header.scrolled {
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 1rem;
  box-shadow: 0 1px 0 var(--line);
}
.brand { display: flex; align-items: center; gap: .8rem; line-height: 1; }
.brand__logo { height: 120px; width: auto; display: block; transition: filter .5s var(--ease), height .5s var(--ease); }
.site-header.scrolled .brand__logo { filter: invert(0.85); height: 88px; }
.brand__name { font-family: var(--serif); }
.brand__name b { display: block; font-size: 1.28rem; font-weight: 500; letter-spacing: 0.34em; }
.brand__name span {
  display: block; font-family: var(--sans); font-weight: 300;
  font-size: 0.6rem; letter-spacing: 0.62em; margin-top: 3px; opacity: .8;
}
/* color states */
.site-header:not(.scrolled) .brand, .site-header:not(.scrolled) .nav a { color: #fff; }
.site-header.scrolled .brand, .site-header.scrolled .nav a { color: var(--charcoal); }

.nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.6vw, 2.6rem); }
.nav a {
  font-family: var(--sans); font-weight: 400; font-size: 0.74rem;
  letter-spacing: 0.2em; text-transform: uppercase; position: relative; padding-bottom: 4px;
  transition: color .5s var(--ease), opacity .3s;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: center; transition: transform .45s var(--ease);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav .nav-book {
  border: 1px solid currentColor; border-radius: 999px; padding: .7em 1.5em; margin-left: .4rem;
}
.nav .nav-book::after { display: none; }
.site-header:not(.scrolled) .nav-book:hover { background: #fff; color: var(--charcoal) !important; }
.site-header.scrolled .nav-book:hover { background: var(--charcoal); color: var(--ivory) !important; }

/* nav icons */
.nav-icon { display: inline-flex; align-items: center; padding-bottom: 0; }
.nav-icon svg { width: 19px; height: 19px; }
.nav-icon::after { display: none; }
.nav-icon:hover { opacity: .6; }

/* "The Suites" dropdown */
.nav-drop { position: relative; }
.nav-drop__toggle::after { content: ''; }
.nav-drop__menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--ivory); box-shadow: 0 24px 60px rgba(0,0,0,.14);
  padding: .6rem 0; min-width: 200px;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.nav-drop:hover .nav-drop__menu, .nav-drop:focus-within .nav-drop__menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-drop__menu a { display: block; padding: .65rem 1.6rem; color: var(--charcoal) !important; white-space: nowrap; }
.nav-drop__menu a::after { display: none; }
.nav-drop__menu a:hover { color: var(--gold-dark) !important; }

/* burger */
.burger { display: none; width: 30px; height: 20px; position: relative; z-index: 140; }
.burger span {
  position: absolute; left: 0; height: 2px; width: 100%; background: currentColor; border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s var(--ease), background .3s, top .3s var(--ease);
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 18px; }
.site-header:not(.scrolled) .burger { color: #fff; }
.site-header:not(.scrolled) .burger span { box-shadow: 0 1px 4px rgba(0,0,0,.35); }
.site-header.scrolled .burger { color: var(--charcoal); }
/* open state: a clear dark X on the menu overlay */
.burger.is-open span { background: var(--charcoal); box-shadow: none; }
.burger.is-open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 22s var(--ease) infinite alternate; }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.16); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 52%, rgba(16,13,10,.42), rgba(16,13,10,0) 72%),
    linear-gradient(180deg, rgba(16,13,10,.5) 0%, rgba(16,13,10,.28) 42%, rgba(16,13,10,.58) 100%);
}
.hero__inner { text-align: center; color: #fff; padding-top: 4rem; max-width: 1000px; }
.hero .eyebrow { color: rgba(255,255,255,.85); margin-bottom: 1.6rem; }
.hero h1 {
  font-size: clamp(2.8rem, 8.5vw, 6.6rem); font-weight: 300; letter-spacing: 0.02em;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero__sub { margin-top: 1.5rem; font-size: clamp(1rem, 1.6vw, 1.25rem); font-weight: 300; letter-spacing: .04em; color: rgba(255,255,255,.9); }
.hero__cta { margin-top: 2.8rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: #fff; font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; opacity: .8;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.scroll-hint::after { content: ''; width: 1px; height: 40px; background: rgba(255,255,255,.6); animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* =========================================================
   WELCOME / INTRO
   ========================================================= */
.intro { text-align: center; }
.intro h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin: 1.2rem 0 2rem; }
.intro__grid { max-width: 780px; margin-inline: auto; }
.intro__grid p + p { margin-top: 1.4rem; }
.divider { width: 54px; height: 1px; background: var(--gold); margin: 2.4rem auto 0; }

/* =========================================================
   SUITES
   ========================================================= */
.suites { background: var(--ivory-soft); }
.suite {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(2rem, 6vw, 6rem); margin-bottom: clamp(4rem, 9vw, 8rem);
}
.suite:last-child { margin-bottom: 0; }
.suite .suite__media { order: 0; }
.suite__media { overflow: hidden; position: relative; }
.suite__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 1.2s var(--ease); }
.suite__media:hover img { transform: scale(1.06); }
.suite__num { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--gold-dark); }
.suite__name { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin: .3rem 0 .4rem; }
.suite__meta { font-family: var(--sans); font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.6rem; }
.suite__desc { max-width: 46ch; color: var(--charcoal-2); margin-bottom: 2.2rem; }

/* Home "Rooms" — two images side by side, descriptions beneath */
.rooms__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.rooms__head h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-top: .9rem; }
.rooms__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.4rem); }
.room { display: flex; flex-direction: column; }
.room__media { display: block; overflow: hidden; position: relative; }
.room__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 1.5s var(--ease); }
.room:hover .room__media img { transform: scale(1.06); }
.room__media::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,17,14,0) 55%, rgba(20,17,14,.32));
  opacity: 0; transition: opacity .6s var(--ease);
}
.room:hover .room__media::after { opacity: 1; }
.room__body { padding-top: 1.8rem; text-align: center; display: flex; flex-direction: column; align-items: center; }
.room__name { font-size: clamp(1.8rem, 3.2vw, 2.7rem); }
.room__meta { font-family: var(--sans); font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin: .5rem 0 1rem; }
.room__desc { color: var(--charcoal-2); max-width: 44ch; margin-bottom: 1.8rem; }
.room .btn { margin-top: auto; }

/* =========================================================
   FEATURE / LOCATION
   ========================================================= */
.feature { position: relative; overflow: hidden; display: flex; align-items: center; min-height: 64vh; }
.feature__media { position: absolute; inset: 0; z-index: 0; }
.feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature__media::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,11,9,.9) 0%, rgba(14,11,9,.74) 52%, rgba(14,11,9,.5) 100%); }
.feature .wrap { position: relative; z-index: 2; }
.feature__card {
  color: #fff; max-width: 620px;
  padding-block: clamp(3.5rem, 9vw, 6rem);
}
.feature__card .eyebrow { color: rgba(255,255,255,.85); }
.feature__card h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin: 1rem 0 1.3rem; }
.feature__card p { color: rgba(255,255,255,.92); margin-bottom: 1.2rem; max-width: 52ch; }
.feature__card p.lead { font-size: 1.15rem; color: #fff; }

/* =========================================================
   PHILOSOPHY
   ========================================================= */
.philosophy { background: var(--ivory-soft); text-align: center; }
.philosophy h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin: 1rem 0 1.6rem; }
.philosophy__lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--charcoal-2); max-width: 640px; margin: 0 auto 3rem; }
.philosophy__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; max-width: 940px; margin: 0 auto 3.4rem; }
.philosophy__grid div { padding: 1.7rem 1rem; border: 1px solid var(--line); border-radius: 10px; background: var(--ivory); }
.philosophy__grid span { display: block; font-family: var(--sans); font-weight: 400; font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: .55rem; }
.philosophy__grid b { font-family: var(--serif); font-weight: 400; font-size: 1.55rem; color: var(--charcoal); }
.philosophy__body { max-width: 680px; margin-inline: auto; }
.philosophy__body p { color: var(--charcoal-2); margin-bottom: 1.3rem; }
.philosophy__close { font-family: var(--serif); font-style: italic; font-size: clamp(1.25rem, 2.2vw, 1.6rem); color: var(--charcoal); line-height: 1.5; margin-top: 2.4rem; }
.philosophy__close span { display: block; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { text-align: center; }
.testimonials__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.testimonials__head h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin-top: .9rem; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; text-align: left; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: clamp(1.7rem, 2.6vw, 2.3rem); display: flex; flex-direction: column;
  box-shadow: 0 40px 70px -55px rgba(43, 40, 36, .45); }
.tcard__stars { color: var(--gold); letter-spacing: .2em; font-size: .82rem; margin-bottom: 1.1rem; }
.tcard__quote { font-family: var(--serif); font-weight: 400; font-size: 1.22rem; line-height: 1.5; color: var(--charcoal); margin-bottom: 1.5rem; }
.tcard__who { margin-top: auto; }
.tcard__who b { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.02rem; color: var(--charcoal); }
.tcard__who span { font-family: var(--sans); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.testimonials__foot { margin-top: clamp(2.6rem, 4vw, 3.6rem); }
.testimonials__foot a { font-family: var(--sans); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--charcoal); border-bottom: 1px solid var(--gold); padding-bottom: 5px; transition: color .3s var(--ease); }
.testimonials__foot a:hover { color: var(--gold-dark); }

/* =========================================================
   SUITE DETAIL PAGE
   ========================================================= */
.page-hero { position: relative; min-height: 74svh; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero img { position: absolute; top: -9%; left: 0; width: 100%; height: 118%; object-fit: cover; z-index: -2; }
.page-hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,17,14,.4), rgba(20,17,14,.15) 45%, rgba(20,17,14,.6)); }
.page-hero__inner { color: #fff; padding-bottom: clamp(3rem, 7vw, 5.5rem); opacity: 0; transform: translateY(26px); transition: opacity 1.1s var(--ease) .15s, transform 1.1s var(--ease) .15s; }
.page-hero.ready .page-hero__inner { opacity: 1; transform: none; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); margin-top: .6rem; }

.detail__intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.detail__intro h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1.4rem; }
.detail__intro p { color: var(--charcoal-2); }
.detail__intro .lede { margin-bottom: 1.2rem; }

.facilities { border-top: 1px solid var(--line); padding-top: 1.6rem; }
.facilities h3 { font-family: var(--sans); font-weight: 400; font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.4rem; }
.facilities ul { columns: 2; column-gap: 2rem; }
.facilities li { break-inside: avoid; padding: .5rem 0 .5rem 1.4rem; position: relative; font-size: .94rem; color: var(--charcoal-2); border-bottom: 1px solid var(--line); }
.facilities li::before { content: ''; position: absolute; left: 0; top: 1.05rem; width: 6px; height: 6px; border: 1px solid var(--gold); transform: rotate(45deg); }
.note { margin-top: 1.4rem; font-size: .82rem; color: var(--muted); font-style: italic; font-family: var(--serif); }

/* Gallery grid */
.gallery { background: var(--ivory-soft); }
.gallery__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.gallery__head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: .8rem; }
/* Editorial asymmetric gallery */
.grid-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 205px; gap: 12px; grid-auto-flow: dense; }
.grid-gallery figure { margin: 0; overflow: hidden; cursor: zoom-in; position: relative; }
.grid-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .6s var(--ease); }
.grid-gallery figure::after { content: ''; position: absolute; inset: 0; background: rgba(20,17,14,0); transition: background .5s var(--ease); }
.grid-gallery figure:hover img { transform: scale(1.06); }
.grid-gallery figure:hover::after { background: rgba(20,17,14,.12); }
/* feature tiles create rhythm */
.grid-gallery figure:nth-child(10n+1) { grid-column: span 2; grid-row: span 2; }
.grid-gallery figure:nth-child(10n+4) { grid-row: span 2; }
.grid-gallery figure:nth-child(10n+7) { grid-column: span 2; }
.grid-gallery figure:nth-child(10n+10) { grid-column: span 2; grid-row: span 2; }
.grid-gallery figure.reveal { transform: translateY(28px) scale(.985); }
.grid-gallery figure.reveal.in { transform: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(18,15,12,.94); display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity .4s var(--ease); }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 90vw; max-height: 86vh; object-fit: contain; box-shadow: 0 20px 80px rgba(0,0,0,.5); }
.lightbox__close, .lightbox__nav { position: absolute; color: #fff; font-size: 2rem; opacity: .8; transition: opacity .3s, transform .3s; user-select: none; }
.lightbox__close { top: 1.6rem; right: 2rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); padding: 1rem; font-size: 2.4rem; }
.lightbox__nav.prev { left: 1.5rem; }
.lightbox__nav.next { right: 1.5rem; }
.lightbox__close:hover, .lightbox__nav:hover { opacity: 1; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact__intro h2 { font-size: clamp(2rem, 4vw, 3rem); margin: .8rem 0 1.2rem; }
.contact__details { margin-top: 2.4rem; }
.contact__details dt { font-family: var(--sans); font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-bottom: .25rem; }
.contact__details dd { margin-bottom: 1.5rem; font-size: 1.05rem; }
.contact__details a:hover { color: var(--gold-dark); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: clamp(1.6rem, 3.2vw, 2.8rem); box-shadow: 0 40px 80px -50px rgba(43, 40, 36, .4); }
.form-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; margin-bottom: .4rem; }
.form-card > p { color: var(--charcoal-2); font-size: .95rem; margin-bottom: 1.8rem; }
.form-legend { font-family: var(--sans); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: .9rem; }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.15rem; display: flex; flex-direction: column; }
.field label { font-family: var(--sans); font-weight: 400; font-size: .78rem; letter-spacing: .04em; color: var(--charcoal-2); margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-weight: 300; font-size: 1rem; color: var(--charcoal);
  background: var(--ivory); border: 1px solid var(--line); border-radius: 7px;
  padding: .8rem .95rem; transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(169, 139, 99, .14); }
.field textarea { resize: vertical; min-height: 130px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: .5rem; }
.form-success { text-align: center; padding: 1.2rem 0; }
.form-success__mark { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: rgba(169,139,99,.16); color: var(--gold-dark); font-size: 1.5rem; margin-bottom: 1.3rem; }
.form-success h3 { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; margin-bottom: .5rem; color: var(--charcoal); }
.form-success p { color: var(--charcoal-2); }
.form-error { margin-top: 1rem; color: #a3432f; font-size: .9rem; line-height: 1.6; }

/* Google Maps quick link */
.maps-link {
  display: inline-flex; align-items: center; gap: .55em; margin-top: .3rem;
  font-family: var(--sans); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-dark); border-bottom: 1px solid var(--gold); padding-bottom: 5px; transition: gap .35s var(--ease);
}
.maps-link svg { width: 15px; height: 15px; }
.maps-link:hover { gap: 1em; color: var(--charcoal); }
.contact__note { margin-top: 1.8rem; font-size: .92rem; color: var(--charcoal-2); line-height: 1.75; padding-left: 1rem; border-left: 2px solid var(--sand); }
.map { margin-top: 2rem; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); filter: grayscale(.3) contrast(.98); }
.map iframe { width: 100%; height: 300px; border: 0; display: block; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.82); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__brand b { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; letter-spacing: .3em; display: block; color: #fff; }
.footer__brand span { font-size: .6rem; letter-spacing: .55em; opacity: .7; }
.footer__logo { height: 120px; width: auto; }
.footer__brand p { margin-top: 1.4rem; max-width: 34ch; font-size: .92rem; opacity: .75; }
.footer h4 { font-family: var(--sans); font-weight: 400; font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer__col a, .footer__col p { display: block; font-size: .94rem; opacity: .8; margin-bottom: .7rem; transition: opacity .3s, color .3s; }
.footer__col a:hover { opacity: 1; color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; font-size: .74rem; letter-spacing: .1em; opacity: .6; flex-wrap: wrap; gap: 1rem; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }

/* Image clip-reveal — unveils upward with a slow zoom */
.reveal-clip { overflow: hidden; clip-path: inset(0 0 100% 0); transition: clip-path 1.2s var(--ease); }
.reveal-clip.in { clip-path: inset(0 0 0 0); }
.reveal-clip img { transform: scale(1.14); transition: transform 1.6s var(--ease); }
.reveal-clip.in img { transform: scale(1); }

/* Staggered children (galleries) */
.reveal-stagger > * { opacity: 0; transform: translateY(30px) scale(.985); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: none; }

/* Hero headline — word-by-word mask rise */
.hero h1 .wm { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; }
.hero h1 .wm > span { display: inline-block; transform: translateY(112%); transition: transform 1.05s var(--ease); }
.hero.ready h1 .wm > span { transform: none; }
.hero .eyebrow, .hero__sub, .hero__cta { opacity: 0; transform: translateY(16px); transition: opacity 1s var(--ease) .5s, transform 1s var(--ease) .5s; }
.hero.ready .eyebrow, .hero.ready .hero__sub, .hero.ready .hero__cta { opacity: 1; transform: none; }
/* scroll hint fades only, so its translateX(-50%) centering is never overwritten */
.scroll-hint { opacity: 0; transition: opacity 1s var(--ease) .6s; }
.hero.ready .scroll-hint { opacity: .8; }

/* Parallax targets get a will-change hint */
[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .reveal-clip { clip-path: none; }
  .reveal-clip img { transform: none; }
  .hero h1 .wm > span, .hero .eyebrow, .hero__sub, .hero__cta { transform: none; opacity: 1; transition: none; }
  .hero .scroll-hint { opacity: .8; transition: none; }
  .hero__media img { animation: none; }
  [data-parallax] { transform: none !important; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .nav { position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 2rem;
    background: var(--ivory); transform: translateX(100%); transition: transform .5s var(--ease); }
  .nav.open { transform: translateX(0); }
  .nav a, .site-header.scrolled .nav a, .site-header:not(.scrolled) .nav a { color: var(--charcoal); font-size: 1rem; }
  .nav .nav-book { border-color: var(--charcoal); }
  .burger { display: block; }
  .brand__logo { height: 84px; }
  .site-header.scrolled .brand__logo { height: 66px; }
  /* full-screen menu: drop the header's backdrop-filter so the fixed nav covers the whole viewport */
  .site-header.menu-open { background: var(--ivory); backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none; }
  /* keep the logo visible (dark) while the menu is open */
  .site-header.menu-open .brand { position: relative; z-index: 130; }
  .site-header.menu-open .brand__logo,
  .site-header.menu-open.scrolled .brand__logo { filter: invert(0.85); height: 64px; }
  .nav-drop { display: flex; flex-direction: column; align-items: center; gap: 1.3rem; }
  .rooms__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .philosophy__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .room__media img { aspect-ratio: 4 / 3; }
  .suite, .suite:nth-child(even) .suite__media { grid-template-columns: 1fr; }
  .suite:nth-child(even) .suite__media { order: 0; }
  .suite__media img { aspect-ratio: 3/2; }
  .detail__intro, .contact__grid { grid-template-columns: 1fr; }
  .grid-gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 150px; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  form .row { grid-template-columns: 1fr; }
  /* mobile nav: dropdown opens inline, icons hidden */
  .nav-drop__menu { position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; background: transparent; padding: .3rem 0 0; }
  .nav-drop__menu a { text-align: center; color: var(--charcoal) !important; font-size: .85rem; }
  .nav-icon { display: none; }
}
@media (max-width: 560px) {
  .facilities ul { columns: 1; }
  .grid-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 42vw; }
  .grid-gallery figure { grid-column: auto !important; grid-row: auto !important; }
  .brand__name b { font-size: 1.05rem; letter-spacing: .28em; }
  .hero__cta { flex-direction: column; align-items: center; }
  .hero__cta .btn { width: 80%; justify-content: center; }
}
