/* ============================================================
   NAIA TAMARINDO — DESIGN SYSTEM (first-draft concept, v1)
   Rooftop · Pool · Plant-forward kitchen — Above Iguana Surf
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=League+Gothic&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Brand variables ──────────────────────────────────────────
   Teal + peach are Naia's confirmed brand colours. Everything
   else is a restrained supporting palette built around them:
   tile-green sampled from the real restaurant tile, ivory/sand
   for warm neutral grounds, dusk for the handful of dark
   sections used after sunset in the story. */
:root {
  --teal:        #00808D;
  --teal-deep:   #045C66;
  --teal-soft:   #4FA3AC;
  --peach:       #F6C0A7;
  --peach-deep:  #E29E7B;
  --tile-green:  #74928C;
  --tile-green-deep: #4E6864;
  --ivory:       #FAF5EA;
  --sand:        #E9DFC8;
  --sand-line:   rgba(27,46,46,0.14);
  --dusk:        #12313A;
  --dusk-soft:   #1C4653;
  --white:       #FFFFFF;
  --ink:         #17302F;
  --ink-soft:    #4C5F5D;

  --f-display:   'League Gothic', 'Oswald', sans-serif;
  --f-body:      'Montserrat', sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h:       84px;
  --max-w:       1360px;
  --gutter:      clamp(20px, 4vw, 64px);
  --section-v:   clamp(64px, 8vw, 116px);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ── Typography ─────────────────────────────────────────────── */
.t-display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.t-headline {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--teal);
}
.t-eyebrow {
  font-family: var(--f-body);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
}
.t-body { font-family: var(--f-body); font-weight: 400; line-height: 1.7; }
.t-body-sm { font-family: var(--f-body); font-weight: 400; font-size: 14px; line-height: 1.6; }

.fs-hero { font-size: clamp(38px, 7vw, 100px); }
.fs-xl   { font-size: clamp(40px, 6vw, 80px); }
.fs-lg   { font-size: clamp(32px, 4.2vw, 54px); }
.fs-md   { font-size: clamp(25px, 2.8vw, 34px); }
.fs-sm   { font-size: clamp(19px, 2vw, 23px); }

/* ── Colour + surface utilities ───────────────────────────────── */
.c-white { color: var(--white); }
.c-teal  { color: var(--teal); }
.c-peach { color: var(--peach-deep); }
.c-soft  { color: var(--ink-soft); }

.bg-white { background: var(--white); }
.bg-ivory { background: var(--ivory); }
.bg-sand  { background: var(--sand); }
.bg-teal  { background: var(--teal); }
.bg-dusk  { background: var(--dusk); color: rgba(255,255,255,0.88); }

/* Beige → warm orange → dusk-blue, for sections that narrate the day-into-
   night transition. Sits flush against a plain --ivory section above and a
   plain --dusk section below so the seam between them disappears. */
.bg-transition {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--peach-deep) 52%, var(--dusk) 100%);
  color: var(--white);
}
.bg-transition .t-headline,
.bg-transition .section-label span { color: var(--white); }
.bg-transition .section-label__dot { background: var(--white); }
.bg-transition .t-body, .bg-transition .c-soft { color: rgba(255,255,255,0.92); }

/* Full-bleed wrapper: background spans edge-to-edge (no side gutters at
   wide viewports), while its content still lines up with the rest of the
   page via the nested .about-split max-width. */
