/* ==========================================================================
   The Transfer Team — stylesheet
   Palette: deep navy / charcoal with a warm gold accent.
   Mobile-first; breakpoints at 560px, 640px, 900px and 1100px.
   ========================================================================== */

:root {
  /* Brand */
  --navy-900: #070D18;
  --navy-800: #0B1220;
  --navy-700: #101A2C;
  --line:      rgba(217, 180, 91, 0.16);
  --line-soft: rgba(255, 255, 255, 0.09);

  --gold:      #D9B45B;
  --gold-soft: #EBD08D;

  /* Text — every pairing below meets WCAG AA on its background */
  --text:      #F2F5FA;
  --text-mid:  #C3CCDA;
  --text-dim:  #97A3B6;
  --on-gold:   #12192A;

  --wa:      #25D366;
  --wa-dark: #128C4B;
  --danger:  #FF8A8A;

  --radius:    14px;
  --radius-lg: 22px;
  --shadow:    0 18px 45px rgba(0, 0, 0, 0.45);

  --wrap: 1180px;
  --header-h: 74px;

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

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

html {
  scroll-behavior: smooth;
  /* Stops the sticky header covering headings on anchor jumps */
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--navy-800);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
svg { display: block; }
ul { margin: 0; padding: 0; list-style: none; }
p  { margin: 0 0 1rem; }
a  { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-soft); }

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}

/* Visible focus ring for keyboard users, everywhere */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--gold);
  color: var(--on-gold);
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

.gold  { color: var(--gold); }
.muted { color: var(--text-dim); }

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
              border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), color 0.18s var(--ease);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .ico   { width: 18px; height: 18px; flex: none; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--on-gold);
  box-shadow: 0 8px 24px rgba(217, 180, 91, 0.22);
}
.btn-gold:hover { color: var(--on-gold); box-shadow: 0 12px 30px rgba(217, 180, 91, 0.32); }

.btn-wa { background: var(--wa-dark); color: #fff; }
.btn-wa:hover { background: #0F7A41; color: #fff; }

.btn-outline { background: transparent; color: var(--gold); border-color: rgba(217, 180, 91, 0.45); }
.btn-outline:hover { background: rgba(217, 180, 91, 0.1); border-color: var(--gold); color: var(--gold-soft); }

.btn-ghost { background: rgba(255, 255, 255, 0.05); color: var(--text); border-color: var(--line-soft); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

.btn-sm    { padding: 9px 16px; font-size: 0.85rem; }
.btn-lg    { padding: 16px 32px; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; }

/* --------------------------------------------------------------- Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 18, 32, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.site-header.scrolled {
  background: rgba(7, 13, 24, 0.95);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--gold); flex: none; }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  display: block;
  padding: 9px 14px;
  color: var(--text-mid);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.18s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 3px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold); }

.header-cta { display: none; gap: 8px; flex: none; }
.nav-cta-mobile { display: none; }

.nav-toggle {
  margin-left: auto;
  width: 46px; height: 42px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  cursor: pointer;
}
.nav-toggle .bar {
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
@media (max-width: 899px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--navy-900);
    border-bottom: 1px solid var(--line);
    padding: 18px 20px 26px;
    display: none;
    box-shadow: var(--shadow);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .nav.open { display: block; animation: dropIn 0.22s var(--ease); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-link { padding: 14px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav-link::after { display: none; }
  .nav-cta-mobile { display: grid; gap: 10px; margin-top: 20px; }
}
@keyframes dropIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

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

/* --------------------------------------------------------------- Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(88vh, 780px);
  padding: 96px 0 84px;
  overflow: hidden;
  isolation: isolate;
}

/* IMAGE PLACEHOLDER — to use a real hero photograph, add to .hero-bg:
     background-image:
       linear-gradient(115deg, rgba(7,13,24,0.94) 0%, rgba(7,13,24,0.72) 55%, rgba(7,13,24,0.5) 100%),
       url("assets/hero.jpg");
     background-size: cover;
     background-position: center;
   …and delete the gradients + ::after texture below. */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1100px 620px at 78% 8%, rgba(217, 180, 91, 0.14), transparent 62%),
    radial-gradient(900px 560px at 6% 92%, rgba(64, 110, 190, 0.16), transparent 60%),
    linear-gradient(165deg, var(--navy-900) 0%, var(--navy-700) 52%, var(--navy-800) 100%);
}
.hero-bg::after {
  /* Faint diagonal texture so the flat gradient doesn't band */
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 9px);
}

