/* ===========================================================
   AIR HUB SHUTTLE — Design tokens & global styles
   =========================================================== */
:root {
  --ivory: #FAF7F2;
  --paper: #FFFFFF;
  --paper-2: #F5F1E9;
  --ink: #0A0A0A;
  --ink-2: #1a1a1a;
  --ink-soft: #444;
  --ink-mute: #7a7367;
  --gold: #B8945A;
  --gold-2: #C9A56E;
  --gold-deep: #9A7A46;
  --rule: rgba(184, 148, 90, 0.35);
  --rule-strong: rgba(184, 148, 90, 0.7);
  --hairline: rgba(10,10,10,0.08);
  --shadow-soft: 0 30px 80px -30px rgba(30, 20, 5, 0.18);
  --shadow-card: 0 20px 60px -20px rgba(30, 20, 5, 0.15);
  --serif: 'Cormorant Garamond', serif;
  --serif-up: 'Cormorant Upright', serif;
  --sans: 'Jost', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

/* ===========================================================
   TYPOGRAPHY
   =========================================================== */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; margin: 0; line-height: 1.08; }
.display { font-size: clamp(48px, 6.5vw, 96px); font-weight: 300; letter-spacing: -0.02em; }
.h1 { font-size: clamp(36px, 4.5vw, 62px); font-weight: 400; }
.h2 { font-size: clamp(28px, 3vw, 44px); font-weight: 400; }
.h3 { font-size: clamp(20px, 1.6vw, 26px); font-weight: 500; letter-spacing: 0; }
.script { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--gold-deep); letter-spacing: 0.005em; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.no-rule::before { display: none; }

.body-lg { font-size: 18px; line-height: 1.7; color: var(--ink-soft); font-weight: 300; }
.body-md { font-size: 15px; line-height: 1.75; color: var(--ink-soft); font-weight: 300; }
.caps { text-transform: uppercase; letter-spacing: 0.28em; font-size: 11px; font-weight: 400; }
em.accent-em { font-style: italic; color: var(--gold-deep); font-family: var(--serif); font-weight: 400; }

/* ===========================================================
   LAYOUT
   =========================================================== */
.wrap { max-width: 1360px; margin: 0 auto; padding: 0 48px; }
.wrap-tight { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

section { padding: 120px 0; position: relative; }

.hairline { height: 1px; background: var(--rule); border: 0; margin: 0; }
.ink-hairline { height: 1px; background: var(--hairline); border: 0; margin: 0; }

/* ===========================================================
   TOP BAR
   =========================================================== */
.topbar {
  background: var(--ink);
  color: #d9d0be;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 48px;
  gap: 24px;
}
.topbar a { color: #e8dfc9; text-decoration: none; transition: color .3s; }
.topbar a:hover { color: var(--gold-2); }
.topbar .divider { color: var(--gold); margin: 0 12px; }
.topbar .badge { color: var(--gold-2); }

/* ===========================================================
   NAV
   =========================================================== */
nav.main {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 48px;
  max-width: 1500px;
  margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand .brand-mark { width: 44px; height: 44px; }
.nav-brand .brand-txt {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-brand .brand-txt small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--gold-deep);
  margin-top: 3px;
}
.nav-links {
  display: flex; gap: 40px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { justify-self: end; display: flex; align-items: center; gap: 20px; }
.nav-phone {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-phone span { color: var(--gold-deep); margin-right: 6px; }

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 32px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--ivory);
  transition: all .35s ease;
  cursor: pointer;
  position: relative;
}
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--paper); }
.btn.outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn.outline:hover { background: var(--ink); color: var(--ivory); }
.btn.gold {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
}
.btn.gold:hover { background: var(--gold-deep); color: var(--paper); border-color: var(--gold-deep); }
.btn.sm { padding: 12px 22px; font-size: 10px; letter-spacing: 0.28em; }
.btn .arrow {
  display: inline-block;
  width: 14px; height: 1px; background: currentColor;
  position: relative;
}
.btn .arrow::after {
  content: "";
  position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  padding: 80px 0 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 48px;
}
.hero-copy .eyebrow { margin-bottom: 32px; }
.hero-copy h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 5.8vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-copy h1 .accent {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 300;
}
.hero-copy .lead {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-tags {
  display: flex; gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex-wrap: wrap;
}
.hero-tags span { display: flex; align-items: center; gap: 10px; }
.hero-tags .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink);
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-image::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-image-cap {
  position: absolute;
  bottom: 32px; left: 32px;
  color: #f0e6cf;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.3;
}
.hero-image-cap small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 8px;
}

