/* ===================================================================
   Siobhan Reilly Pilates — styles
   Palette: ocean (deep teal + sea glass) with warm sand, on foam ivory.
   Feminine but neutral. Mobile first.
   --gold / --gold-soft now carry the sea-teal / aqua accent.
   =================================================================== */

:root {
  --ink: #103a42;        /* deep ocean teal (near-black) */
  --slate: #2a6e79;      /* sea */
  --slate-2: #3c818d;    /* lighter sea */
  --teal: #7bb1ab;       /* sea glass / aqua */
  --mist: #e6efec;       /* pale seafoam */
  --cream: #f1f4ef;      /* foam ivory background */
  --paper: #ffffff;
  --gold: #1f6f78;       /* PRIMARY ACCENT: sea teal (eyebrows, links, bullets, hovers) */
  --gold-soft: #8fc2bc;  /* soft aqua (decorative, badges) */
  --sand: #c2a878;       /* warm sand (decorative warmth) */
  --sand-soft: #ddcaa6;
  --line: #e0e6df;
  --line-cool: #d0dcd7;
  --text: #26434b;       /* deep sea-gray */
  --muted: #5f7980;      /* sea gray */

  --maxw: 1180px;
  --gutter: 22px;
  --radius: 4px;
  --shadow-sm: 0 6px 22px rgba(16, 58, 66, 0.08);
  --shadow-md: 0 18px 50px rgba(16, 58, 66, 0.15);

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--slate); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--gold); }

::selection { background: var(--gold-soft); color: var(--ink); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: 820px; }

.section { padding: 68px 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}

.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head .eyebrow { text-align: center; }
.section-intro { color: var(--muted); margin-top: 14px; font-size: 16px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 600; line-height: 1.12; letter-spacing: 0.005em; }

h1 { font-size: clamp(2.3rem, 7.5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 5vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.4rem); }
h4 { font-size: 1rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 16px 30px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer; transition: all 0.3s var(--ease);
  text-align: center; line-height: 1;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--gold); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--slate); border-color: var(--line-cool); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ===================================================================
   Header / nav
   =================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 2px 18px rgba(27,38,48,0.05); }

.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 70px; }

.brand { display: flex; flex-direction: column; line-height: 1.1; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-name { font-family: var(--serif); font-size: 21px; font-weight: 600; letter-spacing: 0.01em; }
.brand-mark { font-family: var(--sans); font-size: 9.5px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

.nav { display: none; align-items: center; gap: 30px; }
.nav a { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--ink); position: relative; }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0; background: var(--gold); transition: width 0.3s var(--ease);
}
.nav a:not(.nav-cta):hover { color: var(--gold); }
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--ink); color: #fff !important; padding: 11px 20px; border-radius: var(--radius);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.nav-cta:hover { background: var(--gold); }

.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; background: transparent; border: 0; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: all 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
@media (max-width: 899px) {
  .nav {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; gap: 0; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 24px; display: flex;
    transform: translateY(-130%); transition: transform 0.4s var(--ease); box-shadow: var(--shadow-md);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .nav a:last-child { border-bottom: 0; }
  .nav .nav-cta { text-align: center; margin-top: 16px; padding: 15px; font-size: 12.5px; }
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
}

/* ===================================================================
   Hero
   =================================================================== */
.hero { position: relative; padding: 40px 0 56px; background:
  radial-gradient(120% 90% at 85% 0%, #fff 0%, var(--cream) 55%),
  linear-gradient(180deg, var(--mist) 0%, var(--cream) 40%);
}
.hero-grid { display: grid; gap: 36px; align-items: center; }

.hero-copy { order: 2; }
.hero-portrait { order: 1; position: relative; max-width: 420px; margin: 0 auto; }

.hero-tag { font-family: var(--serif); font-style: italic; font-size: clamp(1.25rem, 4vw, 1.7rem); color: var(--slate); margin: 6px 0 18px; }
.lead { font-size: 17px; color: var(--text); max-width: 540px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 22px; }

.hero-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 8px; }
.hero-chips li {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-2);
  border: 1px solid var(--line-cool); border-radius: 100px; padding: 7px 15px; background: rgba(255,255,255,0.6);
}