.section-bleed { padding: var(--section-v) 0; }
.section-bleed .about-split { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 var(--gutter); }
.container--copy { max-width: 640px; margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: var(--section-v) 0; }
.section--sm { padding: calc(var(--section-v) * 0.6) 0; }
.section--lg { padding: calc(var(--section-v) * 1.3) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── Section label ─────────────────────────────────────────── */
.section-label { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.section-label__dot {
  width: 9px; height: 9px; border-radius: 2px;
  background: var(--tile-green);
  transform: rotate(45deg);
  flex: none;
}
.section-label span { font-family: var(--f-body); font-weight: 600; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal-deep); }
.section-label--on-dark span { color: var(--peach); }
.section-label--center { justify-content: center; margin-left: auto; margin-right: auto; }

/* ── Logo ─────────────────────────────────────────────────────
   Real client-supplied artwork — never recreated. naia-logo.png
   for light grounds, naia-logo-white.png (same mask, recoloured)
   for the dusk footer / arrival veil. */
.brand-mark { display: flex; align-items: center; }
.brand-mark img { height: 46px; width: auto; display: block; }
.brand-mark--sm img { height: 34px; }
.brand-mark--lg img { height: 84px; }

/* ── Tile motif ───────────────────────────────────────────────
   The real restaurant tile — same geometry that inspired the
   logo's double arc. Used sparingly: a thin divider band, a very
   low-opacity background wash, and a small corner badge. Never a
   full busy pattern. */
.tile-divider {
  height: 64px;
  background-image: url('../images/tile/tile-unit.png');
  background-size: 128px 128px;
  background-repeat: repeat;
}
.tile-divider--sm { height: 40px; background-size: 80px 80px; }
.tile-wash {
  position: absolute; inset: 0;
  background-image: url('../images/tile/tile-unit.png');
  background-size: 260px 260px;
  background-repeat: repeat;
  opacity: 0.07;
  pointer-events: none;
}
.tile-badge {
  width: 34px; height: 34px;
  background-image: url('../images/tile/tile-unit.png');
  background-size: cover;
  border-radius: 4px;
  flex: none;
}
.has-tile-wash { position: relative; isolation: isolate; }
.has-tile-wash > *:not(.tile-wash) { position: relative; z-index: 1; }

/* Low-opacity tile watermark sat behind an individual card's own text,
   rather than a whole section — used on Our Story's value cards and
   Visit's contact cards. */
.tile-card { position: relative; overflow: hidden; isolation: isolate; }
.tile-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../images/tile/tile-unit.png');
  background-size: 220px 220px;
  background-repeat: repeat;
  opacity: 0.08;
  z-index: 0;
}
.tile-card > * { position: relative; z-index: 1; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-weight: 600; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 32px; transition: all 0.25s var(--ease-out); cursor: pointer;
}
.btn--primary { background: var(--teal); color: var(--white); }
.btn--primary:hover { background: var(--teal-deep); transform: translateY(-2px); }
.btn--peach { background: var(--peach); color: var(--dusk); }
.btn--peach:hover { background: var(--peach-deep); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.55); }
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn--outline-dark { background: transparent; color: var(--teal); border: 1px solid rgba(0,128,141,0.35); }
.btn--outline-dark:hover { background: rgba(0,128,141,0.07); border-color: var(--teal); }
.btn svg { width: 15px; height: 15px; transition: transform 0.25s; }
.btn:hover svg { transform: translateX(4px); }
.btn--sm { padding: 11px 22px; font-size: 12px; }
.btn[disabled], .btn.is-concept { opacity: 0.55; cursor: not-allowed; }

/* Concept-only tag for buttons that don't perform a real action yet */
.concept-tag {
  display: inline-block;
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-deep);
  background: rgba(0,128,141,0.09);
  border: 1px solid rgba(0,128,141,0.2);
  padding: 3px 8px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}
.concept-tag--on-dark { color: var(--peach); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(250,245,234,0.0);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled, .nav.nav--solid {
  background: rgba(250,245,234,0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--sand-line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; padding: 0 var(--gutter); }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__link {
  font-family: var(--f-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); transition: color 0.2s; position: relative;
}
.nav--on-dark .nav__link { color: var(--white); }
.nav.scrolled .nav__link, .nav--solid .nav__link { color: var(--ink); }
.nav__link::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0; height: 1px;
  background: var(--peach-deep); transform: scaleX(0); transition: transform 0.3s var(--ease-out); transform-origin: left;
}
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__cta {
  background: var(--teal); color: var(--white) !important;
  padding: 11px 22px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--teal-deep); transform: translateY(-1px); }

.nav__burger { display: none; flex-direction: column; gap: 5px; width: 26px; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; height: 2px; background: var(--teal); transition: all 0.3s; }
.nav--on-dark .nav__burger span { background: var(--white); }
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--ivory); flex-direction: column; align-items: center; justify-content: center; gap: 30px; z-index: 99;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link { font-size: 22px; color: var(--teal); }
.nav__mobile .nav__cta { padding: 14px 30px; }

