/* =================================================================
   TAITA — MAFIA ISLAND LANDING PAGE
   Design tokens: Ocean Blue + Natural Orange, sand neutrals
   Type: Fraunces (display) + Schibsted Grotesk (UI/body)
================================================================= */

:root {
  /* -- Color: Ocean -- */
  --ocean-deep:   #0A3A52;
  --ocean-deep-2: #0D4A68;
  --ocean:        #146C94;
  --ocean-light:  #59A9C6;
  --ocean-mist:   #DCEEF3;

  /* -- Color: Orange -- */
  --orange:       #D68A2E;
  --orange-deep:  #B06E1E;
  --orange-light: #F2A354;
  --orange-mist:  #FBE7D3;

  /* -- Neutrals -- */
  --sand:         #F8F3E7;
  --sand-deep:    #EFE6D2;
  --ink:          #10262F;
  --ink-soft:     #3C5560;
  --white:        #FFFFFF;

  /* -- Type -- */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Schibsted Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* -- Scale -- */
  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.95rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.4rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 1.9rem);
  --step-3:  clamp(1.9rem, 1.6rem + 1.5vw, 2.6rem);
  --step-4:  clamp(2.4rem, 1.9rem + 2.4vw, 3.6rem);
  --step-5:  clamp(3rem, 2.2rem + 3.6vw, 5rem);

  /* -- Layout -- */
  --wrap: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --shadow-soft: 0 18px 40px -20px rgba(10, 58, 82, 0.35);
  --ease: cubic-bezier(.22,.9,.32,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

@media (min-width: 768px) {
  .wrap { padding-inline: 32px; }
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ocean-deep);
  letter-spacing: -0.01em;
}

h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); font-weight: 600; }

p { font-size: var(--step-0); color: var(--ink-soft); }

.kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--step--1);
  color: var(--orange-deep);
  margin-bottom: 10px;
}

.kicker-light { color: var(--orange-light); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ocean-deep); color: var(--white);
  padding: 10px 16px; border-radius: var(--radius-sm);
  z-index: 999; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--step--1);
  padding: 15px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(226, 113, 29, 0.55);
}
.btn-primary:hover { background: var(--orange-deep); }

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }

.btn-block { width: 100%; justify-content: center; }
.btn-compact { padding: 13px 20px; white-space: nowrap; }

/* =================================================================
   HEADER / NAV
================================================================= */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding-block: 14px;
  transition: background-color .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(248, 243, 231, 0.92);
  backdrop-filter: blur(10px);
  padding-block: 10px;
  box-shadow: 0 8px 24px -18px rgba(10,58,82,.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  transition: color .3s var(--ease);
}
.site-header.is-scrolled .brand { color: var(--ocean-deep); }

.brand-mark { color: var(--orange); display: flex; }

.brand-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: .8;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 30px;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--white);
  transition: color .3s var(--ease);
}
.site-header.is-scrolled .main-nav { color: var(--ink); }

.main-nav a { position: relative; padding-block: 4px; }
.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -3px;
  height: 2px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.main-nav a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 100px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
}
.nav-toggle span {
  height: 2px; width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-scrolled .nav-toggle span { background: var(--ocean-deep); }

.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);
}
.nav-toggle[aria-expanded="true"] span,
.site-header.is-scrolled .nav-toggle[aria-expanded="true"] span {
  background: var(--white) !important;
}

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