.hero-inner { position: relative; max-width: 780px; }

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero-title { font-size: clamp(2.35rem, 7.4vw, 4.5rem); margin-bottom: 22px; }

.hero-sub {
  font-size: clamp(1.02rem, 2.3vw, 1.22rem);
  color: var(--text-mid);
  max-width: 60ch;
  margin-bottom: 32px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.hero-badges li { display: flex; align-items: center; gap: 9px; }
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 180, 91, 0.15);
  flex: none;
}

.scroll-hint {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(217, 180, 91, 0.4);
  border-radius: 14px;
  display: none;
}
.scroll-hint span {
  position: absolute;
  left: 50%; top: 9px;
  width: 3px; height: 8px;
  margin-left: -1.5px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.9s var(--ease) infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 0; transform: translateY(0); }
  35%      { opacity: 1; }
  70%      { opacity: 0; transform: translateY(13px); }
}
@media (min-width: 900px) { .scroll-hint { display: block; } }

/* --------------------------------------------------------------- Location strip */
.strip {
  background: var(--navy-900);
  border-block: 1px solid var(--line);
  padding: 15px 0;
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}
.strip-inner span { position: relative; }
.strip-inner span + span::before {
  content: "·";
  position: absolute;
  left: -17px;
  color: var(--gold);
}

/* --------------------------------------------------------------- Sections */
.section { padding: 76px 0; }
.section-alt { background: var(--navy-900); }
@media (min-width: 900px) { .section { padding: 104px 0; } }

.section-head  { max-width: 680px; margin-bottom: 46px; }
.section-title { font-size: clamp(1.85rem, 4.2vw, 2.85rem); }
.section-lede  { color: var(--text-mid); font-size: 1.04rem; margin-bottom: 0; }

/* --------------------------------------------------------------- Services */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service {
  display: flex;
  flex-direction: column;
  padding: 26px 24px 22px;
  background: linear-gradient(170deg, var(--navy-700), var(--navy-800));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: transform 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.service:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 180, 91, 0.4);
  box-shadow: var(--shadow);
}
.service:focus-within { border-color: rgba(217, 180, 91, 0.45); }

.service-top { display: flex; align-items: center; gap: 13px; margin-bottom: 12px; }

/* ICON NOTE: these are inline SVGs — no icon font or library needed.
   If the client supplies real service photography it can sit above each card. */
.service-ico {
  width: 46px; height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(217, 180, 91, 0.11);
  border: 1px solid rgba(217, 180, 91, 0.24);
  color: var(--gold);
}
.service-ico svg { width: 23px; height: 23px; }

.service-title { font-size: 1.14rem; margin: 0; }
.service-desc  { color: var(--text-mid); font-size: 0.93rem; margin-bottom: 14px; }

.service-more {
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
  margin-bottom: 14px;
  animation: fadeIn 0.25s var(--ease);
}
.service-more ul { display: grid; gap: 9px; }
.service-more li {
  position: relative;
  padding-left: 20px;
  font-size: 0.87rem;
  color: var(--text-mid);
}
.service-more li::before {
  content: "";
  position: absolute;
  left: 2px; top: 0.62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.75;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.service-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}

.link-toggle {
  background: none;
  border: 0;
  padding: 4px 0;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-toggle::after {
  content: "";
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.22s var(--ease);
}
.link-toggle[aria-expanded="true"]::after { transform: rotate(-135deg) translate(-2px, -2px); }
.link-toggle:hover { color: var(--gold-soft); }

.services-foot {
  margin-top: 34px;
  text-align: center;
  color: var(--text-mid);
  font-size: 0.96rem;
}

/* --------------------------------------------------------------- Why choose us */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why {
  padding: 28px 26px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.022);
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.why:hover { border-color: rgba(217, 180, 91, 0.3); background: rgba(255, 255, 255, 0.04); }
.why-ico {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(217, 180, 91, 0.12);
  color: var(--gold);
  margin-bottom: 16px;
}
.why-ico svg { width: 23px; height: 23px; }
.why h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why p  { color: var(--text-mid); font-size: 0.92rem; margin: 0; }

/* --------------------------------------------------------------- About */
.about-grid { display: grid; gap: 44px; }
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
}
.about-copy p { color: var(--text-mid); }
.about-list { display: grid; gap: 11px; margin: 26px 0 30px; }
.about-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 0.95rem;
}
.about-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 15px; height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.about-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.about-media { display: grid; gap: 16px; }