.hero-portrait img, .hero-media { width: 100%; border-radius: 6px; box-shadow: var(--shadow-md); display: block; }
.hero-media { aspect-ratio: 9 / 16; max-height: 80vh; object-fit: cover; object-position: center 24%; background: var(--mist); }
.hero-portrait::before {
  content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--sand); border-radius: 6px; z-index: -1;
}
.portrait-badge {
  position: absolute; left: 14px; bottom: 16px; background: rgba(27,38,48,0.82); color: #fff;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; padding: 9px 14px; border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.portrait-badge strong { color: var(--gold-soft); font-weight: 700; }

@media (min-width: 760px) {
  .hero { padding: 56px 0 76px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 50px; }
  .hero-copy { order: 1; }
  .hero-portrait { order: 2; max-width: 460px; }
}
@media (min-width: 1000px) {
  .hero { padding: 76px 0 92px; }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 70px; }
}

/* ===================================================================
   Trust strip
   =================================================================== */
.trust { background: var(--ink); color: #fff; }
.trust-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 18px; padding: 36px 0; }
.trust-item { display: flex; flex-direction: column; gap: 4px; text-align: center; }
.trust-num { font-family: var(--serif); font-size: clamp(1.7rem, 5vw, 2.4rem); color: #fff; line-height: 1; }
.trust-num span { color: var(--gold-soft); }
.trust-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #aebcc6; }

@media (min-width: 760px) {
  .trust-inner { grid-template-columns: repeat(4, 1fr); padding: 44px 0; }
  .trust-item { position: relative; }
  .trust-item:not(:last-child)::after { content: ""; position: absolute; right: -9px; top: 10%; height: 80%; width: 1px; background: rgba(255,255,255,0.12); }
}

/* ===================================================================
   About
   =================================================================== */
.about-grid { display: grid; gap: 34px; align-items: center; }
.about-media { position: relative; max-width: 440px; margin: 0 auto; }
.about-media img { border-radius: 6px; box-shadow: var(--shadow-md); }
.about-media::after { content: ""; position: absolute; inset: -14px 14px 14px -14px; border: 1px solid var(--sand); border-radius: 6px; z-index: -1; }

.cred-list { list-style: none; margin-top: 22px; display: grid; gap: 9px; }
.cred-list li { position: relative; padding-left: 22px; font-size: 14.5px; color: var(--text); }
.cred-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }

.resume-link { margin-top: 20px; }
.resume-link a { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); display: inline-flex; gap: 8px; align-items: center; }
.resume-link a:hover { color: var(--gold); }
.resume-link a span { transition: transform 0.3s var(--ease); }
.resume-link a:hover span { transform: translateX(5px); }

@media (min-width: 860px) {
  .about-grid { grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
  .about-media { margin: 0; }
  .cred-list { grid-template-columns: 1fr 1fr; }
}

/* ===================================================================
   Philosophy (full-bleed image + glass card)
   =================================================================== */
.philosophy { position: relative; padding: 0; color: #fff; isolation: isolate; }
.philosophy-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.philosophy-media img, .philosophy-media video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.philosophy::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(16,58,66,0.94) 0%, rgba(16,58,66,0.80) 45%, rgba(16,58,66,0.48) 100%); }
.philosophy-inner { display: flex; padding-top: 80px; padding-bottom: 80px; }
.philosophy-card { max-width: 560px; }
.philosophy-card h2 { color: #fff; }
.philosophy-card p { color: #d7dee3; margin-bottom: 1.1rem; }
.philosophy-card .btn { margin-top: 12px; }

@media (min-width: 760px) { .philosophy-inner { padding-top: 120px; padding-bottom: 120px; } }

/* ===================================================================
   Services cards
   =================================================================== */
.services { background: var(--paper); }
.cards { display: grid; gap: 22px; }
.card {
  background: var(--cream); border: 1px solid var(--line); border-radius: 6px; padding: 34px 30px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15px; margin-bottom: 20px; }
.card-link { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); display: inline-flex; gap: 8px; }
.card-link span { transition: transform 0.3s var(--ease); }
.card:hover .card-link { color: var(--gold); }
.card:hover .card-link span { transform: translateX(5px); }

@media (min-width: 760px) { .cards { grid-template-columns: repeat(3, 1fr); } }

/* ===================================================================
   Split sections (private, studio)
   =================================================================== */
.split { display: grid; gap: 34px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: 6px; box-shadow: var(--shadow-md); width: 100%; }
.split-media video, .teacher-media video { width: 100%; border-radius: 6px; box-shadow: var(--shadow-md); aspect-ratio: 4 / 5; object-fit: cover; object-position: center 26%; background: var(--mist); display: block; }
.split-media::before, .teacher-media::before { content: ""; position: absolute; inset: -14px 14px 14px -14px; border: 1px solid var(--sand); border-radius: 6px; z-index: -1; }
.split-reverse .split-media::before { inset: -14px -14px 14px 14px; }
.private { background: var(--mist); }
.split-copy h3 { margin: 26px 0 10px; }
.split-copy h2 + p { margin-top: 6px; }

.check-list { list-style: none; display: grid; gap: 11px; margin: 6px 0 26px; }
.check-list li { position: relative; padding-left: 30px; font-size: 15px; color: var(--text); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px;
  background: var(--gold); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}

@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; gap: 60px; }
  .split-reverse .split-media { order: 2; }
}