/* Mobile nav drawer */
@media (max-width: 959px) {
  .main-nav {
    position: fixed;
    inset: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    background: var(--ocean-deep);
    color: var(--white);
    font-size: var(--step-2);
    font-family: var(--font-display);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav .nav-cta { order: 99; margin-top: 10px; }
  body.nav-locked { overflow: hidden; }
}

/* =================================================================
   HERO
================================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 70px;
  background:
    radial-gradient(ellipse at 20% 15%, #1c6e8c 0%, transparent 55%),
    linear-gradient(160deg, var(--ocean-deep) 0%, #0c4462 55%, #0a5878 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,58,82,.55) 0%, rgba(10,58,82,.35) 40%, rgba(8,30,42,.88) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.event-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sand);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: var(--step--1);
  font-weight: 500;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
  opacity: 0;
  animation: rise .8s var(--ease) .1s forwards;
}
.event-flag i { color: var(--orange-light); }
.event-flag .fill-in { color: var(--orange-light); font-weight: 600; }

.hero-title {
  color: var(--white);
  font-size: var(--step-5);
  max-width: 15ch;
  margin-bottom: 24px;
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: rise .9s var(--ease) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: .25s; }
.hero-title .line.accent {
  color: var(--orange-light);
  animation-delay: .45s;
}

.hero-sub {
  color: var(--ocean-mist);
  max-width: 46ch;
  font-size: var(--step-1);
  margin-bottom: 36px;
  opacity: 0;
  animation: rise .9s var(--ease) .65s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: rise .9s var(--ease) .85s forwards;
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 100px;
  display: none;
}
.scroll-cue span {
  position: absolute;
  top: 7px; left: 50%;
  width: 5px; height: 5px;
  margin-left: -2.5px;
  background: var(--orange-light);
  border-radius: 50%;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: 7px; opacity: 1; }
  70% { top: 24px; opacity: 0; }
  100% { top: 24px; opacity: 0; }
}
@media (min-width: 700px) and (min-height: 600px) {
  .scroll-cue { display: block; }
}

/* =================================================================
   TRUST STRIP
================================================================= */
.trust {
  background: var(--ocean-deep);
  padding-block: 28px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-num {
  font-family: var(--font-display);
  color: var(--orange-light);
  font-size: var(--step-2);
  font-weight: 600;
}
.trust-label {
  color: var(--ocean-mist);
  font-size: var(--step--1);
}
@media (min-width: 700px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =================================================================
   SECTION HEAD (shared)
================================================================= */
.section-head { max-width: 62ch; margin-bottom: 44px; }
.section-lede { font-size: var(--step-0); margin-top: 14px; }

section { padding-block: clamp(56px, 9vw, 112px); }

/* =================================================================
   STORY
================================================================= */
.story-grid {
  display: grid;
  gap: 48px;
}
.story-copy p { margin-top: 16px; }
.story-copy h2 { margin-bottom: 4px; }

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--step-2);
  color: var(--ocean-deep);
  line-height: 1.35;
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  margin-block: 28px !important;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ocean);
  font-weight: 600;
  margin-top: 12px;
}
.text-link i { transition: transform .25s var(--ease); }
.text-link:hover i { transform: translateX(4px); }

.story-figure {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(155deg, var(--ocean) 0%, var(--ocean-deep) 100%);
  overflow: hidden;
}
.figure-frame {
  position: absolute; inset: 18px;
  border: 1px dashed rgba(255,255,255,.35);
  border-radius: 12px;
}
.figure-tape {
  position: absolute; top: 18px; left: 18px;
  background: var(--orange);
  color: var(--white);
  font-size: var(--step--1);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 0 0 10px 0;
}
.figure-orbit {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 2.1rem;
  color: rgba(255,255,255,.85);
}
.figure-orbit i:nth-child(2) { color: var(--orange-light); transform: translateY(14px); }
.figure-orbit i:nth-child(3) { transform: translateY(-10px); }

@media (min-width: 900px) {
  .story-grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 64px; }
  .story-figure { min-height: 420px; }
}

/* =================================================================
   SERVICES — "boarding pass" tickets
================================================================= */
.services { background: var(--sand-deep); }

.ticket-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ticket-row::-webkit-scrollbar { display: none; }