/* ── Hero (shared pattern across pages) ───────────────────── */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden;
}
.hero--tall { min-height: 100svh; }
.hero--split { min-height: 62svh; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,28,32,0.10) 0%, rgba(10,28,32,0.12) 55%, rgba(8,22,28,0.58) 100%);
}
.hero__content { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(40px, 6vw, 68px); }
.hero__eyebrow {
  font-family: var(--f-body); font-weight: 600; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,255,255,0.92); margin-bottom: 18px; display: block;
  text-shadow: 0 1px 10px rgba(8,22,28,0.45);
}
.hero__title { color: var(--white); text-shadow: 0 2px 20px rgba(8,22,28,0.35); }
.hero__sub { color: rgba(255,255,255,0.92); max-width: 48ch; margin: 20px 0 30px; font-size: clamp(15px,1.6vw,18px); text-shadow: 0 1px 12px rgba(8,22,28,0.4); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; right: var(--gutter); bottom: 30px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.35); position: relative; overflow: hidden; }
.hero__scroll-line::after { content:''; position:absolute; left:0; top:-100%; width:100%; height:50%; background: var(--peach); animation: dripline 2.4s ease-in-out infinite; }
@keyframes dripline { 0%{ top:-50%; } 70%{ top:100%; } 100%{ top:100%; } }

.page-hero {
  position: relative; min-height: 46vh; display: flex; align-items: center; overflow: hidden;
  padding-top: var(--nav-h);
}
.page-hero__bg img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.page-hero__overlay { position:absolute; inset:0; background: linear-gradient(180deg, rgba(10,28,32,0.30), rgba(10,28,32,0.5)); }
.page-hero__content { position: relative; z-index: 2; padding: 56px 0; }
.page-hero__content h1 { text-shadow: 0 2px 20px rgba(8,22,28,0.4); }

/* ── Section label & intro blocks ─────────────────────────── */
.intro-block { max-width: 640px; }
.intro-block + .intro-block { margin-top: 18px; }

/* ── About / split layout ─────────────────────────────────────
   Image sits neatly beside its text, buffered by the page gutter,
   capped so it's never taller than the visitor's viewport. */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(32px, 5vw, 64px);
  max-width: var(--max-w); margin: 0 auto; padding: var(--section-v) var(--gutter);
}
.about-split__image { max-height: min(66vh, 520px); overflow: hidden; border-radius: 2px; }
.about-split__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-split__content { padding: 0; }
.about-split__content p + p { margin-top: 16px; }
.about-split--reverse { direction: rtl; }
.about-split--reverse > * { direction: ltr; }

/* ── Cards (food & drink previews) ──────────────────────────── */
.menu-card { display: flex; flex-direction: column; }
.menu-card__image { aspect-ratio: 5/4; margin-bottom: 18px; overflow: hidden; }
.menu-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.menu-card:hover .menu-card__image img { transform: scale(1.045); }
.menu-card__name { font-family: var(--f-display); font-weight: 400; font-size: 25px; color: var(--teal); text-transform: uppercase; letter-spacing: 0.02em; }
.menu-card__note { font-family: var(--f-body); font-weight: 500; font-size: 12px; letter-spacing: 0.06em; color: var(--tile-green-deep); margin: 6px 0 9px; text-transform: uppercase; }
.menu-card__desc { font-size: 14px; color: var(--ink-soft); }
.menu-card__desc.is-placeholder { font-style: normal; opacity: 0.8; }

/* ── Gallery / editorial grid ──────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 12px; }
.gallery-item { overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 12px 8px;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(8,22,28,0.68));
}

/* ── Justified gallery (Rooftop page) ──────────────────────────
   Classic justified-row packing: every photo in a row shares one
   height while keeping its own aspect ratio — never cropped, never
   distorted. Rows computed by js/justified-gallery.js. Grouped into
   sections by wrapping each category in its own container so rows
   never mix photos across categories; no visible labels needed. */