/* Subtle decorative letters */
.hero-mono {
  position: absolute;
  top: 100px; right: -40px;
  font-family: var(--serif);
  font-size: 380px;
  color: rgba(184, 148, 90, 0.04);
  font-weight: 300;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

/* ===========================================================
   BOOKING CARD (floats)
   =========================================================== */
.booking-float {
  max-width: 1200px;
  margin: -60px auto 0;
  background: var(--paper);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-soft);
  padding: 40px 44px;
  position: relative;
  z-index: 10;
}
.booking-float::before {
  content: "";
  position: absolute; top: 0; left: 44px; right: 44px;
  height: 3px; background: var(--gold);
}
.booking-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap; gap: 16px;
}
.booking-head h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}
.booking-head .sub {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.booking-form {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr 1fr auto;
  gap: 0;
  align-items: end;
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
}
.booking-field {
  padding: 8px 24px 8px 0;
  border-right: 1px solid var(--hairline);
  position: relative;
}
.booking-field:last-of-type { border-right: 0; padding-right: 0; }
.booking-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
  font-weight: 400;
}
.booking-field input,
.booking-field select {
  width: 100%;
  border: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  padding: 6px 0 4px;
  outline: none;
}
.booking-field input::placeholder {
  color: var(--ink-mute);
  opacity: 0.6;
  font-family: var(--serif);
  font-style: italic;
}
.booking-submit { padding-left: 24px; }
.booking-submit .btn { padding: 16px 24px; }
.booking-msg { margin-top: 18px; font-size: 12px; letter-spacing: 0.08em; color: var(--gold-deep); display: none; }
.booking-msg.show { display: block; }

/* ===========================================================
   TRUST STRIP
   =========================================================== */
.trust {
  padding: 44px 0;
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 48px;
  flex-wrap: wrap;
}
.trust-item {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 400;
  display: flex; align-items: center; gap: 12px;
}
.trust-item svg { flex-shrink: 0; }

/* ===========================================================
   ABOUT — EDITORIAL SPREAD
   =========================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.about-copy .h2 { margin: 20px 0 32px; max-width: 480px; }
.about-copy p { max-width: 490px; margin-bottom: 20px; }
.about-sign {
  margin-top: 40px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
}
.about-sign small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 8px;
}
.about-image-wrap {
  position: relative;
  padding: 32px 32px 0 0;
}
.about-image-wrap::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 60%; height: 60%;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  pointer-events: none;
}
.about-image-wrap::after {
  content: "";
  position: absolute; bottom: -32px; right: 0;
  width: 40%; height: 40%;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  pointer-events: none;
}
.about-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #eee;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===========================================================
   SERVICES
   =========================================================== */
.services {
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.section-head.left { text-align: left; margin: 0 0 32px; max-width: 600px; }
.section-head .eyebrow { justify-content: center; margin-bottom: 24px; }
.section-head.left .eyebrow { justify-content: flex-start; }
.section-head .eyebrow::after {
  content: "";
  width: 32px; height: 1px; background: var(--gold);
  margin-left: 14px;
}
.section-head.left .eyebrow::after { display: none; }
.section-head h2 { margin-bottom: 20px; }
.section-head.left h2 { margin-top: 24px; }
.section-head p { color: var(--ink-soft); font-size: 17px; max-width: 560px; margin: 0 auto; }
.section-head.left p { margin: 20px 0 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.service {
  padding: 56px 40px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  background: var(--paper);
  transition: background .4s ease;
  cursor: pointer;
}
.service:nth-child(3n) { border-right: 0; }
.service:nth-last-child(-n+3) { border-bottom: 0; }
.service:hover { background: var(--ivory); }
.service:hover .service-arrow { transform: translateX(6px); color: var(--gold-deep); }
.service .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 16px;
  margin-bottom: 20px;
  display: block;
}
.service .icon {
  width: 40px; height: 40px;
  margin-bottom: 28px;
  color: var(--gold-deep);
}
.service h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.15;
}
.service p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 320px;
}
.service-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  transition: all .3s ease;
  text-decoration: none;
}
.service-arrow::after {
  content: "→"; font-family: var(--serif); font-size: 14px;
}