/* ===================================================================
   Teacher training
   =================================================================== */
.teacher { background: var(--paper); }
.teacher-grid { display: grid; gap: 36px; align-items: start; }
.teacher-media { position: relative; }
.teacher-media img { border-radius: 6px; box-shadow: var(--shadow-md); width: 100%; }

.teacher-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 30px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.teacher-stats > div { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--serif); font-size: clamp(1.6rem, 5vw, 2.2rem); color: var(--gold); line-height: 1; }
.stat-label { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); line-height: 1.4; }
.teacher-credibility { background: var(--mist); border-left: 3px solid var(--gold); padding: 18px 20px; border-radius: 0 var(--radius) var(--radius) 0; font-size: 14.5px; color: var(--slate); margin: 8px 0 22px; }
.teacher-upcoming { font-size: 14px; color: var(--slate); margin: 0 0 16px; }
.teacher-upcoming strong { color: var(--ink); font-weight: 700; }
.teacher-cta { display: flex; flex-wrap: wrap; gap: 12px; }

@media (min-width: 900px) { .teacher-grid { grid-template-columns: 0.9fr 1.1fr; gap: 56px; } .teacher-media { position: sticky; top: 90px; } }

/* ===================================================================
   Engagements
   =================================================================== */
.engagements { background: var(--ink); color: #fff; }
.engage-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.engage-inner h2 { color: #fff; }
.engage-inner p { color: #c3ccd2; margin: 14px auto 28px; }
.engagements .eyebrow { color: var(--gold-soft); }

/* ===================================================================
   Gallery
   =================================================================== */
.gallery { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gallery-grid figure { overflow: hidden; border-radius: 5px; background: var(--mist); }
.gallery-grid img, .gallery-grid video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); aspect-ratio: 4 / 5; display: block; background: var(--mist); }
.gallery-grid figure { position: relative; }
.gallery-grid figure:hover img, .gallery-grid figure:hover video { transform: scale(1.05); }
.gallery-grid figcaption { position: absolute; left: 12px; bottom: 11px; z-index: 2; color: #fff; font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; text-shadow: 0 1px 6px rgba(8,30,34,0.6); pointer-events: none; }

@media (min-width: 760px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }

/* ===================================================================
   Booking — calendar + form
   =================================================================== */
.book { background: var(--mist); }
.booking { display: grid; gap: 26px; align-items: stretch; }

.book-contact { background: var(--ink); color: #fff; border-radius: 8px; padding: 40px 34px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; justify-content: center; }
.book-contact h3 { color: #fff; margin-bottom: 12px; }
.book-contact > p { color: #c3ccd2; font-size: 15px; margin-bottom: 26px; max-width: 34ch; }
.book-phone { display: inline-block; font-family: var(--serif); font-size: 2.1rem; color: #fff; letter-spacing: 0.01em; line-height: 1.1; }
.book-phone:hover { color: var(--gold-soft); }
.book-email { display: inline-block; margin-top: 12px; font-weight: 600; font-size: 15px; letter-spacing: 0.03em; color: var(--gold-soft); }
.book-email:hover { color: #fff; }
.book-divider { height: 1px; background: rgba(255,255,255,0.14); margin: 28px 0; }
.book-area { font-size: 12px; color: #9fb0b8; letter-spacing: 0.14em; text-transform: uppercase; margin: 0; }
.book-note { font-size: 13px; color: #9fb0b8; margin: 10px 0 0; }

.calendar { background: #fff; border: 1px solid var(--line-cool); border-radius: 8px; padding: 24px 22px; box-shadow: var(--shadow-sm); }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-title { font-size: 1.25rem; }
.cal-nav { width: 44px; height: 44px; border: 1px solid var(--line-cool); background: #fff; border-radius: 50%; cursor: pointer; color: var(--ink); font-size: 16px; transition: all 0.25s var(--ease); }
.cal-nav:hover:not(:disabled) { background: var(--ink); color: #fff; border-color: var(--ink); }
.cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }

.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 8px; }
.cal-weekdays span { text-align: center; font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day {
  aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
  border: 1px solid transparent; background: var(--cream); border-radius: var(--radius);
  font-family: var(--sans); font-size: 14px; color: var(--ink); cursor: pointer;
  transition: all 0.2s var(--ease);
}
.cal-day.empty { background: transparent; cursor: default; }
.cal-day.disabled { color: #c4c9cd; background: transparent; cursor: not-allowed; }
.cal-day.available:hover { border-color: var(--gold); color: var(--gold); }
.cal-day.today { box-shadow: inset 0 0 0 1px var(--gold-soft); }
.cal-day.selected { background: var(--ink); color: #fff; border-color: var(--ink); }
.cal-day.selected:hover { color: #fff; }

.time-slots { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.slots-label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate); margin-bottom: 12px; }
.slots-label span { color: var(--gold); }
.slots { display: flex; flex-wrap: wrap; gap: 9px; }
.slot { border: 1px solid var(--line-cool); background: #fff; border-radius: var(--radius); padding: 10px 16px; font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink); cursor: pointer; transition: all 0.2s var(--ease); }
.slot:hover { border-color: var(--gold); color: var(--gold); }
.slot.selected { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Form */
.booking-form { background: #fff; border: 1px solid var(--line-cool); border-radius: 8px; padding: 26px 24px; box-shadow: var(--shadow-sm); }
.selected-summary { background: var(--mist); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 20px; font-size: 14px; min-height: 52px; display: flex; align-items: center; }
.selected-summary.filled { background: #f3f7ee; border-left: 3px solid var(--gold); }
.selected-summary strong { color: var(--ink); }
.summary-empty { color: var(--muted); }

.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.field-row { display: grid; gap: 16px; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate); margin-bottom: 7px; }
.field .optional { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--cream);
  border: 1px solid var(--line-cool); border-radius: var(--radius); padding: 13px 14px; width: 100%;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.field textarea { resize: vertical; min-height: 84px; }
.field input.invalid, .field select.invalid { border-color: #c0563f; background: #fdf3f1; }

.form-error { color: #c0563f; font-size: 13.5px; font-weight: 500; margin: 4px 0 14px; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; line-height: 1.5; }

@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .booking { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 430px) { .calendar { padding: 18px 12px; } .cal-grid, .cal-weekdays { gap: 3px; } }

/* ===================================================================
   FAQ
   =================================================================== */
.faq { background: var(--paper); }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 6px; background: var(--cream); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 22px; font-family: var(--serif); font-size: 1.1rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--sans); font-size: 22px; font-weight: 300; color: var(--gold); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 22px 22px; }
.faq-body p { color: var(--muted); font-size: 15px; }

/* ===================================================================
   Footer
   =================================================================== */
.site-footer { background: var(--ink); color: #aebcc6; padding: 60px 0 30px; }
.footer-grid { display: grid; gap: 36px; }
.footer-brand .brand-name { color: #fff; font-size: 24px; font-family: var(--serif); display: block; }
.footer-brand .brand-mark { color: var(--gold-soft); font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; display: block; margin-top: 4px; }
.footer-tag { margin-top: 16px; font-size: 14px; max-width: 360px; color: #9aa8b2; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: #aebcc6; font-size: 14px; display: inline-block; padding: 6px 0; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-col li { font-size: 14px; }

.footer-bottom { display: flex; flex-direction: column; gap: 8px; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { font-size: 12px; color: #7d8b95; margin: 0; letter-spacing: 0.02em; }

@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ===================================================================
   Reveal on scroll
   =================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ===================================================================
   Ocean ribbon + video
   =================================================================== */
.site-header { position: sticky; }
.site-header::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sand) 0%, var(--gold-soft) 45%, var(--slate) 100%);
}
video { max-width: 100%; -webkit-tap-highlight-color: transparent; }
/* subtle aqua wash behind the foam background for an ocean feel */
body { background:
  radial-gradient(140% 60% at 50% 0%, #ffffff 0%, var(--cream) 60%),
  var(--cream);
  background-attachment: fixed;
}