.justified-gallery { display: block; }
.justified-gallery__row { display: flex; gap: 6px; margin-bottom: 6px; }
.justified-gallery__tile { overflow: hidden; flex: none; position: relative; }
.justified-gallery__tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease-out); }
.justified-gallery__tile:hover img { transform: scale(1.035); }
.gallery-section + .gallery-section { margin-top: 48px; }

/* ── Stats strip ────────────────────────────────────────────── */
.stats-strip { background: var(--sand); padding: 44px 0; }
.stats-strip__inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.stat-item { flex: 1; min-width: 150px; text-align: center; position: relative; }
.stat-item + .stat-item::before { content: ''; position: absolute; left: 0; top: 10%; bottom: 10%; width: 1px; background: rgba(0,128,141,0.18); }
.stat-item__number { font-family: var(--f-display); font-weight: 400; font-size: clamp(28px, 3.4vw, 42px); color: var(--teal); line-height: 1; }
.stat-item__label { font-family: var(--f-body); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; }

/* ── Events / What's On cards ─────────────────────────────── */
.event-card {
  background: var(--white); border: 1px solid var(--sand-line);
  padding: 28px; display: flex; flex-direction: column; gap: 10px; height: 100%;
}
.event-card__tag {
  align-self: flex-start;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-deep); background: rgba(0,128,141,0.09); padding: 4px 9px; border-radius: 3px;
}
.event-card__tag--soon { color: #8a6a1f; background: rgba(198,150,40,0.12); }
.event-card__name { font-family: var(--f-display); font-size: 26px; color: var(--teal); text-transform: uppercase; }
.event-card__when { font-size: 13px; font-weight: 600; color: var(--ink-soft); letter-spacing: 0.03em; }
.event-card__desc { font-size: 14px; color: var(--ink-soft); }

.events-band {
  background: var(--dusk); color: var(--white);
  padding: clamp(36px, 5vw, 60px); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.events-band__text { max-width: 46ch; position: relative; z-index: 1; }
.events-band .t-eyebrow { color: var(--peach); }

/* ── Reviews ("Guest Notes") ──────────────────────────────────
   One reusable card system, rendered by js/reviews.js from
   data/reviews-data.js. Used full-size on Home, compact on Visit. */
.reviews {
  position: relative;
}
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--sand-line);
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.review-card::before {
  content: '';
  position: absolute; top: 0; left: 28px; width: 30px; height: 3px;
  background: var(--tile-green);
}
.review-card__stars { display: flex; gap: 3px; color: var(--peach-deep); }
.review-card__stars svg { width: 14px; height: 14px; fill: currentColor; }
.review-card__text { font-size: 15px; line-height: 1.65; color: var(--ink); }
.review-card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; }
.review-card__name { font-weight: 600; font-size: 13px; letter-spacing: 0.02em; color: var(--teal-deep); }
.review-card__source { font-size: 11px; color: var(--ink-soft); opacity: 0.75; letter-spacing: 0.04em; }

.reviews--compact .reviews__grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
.reviews--compact .review-card { padding: 22px 20px; }
.reviews--compact .review-card__text { font-size: 13.5px; }

.reviews__source-note {
  text-align: center; margin-top: 28px; font-size: 12px; color: var(--ink-soft); letter-spacing: 0.05em;
}
.reviews__source-note a { color: var(--teal-deep); text-decoration: underline; text-underline-offset: 2px; }

