:root {
  --background: #fbf8f1;
  --foreground: #102b33;
  --card: #ffffff;
  --card-foreground: #102b33;
  --popover: #ffffff;
  --popover-foreground: #102b33;
  --primary: #102b33;
  --primary-foreground: #ffffff;
  --secondary: #f1eadf;
  --secondary-foreground: #102b33;
  --muted: #f1eadf;
  --muted-foreground: #5d7075;
  --accent: #d9edf0;
  --accent-foreground: #102b33;
  --destructive: #c83d33;
  --border: #d7d4ca;
  --input: #d7d4ca;
  --ring: #087d86;
  --radius: 0.35rem;
  --ink: #102b33;
  --ink-deep: #071f27;
  --ocean: #087d86;
  --lagoon: #21b6b0;
  --sand: #f3eadb;
  --cream: #fbf8f1;
  --coral: #ef6a57;
  --leaf: #4f7a5e;
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
  --radius-sm: calc(var(--radius) - 2px);
  --radius-md: var(--radius);
  --radius-lg: calc(var(--radius) + 2px);
  --radius-xl: calc(var(--radius) + 6px);
  --font-sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }

body::after {
  content: "";
  position: fixed;
  z-index: 18;
  top: 112px;
  right: 0;
  bottom: 0;
  width: 26px;
  pointer-events: none;
  opacity: .48;
  background: url("tapa-pattern.svg") center / auto 88px repeat-y;
}
button, input, select, textarea { font: inherit; }
button { border: 0; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 112px;
  padding: 0 clamp(22px, 5vw, 76px) 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.24);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .28;
  background: linear-gradient(90deg, rgba(6,28,42,.88), rgba(6,28,42,.55)), url("tapa-pattern.svg") center / 280px 88px repeat-x;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16px;
  opacity: .96;
  background: url("tapa-pattern.svg") center / auto 58px repeat-x;
}
.site-header > * { position: relative; z-index: 1; }
.brand { display: inline-flex; flex-direction: column; width: max-content; line-height: 1; }
.brand-logo { display: block; width: 226px; height: auto; }
.site-header .brand { box-sizing: border-box; height: 72px; padding: 5px 12px; align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgba(255,255,255,.58); border-radius: 6px; background: rgba(255,255,255,.98); box-shadow: 0 10px 28px rgba(3,25,35,.16); }
.site-header .brand-logo { width: auto; height: 60px; max-width: 190px; object-fit: contain; }
.footer-brand { padding: 8px 11px; border-radius: 4px; background: #fff; }
.brand-name { font-size: 22px; font-weight: 800; letter-spacing: .22em; }
.brand-subtitle { margin-top: 6px; color: #e5cc94; font-size: 10px; font-weight: 700; letter-spacing: .39em; text-transform: uppercase; }
.brand-o {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin: 0 1px;
  border: 2px solid #e5cc94;
  border-radius: 50%;
  color: transparent;
  vertical-align: -2px;
  background:
    linear-gradient(45deg, transparent 38%, #e5cc94 39% 47%, transparent 48% 62%, #e5cc94 63% 71%, transparent 72%),
    linear-gradient(-45deg, transparent 38%, #e5cc94 39% 47%, transparent 48% 62%, #e5cc94 63% 71%, transparent 72%);
}
.desktop-nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 700; letter-spacing: .03em; }
.desktop-nav a { opacity: .84; transition: opacity .2s ease; }
.desktop-nav a:hover { opacity: 1; }
.header-cta { justify-self: end; display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px; border: 1px solid rgba(255,255,255,.48); border-radius: 999px; font-size: 13px; font-weight: 700; transition: background .2s ease, color .2s ease; }
.header-cta:hover { background: white; color: var(--ink); }

.hero {
  position: relative;
  min-height: 790px;
  height: 96vh;
  max-height: 920px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: white;
  background: #163d45;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  animation: hero-slideshow 24s ease-in-out infinite;
  will-change: opacity;
}
@keyframes hero-slideshow {
  0%, 25% { opacity: 1; }
  27.5%, 100% { opacity: 0; }
}
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,25,31,.68) 0%, rgba(4,28,34,.28) 43%, rgba(4,25,31,.01) 78%), linear-gradient(0deg, rgba(3,25,30,.18), transparent 45%); }
.hero-content { position: relative; z-index: 2; width: min(1240px, 90vw); margin: 70px auto 0; }
.eyebrow { margin: 0 0 26px; display: flex; align-items: center; gap: 9px; color: var(--ocean); font-size: 11px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow.light { color: #e5cc94; }
.hero h1 { margin: 0; max-width: 850px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(64px, 7.6vw, 116px); font-weight: 400; line-height: .88; letter-spacing: -.058em; }
.hero h1 em { color: #efd9ab; font-weight: 400; }
.hero-copy { max-width: 650px; margin: 34px 0 0; color: rgba(255,255,255,.82); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.68; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 25px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; width: max-content; border-radius: 999px; padding: 16px 23px; font-size: 13px; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-light { background: white; color: var(--ink); }
.button-light:hover { background: #f3e8d1; }
.launch-note { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.78); font-size: 13px; font-weight: 700; }
.hero-card { position: absolute; z-index: 3; right: clamp(22px, 5vw, 76px); bottom: 40px; display: flex; flex-direction: column; width: min(375px, 35vw); padding: 23px 26px; border: 1px solid rgba(255,255,255,.3); background: rgba(4,37,44,.55); backdrop-filter: blur(16px); }
.hero-card-kicker { margin-bottom: 18px; color: #e5cc94; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero-card strong { font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 400; }
.hero-card > span:last-child { margin-top: 8px; color: rgba(255,255,255,.65); font-size: 12px; line-height: 1.5; }

.trust-strip { min-height: 78px; padding: 20px max(5vw, calc((100vw - 1240px) / 2)); display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid #d9d5ca; background: white; }
.trust-strip span { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 38px; border-right: 1px solid #ddd9cf; color: #4e646a; font-size: 12px; font-weight: 700; }
.trust-strip span:first-child { justify-content: flex-start; }
.trust-strip span:last-child { justify-content: flex-end; border-right: 0; }
.trust-strip svg { color: var(--ocean); }

.intro { width: min(1240px, 90vw); margin: 0 auto; padding: 130px 0 115px; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(60px, 10vw, 150px); align-items: end; }
.intro h2, .section-heading h2, .fleet-heading h2, .difference h2, .booking h2, .enquiry-intro h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(44px, 5.2vw, 76px); font-weight: 400; line-height: 1.02; letter-spacing: -.04em; }
.intro-copy { border-left: 1px solid #c9c7bc; padding-left: 35px; }
.intro-copy p { margin: 0; color: #52666b; font-size: 16px; line-height: 1.8; }
.intro-copy p + p { margin-top: 18px; }

.tours-section { padding: 110px max(5vw, calc((100vw - 1240px) / 2)); background: #f1eadf; }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 55px; }
.section-heading h2 { max-width: 690px; font-size: clamp(43px, 5vw, 70px); }
.section-heading .eyebrow { margin: 0 40px 8px 0; white-space: nowrap; }
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.tour-card { overflow: hidden; min-height: 0; border: 1px solid rgba(16,43,51,.12); background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.tour-card:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(16,43,51,.09); }
.tour-card > img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .45s ease; }
.tour-card:hover > img { transform: scale(1.035); }
.tour-card-body { padding: 25px 26px 28px; }
.tour-topline { display: flex; justify-content: space-between; align-items: flex-start; }
.tour-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.67); }
.tour-number { font-family: Georgia, "Times New Roman", serif; font-size: 14px; opacity: .55; }
.tour-duration { display: inline-block; margin-bottom: 11px; color: rgba(16,43,51,.64); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.tour-card h3 { margin: 0 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: 29px; font-weight: 400; line-height: 1.08; letter-spacing: -.025em; }
.tour-card p { margin: 0; color: #52666b; font-size: 14px; line-height: 1.65; }
.tour-card a { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; }
.pricing-note { margin: 24px 0 0; max-width: 740px; color: #66777a; font-size: 12px; line-height: 1.6; }

.fleet-section { padding: 120px max(5vw, calc((100vw - 1240px) / 2)); background: #fff; }
.fleet-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: clamp(40px, 8vw, 120px); margin-bottom: 48px; }
.fleet-heading h2 { max-width: 750px; font-size: clamp(43px, 5vw, 70px); }
.fleet-heading > p { margin: 0 0 6px; max-width: 520px; color: #52666b; font-size: 16px; line-height: 1.75; }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fleet-card { overflow: hidden; border: 1px solid rgba(16,43,51,.14); background: var(--cream); box-shadow: 0 16px 45px rgba(16,43,51,.07); }
.fleet-card > img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.fleet-card-copy { padding: 24px 25px 28px; }
.fleet-card-copy > span { display: inline-block; margin-bottom: 12px; padding: 6px 9px; color: #7d512f; border: 1px solid rgba(166,111,67,.32); background: rgba(166,111,67,.09); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.fleet-card h3 { margin: 0 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: 27px; font-weight: 400; line-height: 1.08; }
.fleet-card p { margin: 0; color: #52666b; font-size: 13px; line-height: 1.65; }
.fleet-disclaimer { margin: 25px 0 0; max-width: 950px; padding-left: 18px; border-left: 3px solid #a66f43; color: #66777a; font-size: 12px; line-height: 1.65; }

.difference { padding: 125px max(5vw, calc((100vw - 1240px) / 2)); display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(50px, 9vw, 135px); color: white; background: var(--ink-deep); }
.difference-title h2 { color: white; }
.promise-list { border-top: 1px solid rgba(255,255,255,.2); }
.promise-list article { display: grid; grid-template-columns: 48px 1fr; gap: 22px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.promise-list article > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: #e5cc94; border: 1px solid rgba(229,204,148,.38); }
.promise-list h3 { margin: 0 0 8px; font-size: 17px; }
.promise-list p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.65; }

.booking { padding: 125px max(5vw, calc((100vw - 1240px) / 2)); display: grid; grid-template-columns: 1fr 1fr; gap: 16px 90px; background: #e4f0ee; }
.booking-copy { grid-row: span 2; }
.booking-copy > p:not(.eyebrow) { max-width: 570px; margin: 28px 0 24px; color: #52666b; font-size: 15px; line-height: 1.75; }
.text-link { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 800; }
.booking-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(16,43,51,.2); }
.booking-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(16,43,51,.2); }
.booking-steps li > span { display: grid; place-items: center; width: 35px; height: 35px; border: 1px solid var(--ocean); border-radius: 50%; color: var(--ocean); font-family: Georgia, "Times New Roman", serif; }
.booking-steps strong { font-size: 15px; }
.booking-steps p { margin: 6px 0 0; color: #5c7074; font-size: 13px; line-height: 1.55; }
.security-note { display: grid; grid-template-columns: 30px 1fr; gap: 12px; padding: 18px 20px; background: white; }
.security-note svg { color: var(--ocean); }
.security-note > span { color: var(--ocean); font-size: 22px; }
.security-note p { margin: 0; color: #5b6f73; font-size: 12px; line-height: 1.55; }
.security-note strong { color: var(--ink); }

.enquiry-section { padding: 125px max(5vw, calc((100vw - 1240px) / 2)); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(55px, 8vw, 115px); align-items: start; }
.enquiry-intro { position: sticky; top: 35px; }
.enquiry-intro > p:not(.eyebrow) { max-width: 500px; margin: 28px 0; color: #52666b; font-size: 15px; line-height: 1.75; }
.enquiry-intro > p a { color: var(--ocean); font-weight: 800; }
.market-note { display: grid; grid-template-columns: 30px 1fr; gap: 10px; max-width: 490px; padding-top: 20px; border-top: 1px solid #d3d0c7; color: #637579; font-size: 12px; line-height: 1.6; }
.market-note svg { color: var(--coral); }

.inquiry-form { padding: clamp(26px, 4vw, 48px); border: 1px solid #d4d0c6; background: white; box-shadow: 0 26px 75px rgba(16,43,51,.08); }
.form-heading { margin-bottom: 32px; display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 24px; border-bottom: 1px solid #ddd9cf; }
.form-heading span { color: var(--ocean); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.form-heading h3 { margin: 7px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 400; }
.form-heading svg { color: var(--ocean); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; }
.inquiry-form label { display: block; margin-bottom: 20px; }
.inquiry-form label > span { display: block; margin-bottom: 8px; color: #4e6267; font-size: 11px; font-weight: 800; }
.form-control { min-height: 48px; width: 100%; border-radius: 0; border-color: #d2d0c8; background: #fbfaf6; box-shadow: none; font-size: 14px; }
.form-control:focus-visible { border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(8,125,134,.12); }
.select-control { min-height: 48px; width: 100%; }
.form-message { min-height: 115px; resize: vertical; }
.form-footer { margin-top: 8px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.form-footer p { margin: 0; max-width: 340px; color: #728185; font-size: 10px; line-height: 1.5; }
.form-submit { min-height: 48px; padding: 0 20px; border-radius: 999px; background: var(--ink); font-size: 12px; font-weight: 800; }
.form-submit:hover { background: var(--ocean); }
.contact-actions { margin: 24px 0; display: flex; flex-wrap: wrap; gap: 10px; }
.contact-actions a { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; padding: 0 16px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; color: white; font-size: 12px; font-weight: 800; transition: background .2s ease, color .2s ease; }
.contact-actions a:hover { background: white; color: var(--ink); }
.form-submit { color: white; cursor: pointer; }
.form-submit:disabled { cursor: wait; opacity: .65; }
.trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent { display: grid !important; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; }
.consent input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--ocean); }
.consent span { margin: 0 !important; font-weight: 400 !important; line-height: 1.55; }
.consent a { color: var(--ocean); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.form-status { min-height: 18px; margin: 15px 0 0; color: var(--ocean); font-size: 12px; font-weight: 700; }

.faq-section {
  padding: 125px max(5vw, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(55px, 9vw, 130px);
  color: white;
  background: #0d4149;
}
.faq-heading h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(44px, 5.2vw, 76px); font-weight: 400; line-height: 1.02; letter-spacing: -.04em; }
.faq-list { border-top: 1px solid rgba(255,255,255,.22); }
.faq-list details { border-bottom: 1px solid rgba(255,255,255,.22); }
.faq-list summary { position: relative; padding: 25px 45px 25px 0; cursor: pointer; list-style: none; font-size: 15px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 5px; top: 19px; color: #e5cc94; font-family: Georgia, "Times New Roman", serif; font-size: 27px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -5px 45px 24px 0; color: rgba(255,255,255,.67); font-size: 13px; line-height: 1.7; }

.future-travel { padding: 48px max(5vw, calc((100vw - 1240px) / 2)); display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; color: white; background: var(--ocean); }
.future-travel span { color: #d9ece8; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.future-travel h2 { margin: 8px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 400; }
.future-travel p { margin: 0; max-width: 680px; color: rgba(255,255,255,.75); font-size: 13px; line-height: 1.7; }

footer { min-height: 150px; padding: 34px max(5vw, calc((100vw - 1240px) / 2)); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; color: white; background: var(--ink); }
footer p { margin: 0; justify-self: end; color: rgba(255,255,255,.58); font-size: 12px; }
.footer-contact { display: flex; flex-direction: column; align-items: center; gap: 7px; color: rgba(255,255,255,.58); font-size: 12px; }
.footer-contact a { color: white; font-weight: 700; }
.footer-messengers { color: rgba(255,255,255,.5); }
.footer-messengers a { font-size: 11px; }
.social-links { display: flex; gap: 9px; margin-top: 3px; }
.social-icon { display: grid; width: 31px; height: 31px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: white; font-family: Arial, sans-serif; font-size: 18px; font-weight: 800; line-height: 1; cursor: default; }
.social-icon svg { width: 16px; height: 16px; fill: currentColor; }
.social-links a.social-icon { cursor: pointer; transition: background .2s ease, color .2s ease; }
.social-links a.social-icon:hover { background: white; color: var(--ink); }
.footer-brand .brand-name { font-size: 18px; }
.footer-brand .brand-o { width: 18px; height: 18px; }
.footer-legal { justify-self: end; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px 14px; max-width: 310px; color: rgba(255,255,255,.58); font-size: 11px; }
.footer-legal a { color: white; }
.footer-legal a:hover { text-decoration: underline; }
.floating-cta { display: none; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

.result-page {
  min-height: 100vh;
  color: white;
  background: linear-gradient(120deg, rgba(4,25,31,.95), rgba(4,55,63,.75)), url("cityone-hero.png") center / cover fixed;
}
.result-shell { width: min(820px, 90vw); margin: 0 auto; padding: 55px 0 90px; }
.result-brand { color: white; }
.result-card { margin-top: clamp(65px, 12vh, 130px); padding: clamp(34px, 7vw, 75px); color: var(--ink); background: rgba(255,255,255,.95); box-shadow: 0 30px 90px rgba(0,0,0,.24); }
.result-card h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(45px, 7vw, 72px); font-weight: 400; line-height: 1; letter-spacing: -.045em; }
.result-card > p:not(.eyebrow) { margin: 25px 0 28px; color: #52666b; font-size: 16px; line-height: 1.75; }
.result-card .button { margin-top: 30px; }
.button-dark { color: white; background: var(--ink); }
.button-dark:hover { background: var(--ocean); }

.legal-page { background: #f6f0e6; }
.legal-header { min-height: 95px; padding: 20px max(5vw, calc((100vw - 1050px) / 2)); display: flex; align-items: center; justify-content: space-between; color: white; background: var(--ink); }
.legal-header > a:last-child { font-size: 12px; font-weight: 800; }
.legal-shell { width: min(900px, 90vw); margin: 0 auto; padding: 100px 0 125px; }
.legal-shell h1 { margin: 0 0 25px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(52px, 8vw, 84px); font-weight: 400; letter-spacing: -.045em; }
.legal-lead { margin: 0 0 60px; max-width: 760px; color: #52666b; font-size: 18px; line-height: 1.7; }
.legal-shell section { display: grid; grid-template-columns: 240px 1fr; gap: 45px; padding: 30px 0; border-top: 1px solid #d2cdc2; }
.legal-shell section h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 400; }
.legal-shell section p { margin: 0; color: #52666b; font-size: 14px; line-height: 1.8; }
.legal-shell section a { color: var(--ocean); font-weight: 800; }
.legal-shell > .text-link { margin-top: 45px; }

@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { min-height: 760px; height: 94vh; }
  .hero-content { margin-top: 30px; }
  .hero-card { width: 42vw; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip span, .trust-strip span:first-child, .trust-strip span:last-child { justify-content: flex-start; border-right: 0; }
  .intro, .difference, .booking, .enquiry-section, .faq-section { grid-template-columns: 1fr; gap: 45px; }
  .booking-copy { grid-row: auto; }
  .intro-copy { max-width: 650px; }
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-heading { grid-template-columns: 1fr; gap: 24px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .section-heading .eyebrow { margin: 0 0 26px; }
  .enquiry-intro { position: static; }
}

@media (max-width: 650px) {
  .site-header { height: 96px; padding: 0 18px 12px; }
  .site-header::after { height: 12px; }
  body::after { display: none; }
  .header-cta { padding: 10px 13px; }
  .header-cta svg { display: none; }
  .brand-name { font-size: 18px; }
  .brand-o { width: 18px; height: 18px; }
  .brand-logo { width: 184px; }
  .site-header .brand { height: 62px; padding: 4px 8px; margin-bottom: 2px; }
  .site-header .brand-logo { width: auto; height: 52px; max-width: 138px; }
  .hero { min-height: 760px; }
  .hero-slide { background-position: center; }
  .hero h1 { font-size: clamp(54px, 17vw, 78px); }
  .hero-copy { max-width: 94%; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-card { left: 5vw; right: 5vw; bottom: 22px; width: auto; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip span { padding: 7px 0; border-bottom: 1px solid #ece8df; }
  .intro { padding: 90px 0; }
  .intro-copy { padding-left: 22px; }
  .tours-section, .fleet-section, .difference, .booking, .enquiry-section { padding-top: 85px; padding-bottom: 85px; }
  .tour-grid { grid-template-columns: 1fr; }
  .tour-card { min-height: 0; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .form-footer { align-items: flex-start; flex-direction: column; }
  .form-submit { width: 100%; }
  .future-travel { grid-template-columns: 1fr; gap: 20px; }
  .legal-shell { padding-top: 75px; }
  .legal-shell section { grid-template-columns: 1fr; gap: 12px; }
  footer { grid-template-columns: 1fr; padding-top: 45px; padding-bottom: 45px; }
  .footer-contact { align-items: flex-start; }
  footer p, .footer-legal { justify-self: start; justify-content: flex-start; }
  .floating-cta { position: fixed; z-index: 40; right: 15px; bottom: 15px; display: inline-flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 999px; color: white; background: var(--coral); box-shadow: 0 10px 30px rgba(16,43,51,.28); font-size: 12px; font-weight: 800; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; opacity: 0; transform: none; }
  .hero-slide:first-child { opacity: 1; }
}

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