/* ===========================================================
   FLEET FEATURE
   =========================================================== */
.fleet {
  background: var(--ink);
  color: var(--ivory);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.fleet .wrap { position: relative; z-index: 2; }
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
}
.fleet-copy .eyebrow { color: var(--gold-2); }
.fleet-copy .eyebrow::before { background: var(--gold-2); }
.fleet-copy h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  margin: 24px 0 24px;
  color: var(--ivory);
  letter-spacing: -0.02em;
}
.fleet-copy h2 em { font-style: italic; color: var(--gold-2); font-weight: 300; }
.fleet-copy p { color: #cfc7b5; font-size: 16px; line-height: 1.75; max-width: 450px; margin-bottom: 40px; font-weight: 300; }
.fleet-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
  margin-bottom: 44px;
  padding: 32px 0;
  border-top: 1px solid rgba(184, 148, 90, 0.3);
  border-bottom: 1px solid rgba(184, 148, 90, 0.3);
}
.fleet-spec .k {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 8px;
  font-weight: 400;
}
.fleet-spec .v {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ivory);
}
.fleet-image {
  aspect-ratio: 16/11;
  overflow: hidden;
  position: relative;
}
.fleet-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fleet-image::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(184, 148, 90, 0.4);
  pointer-events: none;
}
.fleet-btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.fleet .btn.outline { border-color: rgba(255,255,255,0.4); color: var(--ivory); }
.fleet .btn.outline:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.fleet-mono {
  position: absolute;
  left: -80px; bottom: -180px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 420px;
  color: rgba(184, 148, 90, 0.05);
  line-height: 1;
  font-weight: 300;
  pointer-events: none;
  z-index: 1;
}

/* ===========================================================
   WHY CHOOSE US
   =========================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 20px;
}
.why-item {
  padding: 40px 32px 40px 0;
  border-top: 1px solid var(--hairline);
  position: relative;
}
.why-item .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 44px;
  color: var(--gold-deep);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 20px;
}
.why-item h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}
.why-item p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 260px;
}

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testimonials {
  background: var(--paper-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 64px;
}
.test {
  position: relative;
  padding-top: 32px;
}
.test::before {
  content: "\201C";
  position: absolute; top: -30px; left: 0;
  font-family: var(--serif);
  font-size: 90px;
  line-height: 1;
  color: var(--gold);
  font-style: italic;
}
.test p {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
  margin: 0 0 32px;
}
.test .who {
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.test .who small {
  display: block;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--ink-mute);
  margin-top: 6px;
  font-size: 12px;
}

/* ===========================================================
   SERVICE AREA
   =========================================================== */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.area-image {
  aspect-ratio: 16/11;
  overflow: hidden;
  position: relative;
}
.area-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.area-list {
  columns: 2;
  column-gap: 40px;
  margin: 32px 0 40px;
  padding: 0;
}
.area-list li {
  list-style: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  break-inside: avoid;
  color: var(--ink);
  position: relative;
  padding-left: 22px;
}
.area-list li::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 8px; height: 1px;
  background: var(--gold);
}

/* ===========================================================
   BIG QUOTE FORM
   =========================================================== */
.quote-section {
  background: var(--ink);
  color: var(--ivory);
  padding: 140px 0;
  position: relative;
}
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 88px;
  align-items: start;
}
.quote-copy .eyebrow { color: var(--gold-2); }
.quote-copy .eyebrow::before { background: var(--gold-2); }
.quote-copy h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin: 24px 0 24px;
}
.quote-copy h2 em { font-style: italic; color: var(--gold-2); font-weight: 300; }
.quote-copy p { color: #cfc7b5; max-width: 400px; font-size: 16px; line-height: 1.75; margin-bottom: 32px; }
.quote-copy .quote-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-2);
  font-size: 22px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(184,148,90,0.3);
}
.quote-copy .quote-tag .sub {
  font-family: var(--sans); font-style: normal; font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; color: #b3a98f; display: block; margin-top: 14px;
}