/* ── Location / contact ───────────────────────────────────── */
.location-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0; }
.location-split__map { min-height: 420px; position: relative; background: var(--sand); }
.location-split__map iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.location-split__content { background: var(--sand); padding: clamp(32px, 5vw, 68px); display: flex; flex-direction: column; justify-content: center; }
.access-note {
  background: rgba(0,128,141,0.08);
  border: 1px solid rgba(0,128,141,0.22);
  border-left: 3px solid var(--teal);
  padding: 16px 18px;
  font-size: 14.5px;
  color: var(--teal-deep);
  font-weight: 600;
  margin-bottom: 22px;
  display: flex; gap: 12px; align-items: flex-start;
}
.access-note svg { flex: none; margin-top: 2px; color: var(--teal); }
.info-row { display: flex; gap: 16px; padding: 15px 0; border-bottom: 1px solid rgba(0,128,141,0.14); }
.info-row:first-of-type { border-top: 1px solid rgba(0,128,141,0.14); }
.info-row__icon { color: var(--peach-deep); flex: none; margin-top: 2px; }
.info-row b { font-family: var(--f-body); font-weight: 600; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 3px; }
.info-row span { font-size: 14.5px; color: var(--ink-soft); }
.social-row { display: flex; gap: 14px; margin-top: 24px; }
.social-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(0,128,141,0.3);
  display: flex; align-items: center; justify-content: center; color: var(--teal); transition: all 0.2s;
}
.social-btn:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* ── Contact form (visual only — see js/main.js for safe no-op) ── */
.contact-form { display: grid; gap: 16px; }
.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-deep); display: block; margin-bottom: 6px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 13px 14px; background: var(--white);
  border: 1px solid rgba(0,128,141,0.25); font-size: 14px; color: var(--ink);
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid var(--teal-soft); outline-offset: 1px; }
.form-note { font-size: 12px; color: var(--ink-soft); opacity: 0.85; margin-top: 6px; }

.contact-tile {
  background: var(--white); border: 1px solid var(--sand-line); padding: 26px;
  display: flex; flex-direction: column; gap: 8px; height: 100%;
}
.contact-tile__icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(0,128,141,0.09); display: flex; align-items: center; justify-content: center; color: var(--teal); margin-bottom: 4px; }
.contact-tile__title { font-family: var(--f-display); font-size: 21px; color: var(--teal); text-transform: uppercase; letter-spacing: 0.02em; }
.contact-tile__desc { font-size: 13.5px; color: var(--ink-soft); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--sand-line); padding: 18px 0; }
.faq-item__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-weight: 600; color: var(--teal-deep); font-size: 15px; }
.faq-item__icon { flex: none; transition: transform 0.25s var(--ease-out); color: var(--peach-deep); }
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); font-size: 14px; color: var(--ink-soft); }
.faq-item.open .faq-item__a { max-height: 240px; padding-top: 10px; }

/* ── Footer ────────────────────────────────────────────────── */
.footer { background: var(--dusk); color: rgba(255,255,255,0.78); }
.footer__access {
  padding: 20px 0;
  background: var(--dusk-soft);
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
}
.footer__main { padding: 52px 0 28px; }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.footer__blurb { max-width: 30ch; font-size: 13px; color: rgba(255,255,255,0.62); margin-top: 14px; }
.footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--peach); margin-bottom: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 13.5px; color: rgba(255,255,255,0.82); }
.footer__links a:hover { color: var(--white); }
.footer__cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 22px; font-size: 12px; color: rgba(255,255,255,0.55); }

/* ── Reveal-on-scroll ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-26px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal-left.in-view { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(26px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal-right.in-view { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* ── Placeholder helper (only where genuinely no asset exists) ── */
.ph {
  position: relative; width: 100%; height: 100%; min-height: 200px;
  background: linear-gradient(150deg, var(--sand) 0%, #DDD0B4 100%);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.ph__label {
  font-family: var(--f-body); font-weight: 600; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(23,48,47,0.7); padding: 9px 16px; border: 1px solid rgba(23,48,47,0.2); background: rgba(255,255,255,0.6);
  max-width: 220px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .location-split { grid-template-columns: 1fr; }
  .location-split__map { min-height: 320px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .about-split { grid-template-columns: 1fr; gap: 24px; padding: calc(var(--section-v) * 0.7) var(--gutter); }
  .about-split--reverse { direction: ltr; }
  .about-split__image { max-height: 300px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .gallery-item--wide { grid-column: span 2; }
  .stats-strip__inner { justify-content: flex-start; }
  .stat-item { flex: 1 1 40%; }
  .reviews__grid, .reviews--compact .reviews__grid { grid-template-columns: 1fr; }
  .contact-form .field-row { grid-template-columns: 1fr; }
  .footer__cols { gap: 36px; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
}