/* PHOTO PLACEHOLDER — replace with a real <img>. See the note in index.html. */
.photo-placeholder {
  aspect-ratio: 4 / 3;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
  border: 2px dashed rgba(217, 180, 91, 0.32);
  border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, var(--navy-700), var(--navy-800));
  color: var(--text-dim);
}
.photo-placeholder svg { width: 54px; height: 54px; color: rgba(217, 180, 91, 0.5); }
.photo-placeholder p { margin: 0; font-size: 0.86rem; line-height: 1.5; }
.photo-placeholder strong { color: var(--gold); }

.stat-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(217, 180, 91, 0.09), rgba(255, 255, 255, 0.02));
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 5px;
}

/* --------------------------------------------------------------- Testimonials */
.placeholder-note {
  border-left: 3px solid var(--gold);
  padding: 10px 0 10px 16px;
  font-size: 0.92rem;
  color: var(--text-dim);
  background: rgba(217, 180, 91, 0.06);
  border-radius: 0 8px 8px 0;
}
.placeholder-note strong { color: var(--gold); }

.testimonials { display: grid; gap: 18px; }
@media (min-width: 900px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

.quote {
  margin: 0;
  padding: 30px 26px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, var(--navy-700), var(--navy-800));
  display: flex;
  flex-direction: column;
}
.stars { color: var(--gold); letter-spacing: 0.16em; font-size: 0.95rem; margin-bottom: 14px; }
.quote blockquote { margin: 0 0 20px; }
.quote blockquote p { margin: 0; color: var(--text); font-size: 1rem; line-height: 1.7; }
.quote figcaption { margin-top: auto; display: flex; flex-direction: column; gap: 2px; }
.q-name { font-weight: 600; color: var(--gold); font-size: 0.94rem; }
.q-meta { font-size: 0.8rem; color: var(--text-dim); }

/* --------------------------------------------------------------- Booking form */
.book-grid { display: grid; gap: 36px; }
@media (min-width: 900px) {
  .book-grid  { grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: start; }
  .book-intro { position: sticky; top: calc(var(--header-h) + 28px); }
}
.book-intro p { color: var(--text-mid); }
.book-points { display: grid; gap: 12px; margin: 26px 0; }
.book-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.94rem; color: var(--text-mid); }
.tick {
  flex: none;
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(217, 180, 91, 0.15);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
}
.book-contactbox { display: grid; gap: 10px; max-width: 320px; }

.booking-form {
  padding: 28px 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, var(--navy-700), var(--navy-800));
  box-shadow: var(--shadow);
}
@media (min-width: 640px) { .booking-form { padding: 36px 34px; } }

.form-title {
  font-size: 1.35rem;
  padding-bottom: 16px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
}

.grid-2 { display: grid; }
@media (min-width: 560px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 0 18px; } }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.req { color: var(--gold); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  font: inherit;
  font-size: 1rem; /* 16px minimum stops iOS Safari zooming the page on focus */
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  min-height: 48px;
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23D9B45B' d='M1.4 0 6 4.6 10.6 0 12 1.4 6 7.4 0 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 11px;
  padding-right: 40px;
}
/* The dropdown list itself renders with the OS palette — force readable colours */
.field select option { background: var(--navy-700); color: var(--text); }

.field input::placeholder,
.field textarea::placeholder { color: #7A8699; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(217, 180, 91, 0.16);
}

/* Native date/time icons render dark-on-dark otherwise */
.field input[type="date"]::-webkit-calendar-picker-indicator,
.field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(78%) sepia(38%) saturate(500%) hue-rotate(2deg);
  cursor: pointer;
}

.hint { font-size: 0.78rem; color: var(--text-dim); margin: 6px 0 0; }

.error { margin: 6px 0 0; font-size: 0.8rem; color: var(--danger); }
.error:empty { display: none; }

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: var(--danger);
  background: rgba(255, 138, 138, 0.06);
}

/* Return-journey switch */
.return-block {
  padding: 18px;
  margin-bottom: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.022);
}
.switch { position: relative; display: flex; align-items: center; gap: 12px; cursor: pointer; margin: 0; }
.switch input {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  width: 46px; height: 26px;
  margin: 0;
  cursor: pointer;
}
.switch-ui {
  position: relative;
  flex: none;
  width: 46px; height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--line-soft);
  transition: background-color 0.22s var(--ease), border-color 0.22s var(--ease);
}
.switch-ui::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--text-dim);
  transition: transform 0.22s var(--ease), background-color 0.22s var(--ease);
}
.switch input:checked + .switch-ui { background: rgba(217, 180, 91, 0.32); border-color: var(--gold); }
.switch input:checked + .switch-ui::after { transform: translateX(20px); background: var(--gold); }
.switch input:focus-visible + .switch-ui { outline: 3px solid var(--gold); outline-offset: 3px; }
.switch-label { font-size: 0.92rem; font-weight: 600; }