.quote-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184, 148, 90, 0.3);
  padding: 44px;
  position: relative;
}
.quote-form::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
}
.qf-title {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ivory);
  margin-bottom: 8px;
}
.qf-sub {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 32px;
}
.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.qf-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #b3a98f;
  margin-bottom: 10px;
}
.qf-field input,
.qf-field select,
.qf-field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(184,148,90,0.35);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 18px;
  padding: 8px 0;
  outline: none;
  transition: border-color .3s;
}
.qf-field input:focus,
.qf-field select:focus,
.qf-field textarea:focus { border-bottom-color: var(--gold); }
.qf-field input::placeholder,
.qf-field textarea::placeholder {
  color: rgba(255,255,255,0.35);
  font-style: italic;
}
.qf-field.full { grid-column: 1 / -1; }
.qf-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6' fill='none' stroke='%23B8945A' stroke-width='1.2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; }
.qf-field select option { color: #111; }
.qf-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(184,148,90,0.3);
  gap: 20px;
  flex-wrap: wrap;
}
.qf-submit .note {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b3a98f;
}
.qf-submit .btn {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--paper);
}
.qf-submit .btn:hover { background: var(--gold); border-color: var(--gold); }
.qf-msg { margin-top: 20px; font-size: 13px; color: var(--gold-2); display: none; }
.qf-msg.show { display: block; }

/* ===========================================================
   CONTACT
   =========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
  border-top: 1px solid var(--hairline);
  padding-top: 56px;
}
.contact-item .icon {
  width: 42px; height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.contact-item h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
  margin-bottom: 8px;
}
.contact-item .v {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.2;
}
.contact-item .v a { color: inherit; text-decoration: none; transition: color .3s; }
.contact-item .v a:hover { color: var(--gold-deep); }
.contact-item .sub {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-mute);
}

/* ===========================================================
   FOOTER
   =========================================================== */
footer {
  background: var(--ink);
  color: #b8b0a1;
  padding: 88px 0 40px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(184, 148, 90, 0.25);
}
.foot-brand .brand-mark { width: 60px; height: 60px; margin-bottom: 20px; }
.foot-brand p {
  max-width: 300px;
  font-size: 14px;
  line-height: 1.7;
  color: #a89e88;
  margin: 0 0 20px;
}
.foot-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-2);
}
footer h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 400;
  margin: 0 0 24px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 14px; font-size: 14px; }
footer li a { color: #cfc7b5; text-decoration: none; transition: color .3s; }
footer li a:hover { color: var(--gold-2); }
.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #86806f;
  flex-wrap: wrap;
}
.foot-bot .socials { display: flex; gap: 16px; }
.foot-bot .socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(184, 148, 90, 0.4);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #b8b0a1;
  text-decoration: none;
  transition: all .3s;
}
.foot-bot .socials a:hover { border-color: var(--gold); color: var(--gold-2); }

/* ===========================================================
   UTIL / RESPONSIVE
   =========================================================== */
@media (max-width: 1100px) {
  .hero-grid, .about-grid, .fleet-grid, .quote-inner, .area-grid { grid-template-columns: 1fr; gap: 56px; }
  .services-grid, .why-grid, .test-grid, .contact-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .service:nth-child(3n) { border-right: 1px solid var(--hairline); }
  .service:nth-child(2n) { border-right: 0; }
  .booking-form { grid-template-columns: 1fr 1fr; }
  .booking-field { border-right: 0 !important; border-bottom: 1px solid var(--hairline); padding: 12px 0; }
  .booking-submit { grid-column: 1 / -1; padding: 12px 0 0; }
  .hero-mono, .fleet-mono { display: none; }
}
@media (max-width: 720px) {
  .wrap, .wrap-tight, .hero-grid { padding: 0 24px; }
  section { padding: 80px 0; }
  .nav-inner { grid-template-columns: 1fr auto; padding: 16px 24px; }
  .nav-links { display: none; }
  .topbar-inner { padding: 10px 24px; font-size: 10px; flex-wrap: wrap; justify-content: center; }
  .services-grid, .why-grid, .test-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .service { border-right: 0 !important; }
  .qf-row { grid-template-columns: 1fr; }
  .area-list { columns: 1; }
  .booking-float { padding: 28px 24px; margin: -40px 24px 0; }
  .booking-head h3 { font-size: 22px; }
  .about-image-wrap { padding: 20px 20px 0 0; }
  .foot-bot { flex-direction: column; align-items: flex-start; }
}

/* micro fade-in on scroll — only applied to elements below the fold via JS */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .9s ease, transform .9s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}