.ticket {
  scroll-snap-align: start;
  flex: 0 0 78%;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(10,58,82,.06);
}
.ticket::after {
  content: '';
  position: absolute;
  left: -9px; bottom: 54px;
  width: 18px; height: 18px;
  background: var(--sand-deep);
  border-radius: 50%;
}
.ticket-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--ocean-mist);
  color: var(--ocean-deep);
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.ticket:nth-child(2n) .ticket-icon { background: var(--orange-mist); color: var(--orange-deep); }
.ticket h3 { margin-bottom: 8px; font-size: var(--step-1); }
.ticket p { font-size: var(--step--1); }
.ticket-code {
  display: block;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(10,58,82,.18);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--ocean-light);
  font-weight: 600;
}
.ticket-hint {
  display: flex; align-items: center; gap: 8px;
  font-size: var(--step--1);
  color: var(--ink-soft);
  margin-top: 6px;
}

@media (min-width: 700px) {
  .ticket { flex: 0 0 44%; }
}
@media (min-width: 1080px) {
  .ticket-row { overflow: visible; flex-wrap: wrap; }
  .ticket { flex: 1 1 30%; }
  .ticket-hint { display: none; }
}

/* =================================================================
   WHY MAFIA
================================================================= */
.why-grid {
  display: grid;
  gap: 44px;
}
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.chip-list li {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--ocean-deep);
  background: var(--ocean-mist);
  padding: 8px 16px;
  border-radius: 100px;
}

.why-media {
  display: grid;
  gap: 16px;
}
.why-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--white);
  font-size: var(--step-0);
}
.why-card i { font-size: 1.4rem; }
.why-card-1 { background: linear-gradient(135deg, var(--ocean), var(--ocean-deep)); }
.why-card-2 { background: linear-gradient(135deg, var(--orange), var(--orange-deep)); }
.why-card-3 { background: linear-gradient(135deg, var(--ocean-deep), #082733); }

@media (min-width: 900px) {
  .why-grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
}

/* =================================================================
   JOURNEYS
================================================================= */
.journey-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.journey-scroll::-webkit-scrollbar { display: none; }

.journey-card {
  scroll-snap-align: start;
  flex: 0 0 72%;
  background: var(--white);
  border: 1px solid rgba(10,58,82,.1);
  border-radius: var(--radius-md);
  padding: 24px;
}
.journey-card h3 { font-size: var(--step-0); margin-bottom: 8px; }
.journey-card p { font-size: var(--step--1); margin-bottom: 16px; }
.journey-stay {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange-deep);
}

@media (min-width: 640px) { .journey-card { flex: 0 0 46%; } }
@media (min-width: 1080px) { .journey-card { flex: 0 0 22%; } }

/* =================================================================
   COMING SOON
================================================================= */
.soon {
  position: relative;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.soon-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(226,113,29,.25), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(89,169,198,.3), transparent 50%),
    linear-gradient(160deg, #082733 0%, var(--ocean-deep) 55%, #0c4462 100%);
}
.soon-inner { position: relative; max-width: 640px; }
.soon h2 { color: var(--white); margin-bottom: 20px; }
.soon-copy {
  color: var(--ocean-mist);
  font-size: var(--step-0);
  margin-bottom: 34px;
}
.soon-emphasis {
  display: inline-block;
  margin-top: 10px;
  color: var(--orange-light);
  font-weight: 600;
}

.soon-form { max-width: 460px; margin-inline: auto; }
.soon-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px;
  padding: 6px 6px 6px 20px;
  backdrop-filter: blur(6px);
}
.soon-field i { color: var(--orange-light); }
.soon-field input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  padding: 10px 0;
  min-width: 0;
}
.soon-field input::placeholder { color: rgba(255,255,255,.55); }
.soon-note {
  margin-top: 14px;
  font-size: var(--step--1);
  color: var(--orange-light);
  min-height: 1.2em;
}

@media (max-width: 460px) {
  .soon-field { flex-wrap: wrap; border-radius: 20px; padding: 16px; }
  .soon-field input { width: 100%; padding-block: 8px; }
  .soon-field .btn { width: 100%; justify-content: center; }
}