.return-fields { margin-top: 20px; animation: fadeIn 0.25s var(--ease); }

.field-consent { margin-bottom: 22px; }
.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.88rem !important;
  font-weight: 400 !important;
  color: var(--text-mid) !important;
  cursor: pointer;
  margin-bottom: 0 !important;
}
.consent input {
  flex: none;
  width: 19px; height: 19px;
  min-height: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-status { margin: 16px 0 0; font-size: 0.9rem; border-radius: var(--radius); }
.form-status:empty { display: none; }
.form-status.success {
  padding: 14px 16px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #A8F0C4;
}
.form-status.error-msg {
  padding: 14px 16px;
  background: rgba(255, 138, 138, 0.08);
  border: 1px solid rgba(255, 138, 138, 0.35);
  color: var(--danger);
}

.form-smallprint { margin: 14px 0 0; font-size: 0.82rem; color: var(--text-dim); text-align: center; }

/* --------------------------------------------------------------- Contact */
.contact-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px)  { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, var(--navy-700), var(--navy-800));
  color: var(--text);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
a.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 180, 91, 0.45);
  box-shadow: var(--shadow);
  color: var(--text);
}
.contact-card--static { background: rgba(255, 255, 255, 0.022); }
.contact-ico {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(217, 180, 91, 0.12);
  color: var(--gold);
  margin-bottom: 12px;
}
.contact-ico svg { width: 22px; height: 22px; }
.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contact-value {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--gold);
  word-break: break-word;
}
.contact-value--sm { font-size: 0.95rem; }
.contact-note { font-size: 0.82rem; color: var(--text-dim); }

/* --------------------------------------------------------------- Footer */
.site-footer {
  background: var(--navy-900);
  border-top: 1px solid var(--line);
  padding: 56px 0 0;
}
.footer-grid { display: grid; gap: 34px; }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; } }

.footer-blurb { color: var(--text-dim); font-size: 0.9rem; margin: 18px 0 20px; max-width: 42ch; }

.social { display: flex; gap: 10px; }
.social a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  border: 1px solid var(--line-soft);
  color: var(--text-mid);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.social a:hover { color: var(--gold); border-color: rgba(217, 180, 91, 0.45); background: rgba(217, 180, 91, 0.08); }
.social svg { width: 19px; height: 19px; }

.footer-col h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 9px; }
.footer-col a { color: var(--text-mid); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-contact .muted { font-size: 0.82rem; line-height: 1.5; }

.footer-bottom {
  margin-top: 44px;
  padding: 22px 20px 26px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.footer-bottom p { margin: 0; }

/* --------------------------------------------------------------- Mobile contact bar */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 1px;
  background: var(--line-soft);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.mb-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 6px;
  font-size: 0.86rem;
  font-weight: 600;
  background: var(--navy-900);
  color: var(--text);
}
.mb-btn svg { width: 17px; height: 17px; }
.mb-wa   { color: var(--wa); }
.mb-book { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: var(--on-gold); }

@media (min-width: 900px) { .mobile-bar { display: none; } }
/* Keep the sticky bar from covering the end of the page on mobile */
@media (max-width: 899px) { body { padding-bottom: 62px; } }

/* --------------------------------------------------------------- Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }

/* Stagger cards within a grid for a slightly richer entrance */
.services-grid .reveal:nth-child(4n+2),
.why-grid      .reveal:nth-child(3n+2),
.contact-grid  .reveal:nth-child(4n+2) { transition-delay: 0.07s; }
.services-grid .reveal:nth-child(4n+3),
.why-grid      .reveal:nth-child(3n+3),
.contact-grid  .reveal:nth-child(4n+3) { transition-delay: 0.14s; }
.services-grid .reveal:nth-child(4n+4),
.contact-grid  .reveal:nth-child(4n+4) { transition-delay: 0.21s; }

/* --------------------------------------------------------------- Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .service:hover, a.contact-card:hover { transform: none; }
}

/* --------------------------------------------------------------- Print */
@media print {
  .site-header, .mobile-bar, .scroll-hint, .booking-form, .social { display: none !important; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1; transform: none; }
}