/* =================================================================
   PROCESS
================================================================= */
.process-list {
  display: grid;
  gap: 28px;
}
.process-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ocean-deep);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
}
.process-list li:nth-child(2n) .step-num { background: var(--orange); }
.process-list h3 { font-size: var(--step-0); margin-bottom: 4px; }
.process-list p { font-size: var(--step--1); }

@media (min-width: 900px) {
  .process-list { grid-template-columns: repeat(2, 1fr); column-gap: 60px; }
}

/* =================================================================
   ENQUIRE FORM
================================================================= */
.enquire { background: var(--sand-deep); }

.enquire-grid {
  display: grid;
  gap: 44px;
}

.contact-list { margin-top: 30px; display: grid; gap: 18px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-list i {
  width: 38px; height: 38px;
  flex: none;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--ocean-mist);
  color: var(--ocean-deep);
}
.contact-list span:first-child {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.contact-list a { color: var(--ocean-deep); font-weight: 600; }
.contact-list a:hover { color: var(--orange-deep); }

.social-row { display: flex; gap: 12px; margin-top: 30px; }
.social-row a {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--ocean-deep);
  color: var(--white);
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.social-row a:hover { background: var(--orange); transform: translateY(-3px); }

.enquire-form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-soft);
}

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--ocean-deep);
  margin-bottom: 7px;
}
.form-row .optional { color: var(--ink-soft); font-weight: 400; }

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1.5px solid #DCD4C0;
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: var(--step--1);
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--ocean);
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 110px; }

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

.form-row-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-row-check input { margin-top: 4px; accent-color: var(--orange); }
.form-row-check label { font-weight: 400; font-size: var(--step--1); color: var(--ink-soft); }

.form-status {
  margin-top: 14px;
  font-size: var(--step--1);
  font-weight: 600;
  min-height: 1.2em;
  text-align: center;
}
.form-status.ok { color: #1E7D4E; }
.form-status.err { color: #C23B2B; }

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
}

@media (min-width: 960px) {
  .enquire-grid { grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: start; }
}

/* =================================================================
   FOOTER
================================================================= */
.site-footer {
  background: var(--ocean-deep);
  color: var(--ocean-mist);
  padding-block: 48px;
  text-align: center;
}
.footer-inner { display: grid; gap: 10px; justify-items: center; }
.footer-brand .brand-word {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
}
.footer-brand p { color: var(--ocean-mist); font-size: var(--step--1); margin-top: 6px; }
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--orange-light);
  font-size: var(--step-0);
  margin-top: 6px;
}
.footer-meta { font-size: 0.78rem; opacity: .7; margin-top: 12px; color:#b3b3b3}

/* =================================================================
   MOBILE STICKY ACTION BAR
================================================================= */
.mobile-bar {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  display: flex;
  gap: 8px;
  background: var(--white);
  border-radius: 100px;
  padding: 8px;
  box-shadow: 0 16px 34px -12px rgba(10,58,82,.45);
}
.mobile-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 4px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ocean-deep);
}
.mobile-bar a i { font-size: 1.05rem; }
.mobile-bar-cta {
  background: var(--orange);
  color: var(--white) !important;
}

@media (min-width: 960px) {
  .mobile-bar { display: none; }
}

/* =================================================================
   DOWNLOADS
================================================================= */
.downloads { background: var(--sand); }

.download-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .download-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .download-grid { grid-template-columns: repeat(4, 1fr); }
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(10,58,82,.06);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.download-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px -20px rgba(10,58,82,.45);
}

.download-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--orange-mist);
  color: var(--orange-deep);
  font-size: 1.3rem;
}

.download-body { flex: 1; }
.download-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean-light);
  margin-bottom: 8px;
}
.download-body h3 { font-size: var(--step-0); margin-bottom: 6px; }
.download-body p { font-size: var(--step--1); }

.download-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: var(--step--1);
  color: var(--ocean-deep);
  background: var(--ocean-mist);
  padding: 11px 18px;
  border-radius: 100px;
  transition: background-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.download-btn:hover {
  background: var(--ocean-deep);
  color: var(--white);
  transform: translateY(-2px);
}