/* ==========================================================================
   Cavendish Chauffeurs — Stylesheet
   ========================================================================== */

/* ---------- Design Tokens -------------------------------------------------- */
:root {
  /* Surfaces — clean & crisp, intentionally no cream */
  --white: #FFFFFF;
  --paper: #F7F8FA;          /* subtle cool off-white, section variation */
  --silver: #ECEEF1;         /* light silver borders/dividers */
  --steel: #C9CDD3;          /* muted divider */

  /* Ink */
  --ink: #0B0F14;            /* near-black, cool undertone */
  --graphite: #1A1F26;       /* dark surface, slightly lifted */
  --slate: #2A2F36;          /* body text on light */
  --mist: #6B7380;           /* muted/secondary text */

  /* Accent — antique gold, matched to brand logo */
  --emerald: #B5871D;
  --emerald-hover: #C99A2C;
  --emerald-tint: #FAF3E0;

  /* Typography */
  --display: "Playfair Display", Georgia, serif;
  --body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Scale */
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(80px, 10vw, 140px);

  /* Shadows */
  --shadow-soft: 0 4px 24px rgba(11, 15, 20, 0.06);
  --shadow-lift: 0 12px 40px rgba(11, 15, 20, 0.10);
  --shadow-deep: 0 24px 60px rgba(11, 15, 20, 0.16);

  /* Easing */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  background: var(--white);
  font-feature-settings: "ss01", "kern", "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { padding: 0; }
figure { margin: 0; }

/* ---------- Typography ---------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.8rem); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; line-height: 1.1; }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); font-weight: 500; letter-spacing: -0.01em; line-height: 1.2; }
h4 { font-size: 1.125rem; font-weight: 600; letter-spacing: 0; line-height: 1.3; }

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--emerald);
}
.eyebrow.light::before { background: rgba(255, 255, 255, .6); }
.eyebrow.light { color: rgba(255, 255, 255, .85); }

.lede {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  color: var(--slate);
  line-height: 1.5;
  font-weight: 300;
  max-width: 50ch;
}

/* ---------- Layout Primitives -------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section--alt { background: var(--paper); }
.section--ink { background: var(--ink); color: rgba(255,255,255,.78); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--white); }

/* Performance: defer rendering of offscreen sections so background images only
   fetch when scrolled into view. Heavy on a hero-heavy site. */
.section--lazy {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

/* ---------- Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0;
  transition: all .35s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--ink);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--emerald);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn--ghost-light:hover {
  background: var(--white);
  color: var(--ink);
}
.btn .arrow {
  display: inline-block;
  transition: transform .35s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* Text link */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: all .3s var(--ease);
  padding-bottom: 2px;
}
.tlink:hover { color: var(--emerald); border-bottom-color: var(--emerald); }
.tlink .arrow { transition: transform .3s var(--ease); }
.tlink:hover .arrow { transform: translateX(4px); }

/* ---------- Header / Nav -------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: all .35s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--silver);
  background: rgba(255, 255, 255, 0.96);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  transition: height .35s var(--ease);
}
.scrolled .nav { height: 68px; }

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  /* Old typographic brand styles preserved as fallback if image fails */
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  gap: 12px;
}
.brand-logo {
  height: 53px;          /* desktop: +20% from previous 44px */
  width: auto;
  display: block;
  transition: opacity .3s var(--ease);
}
.brand:hover .brand-logo { opacity: 0.85; }

/* Header shrinks slightly when scrolled — shrink logo too */
.site-header.scrolled .brand-logo { height: 46px; }

/* Footer logo appears larger and on dark background — gold stays gold */
.footer-brand .brand-logo { height: 60px; }

@media (max-width: 700px) {
  .brand-logo { height: 60px; }              /* mobile: 2.5x the previous 25px per Peter's request */
  .site-header.scrolled .brand-logo { height: 50px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--slate);
  position: relative;
  transition: color .25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.has-sub::after {
  content: "›";
  margin-left: 4px;
  display: inline-block;
  transform: rotate(90deg);
  font-size: 0.7rem;
  color: var(--mist);
  transition: transform .25s var(--ease);
}
.nav-links li:hover a.has-sub::after,
.nav-links li:focus-within a.has-sub::after { color: var(--emerald); }

/* Dropdown menus */
.nav-links li { position: relative; }
.nav-sub {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--silver);
  box-shadow: 0 24px 60px -12px rgba(11,15,20,0.18), 0 4px 16px -4px rgba(11,15,20,0.06);
  list-style: none;
  margin: 0;
  padding: 12px 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility 0s linear .22s;
  z-index: 100;
}
.nav-sub::before {
  /* Invisible bridge so cursor doesn't fall into a gap */
  content: "";
  position: absolute;
  top: -16px;
  left: 0; right: 0;
  height: 16px;
}
.nav-links li:hover > .nav-sub,
.nav-links li:focus-within > .nav-sub {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility 0s;
}
.nav-sub a {
  display: block;
  padding: 10px 22px;
  font-size: 0.85rem;
  color: var(--slate) !important;
  letter-spacing: 0;
  font-weight: 500;
  white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease), padding-left .25s var(--ease);
}
.nav-sub a:hover {
  background: var(--paper);
  color: var(--ink) !important;
  padding-left: 28px;
}
.nav-sub a::after { content: none !important; }

/* On dark hero header, override the white text colour for dropdown items */
.site-header.on-photo:not(.scrolled) .nav-sub a { color: var(--slate) !important; }
.site-header.on-photo:not(.scrolled) .nav-sub a:hover { color: var(--ink) !important; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background .3s var(--ease);
}
.nav-cta:hover { background: var(--emerald); }

.nav-toggle { display: none; }
.nav-call { display: none; }

@media (max-width: 1130px) {
  .nav-links, .nav-cta { display: none; }
  .nav-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--ink);
    margin-right: 12px;
    transition: color .25s var(--ease), transform .25s var(--ease);
  }
  .nav-call:hover, .nav-call:active { color: var(--emerald); }
  .nav-call:active { transform: scale(0.95); }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px; height: 32px;
    background: transparent;
    border: 0;
    padding: 0;
  }
  .nav-toggle span {
    display: block;
    height: 1.5px;
    background: var(--ink);
    transition: transform .3s var(--ease);
  }
  .nav-toggle span:nth-child(1) { width: 24px; }
  .nav-toggle span:nth-child(2) { width: 18px; margin-left: auto; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--white);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 24px var(--gutter);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.mobile-menu-close {
  background: transparent; border: 0; color: var(--white);
  font-size: 1.5rem; padding: 0;
}
.mobile-menu-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.mobile-menu-list li {
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-menu-list a {
  display: block;
  padding: 14px 0;
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--white);
}

/* Mobile submenus via native details/summary */
.mobile-menu-list details > summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 0;
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu-list details > summary::-webkit-details-marker { display: none; }
.mobile-menu-list .m-chev {
  font-size: 1.4rem;
  color: var(--emerald);
  transform: rotate(90deg);
  transition: transform .25s var(--ease);
  display: inline-block;
  line-height: 1;
}
.mobile-menu-list details[open] > summary .m-chev { transform: rotate(-90deg); }
.mobile-submenu {
  list-style: none;
  margin: 0 0 6px;
  padding: 4px 0 8px 16px;
  border-left: 1px solid rgba(255,255,255,.12);
}
.mobile-submenu li { border-top: 0; }
.mobile-submenu a {
  font-family: var(--body);
  font-size: 0.95rem;
  padding: 8px 0;
  color: rgba(255,255,255,.75);
}
.mobile-submenu a:hover { color: var(--emerald); }

/* ---------- Hero ---------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: calc(84px + 60px);
  padding-bottom: 60px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-text { max-width: 600px; }
.hero-title {
  margin: 26px 0 28px;
}
.hero-title .em {
  font-style: italic;
  color: var(--emerald);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--mist);
  max-width: 48ch;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(180deg, #1a1f26 0%, #0b0f14 100%);
  z-index: 1;
}
.hero-visual::after {
  content: "Mercedes-Benz EQS · Imagery to be supplied";
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
}
.hero-visual-mark {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.04);
  font-family: var(--display);
  font-size: 22vw;
  font-weight: 200;
  font-style: italic;
  user-select: none;
  letter-spacing: -0.03em;
}

/* Subtle grain on dark surfaces */
.grain {
  position: relative;
}
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  z-index: 4;
}

/* Hero meta — small detail strip below */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--silver);
}
.hero-meta-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.hero-meta-item .num {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--ink);
}
.hero-meta-item .lab {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--mist);
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ---------- Marquee ------------------------------------------------------- */
.marquee {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.06);
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee-item {
  font-family: var(--display);
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(255,255,255,.85);
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee-item::after {
  content: "✦";
  color: var(--emerald-hover);
  font-style: normal;
  font-size: 0.8rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Editorial Statement ------------------------------------------ */
.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
@media (max-width: 900px) {
  .statement-grid { grid-template-columns: 1fr; }
}
.statement-headline { font-size: clamp(2rem, 4vw, 3rem); }
.statement-body p {
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 1.4em;
}
.statement-body p:first-child::first-letter {
  font-family: var(--display);
  font-size: 4.4rem;
  float: left;
  line-height: 0.88;
  padding: 8px 14px 0 0;
  color: var(--ink);
  font-style: italic;
}

/* ---------- Services Grid ------------------------------------------------- */
/* ---------- Services head (stacked, full-width) ------------------------- */
.services-head {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.services-head h2 {
  max-width: 22ch;
  margin: 12px 0 0;
}
.services-head-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}
.services-head-row .tlink {
  flex-shrink: 0;
}

/* Two-column section intro — eyebrow above, lede aligns with H2 top */
.section-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-areas:
    "eyebrow ."
    "heading lede"
    "link    .";
  column-gap: 64px;
  row-gap: 20px;
  margin-bottom: 56px;
}
.section-intro > .eyebrow { grid-area: eyebrow; }
.section-intro > h2 { grid-area: heading; margin: 0; max-width: 16ch; }
.section-intro > .tlink { grid-area: link; justify-self: start; }
.section-intro__lede { grid-area: lede; margin: 0; }
@media (max-width: 800px) {
  .section-intro {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "heading"
      "lede"
      "link";
    row-gap: 18px;
    margin-bottom: 40px;
  }
}

/* Arrow controls (sit on the right of the head row) */
.services-controls {
  display: flex;
  gap: 8px;
}
.services-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--emerald);
  background: transparent;
  color: var(--emerald);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.services-controls button:hover:not(:disabled) {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}
.services-controls button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.services-controls button svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 700px) {
  .services-controls { display: none; } /* scroll-by-touch on mobile */
}

/* ---------- Services scroller ------------------------------------------- */
.services {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding-bottom: 4px; /* room for shadow */
}
.services::-webkit-scrollbar { display: none; }

.service {
  position: relative;
  background: var(--white);
  border: 1px solid var(--silver);
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 56px) / 3); /* 3 cards visible with 2 × 28px gaps */
  scroll-snap-align: start;
  transition: border-color .35s var(--ease), transform .35s var(--ease);
  overflow: hidden;
}
.service:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
}

.service-num {
  position: absolute;
  top: 18px;
  left: 22px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--white);
  background: rgba(11, 15, 20, 0.6);
  padding: 4px 8px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.service-img {
  aspect-ratio: 4 / 3;
  background-color: var(--ink);
  background-image: url('../assets/service-placeholder.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform .8s var(--ease-out);
}
.service-img--airport    { background-image: url('../assets/airport.jpg'); }
.service-img--corporate  { background-image: url('../assets/corporate.jpg'); }
.service-img--executive  { background-image: url('../assets/executive-travel.jpg'); }
.service:hover .service-img {
  transform: scale(1.03);
}
.service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,15,20,0.2) 0%, rgba(11,15,20,0.1) 50%, rgba(11,15,20,0.7) 100%);
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.service:hover .service-img::after { opacity: 0.85; }

.service-img-label {
  position: absolute;
  bottom: 14px;
  left: 18px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 0.62rem;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-body {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}
.service h3 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.25;
  transition: color .3s var(--ease);
}
.service:hover h3 { color: var(--emerald); }
.service p {
  color: var(--mist);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.service-link {
  align-self: flex-start;
  margin-top: auto;                     /* pin to bottom of card regardless of paragraph length */
  padding-top: 24px;                    /* guaranteed gap above, even if paragraph is long */
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: all .3s var(--ease);
}
.service:hover .service-link {
  color: var(--emerald);
  border-bottom-color: var(--emerald);
}
.service-link .arrow { transition: transform .3s var(--ease); }
.service:hover .service-link .arrow { transform: translateX(4px); }

/* Responsive card widths */
@media (max-width: 1100px) {
  .service { flex: 0 0 calc((100% - 28px) / 2); } /* 2 cards visible */
}
@media (max-width: 700px) {
  .service { flex: 0 0 calc(100% - 40px); } /* 1.x cards visible (peek) */
  .services { gap: 16px; }
}

/* ---------- Three Column (Experience / Service / Difference) ------------ */
.triad-head {
  text-align: center;
  margin-bottom: 80px;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 700px) {
  .triad-head { text-align: left; margin-left: 0; margin-right: 0; margin-bottom: 48px; }
  .triad-head br { display: none; }
}
.triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 900px) { .triad { grid-template-columns: 1fr; } }

.triad-col {
  padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.triad-col:last-child { border-right: 0; }
@media (max-width: 900px) {
  .triad-col {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 36px 0;
  }
  .triad-col:last-child { border-bottom: 0; }
}
.triad-num {
  font-family: var(--display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--emerald-hover);
  margin-bottom: 24px;
  display: block;
}
.triad-col h3 { color: var(--white); margin-bottom: 18px; }
.triad-col ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.triad-col li {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 0.95rem;
  color: rgba(255,255,255,.78);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.triad-col li::before {
  content: "—";
  color: var(--emerald-hover);
  margin-top: 2px;
  flex-shrink: 0;
}
.triad-col p {
  font-size: 0.98rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}

/* ---------- Fleet Spotlight ---------------------------------------------- */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
@media (max-width: 900px) { .spotlight { grid-template-columns: 1fr; } }

.spotlight-image {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .spotlight-image { aspect-ratio: 4 / 5; }
}
.spotlight-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/eqs-exterior.jpg') center/cover no-repeat;
}
.spotlight-image--fleet::before {
  background-image: url('../assets/eqs-fleet.jpg');
}
.spotlight-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11,15,20,0) 55%, rgba(11,15,20,0.45));
}
.spotlight-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.04);
  font-family: var(--display);
  font-size: 18vw;
  font-style: italic;
  font-weight: 200;
  letter-spacing: -0.04em;
  z-index: 2;
}
.spotlight-content {
  background: var(--paper);
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spec-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.spec-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--silver);
  font-size: 0.95rem;
}
.spec-list li:last-child { border-bottom: 1px solid var(--silver); }
.spec-list .label { color: var(--mist); font-size: 0.85rem; letter-spacing: 0.04em; }
.spec-list .value { font-family: var(--display); color: var(--ink); font-size: 1.05rem; }
@media (max-width: 700px) {
  .spec-list li { padding: 14px 0; gap: 12px; }
  .spec-list .label { font-size: 0.72rem; }
  .spec-list .value { font-size: 0.92rem; text-align: right; }
}

/* ---------- Areas ---------------------------------------------------------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border: 1px solid var(--silver);
  margin-top: 60px;
}
.area {
  padding: 36px 28px;
  border-right: 1px solid var(--silver);
  border-bottom: 1px solid var(--silver);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .3s var(--ease);
}
.area:hover { background: var(--paper); }
.area:hover .area-arrow { transform: translate(4px, -4px); color: var(--emerald); }
.area-arrow {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 1.1rem;
  color: var(--mist);
  transition: all .3s var(--ease);
}
.area-name { font-family: var(--display); font-size: 1.4rem; color: var(--ink); }
.area-meta { font-size: 0.8rem; color: var(--mist); letter-spacing: 0.06em; text-transform: uppercase; }
.area-distance { font-size: 0.85rem; color: var(--slate); margin-top: 12px; }

/* ---------- Corporate Block ---------------------------------------------- */
.corp {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
}
@media (max-width: 900px) { .corp { grid-template-columns: 1fr; } }
.corp-content {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  padding: clamp(40px, 6vw, 80px);
}
.corp-content h2 { color: var(--white); }
.corp-list {
  list-style: none;
  margin: 32px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}
@media (max-width: 600px) { .corp-list { grid-template-columns: 1fr; } }
.corp-list li {
  display: flex;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(255,255,255,.85);
}
.corp-list li::before {
  content: "✓";
  color: var(--emerald-hover);
  font-weight: 700;
}
.corp-image {
  background: var(--graphite);
  position: relative;
  overflow: hidden;
}
.corp-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/eqs-interior.jpg') center/cover no-repeat;
}
.corp-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,31,38,0.15), rgba(11,15,20,0.45));
}

/* ---------- Trust Bar ----------------------------------------------------- */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-block: 1px solid var(--silver);
}
@media (max-width: 700px) { .trust { grid-template-columns: repeat(2, 1fr); } }

.trust-item {
  padding: 32px 24px;
  border-right: 1px solid var(--silver);
  display: flex;
  align-items: center;
  gap: 18px;
}
.trust-item:last-child { border-right: 0; }
@media (max-width: 700px) {
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--silver); }
}
.trust-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--emerald);
}
.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.trust-item .name {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.25;
}
.trust-item .lab {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 600;
  line-height: 1.4;
}

/* ---------- Testimonials ------------------------------------------------- */
.testimonial {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto;
}
.testimonial-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--ink);
  line-height: 1.4;
  margin: 0 0 32px;
}
.testimonial-quote::before, .testimonial-quote::after {
  content: '"';
  color: var(--emerald);
}
.testimonial-author {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 600;
}

/* ---------- CTA Block ----------------------------------------------------- */
.cta-block {
  background: var(--ink);
  color: var(--white);
  padding: clamp(60px, 9vw, 120px) clamp(24px, 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(26, 97, 73, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.cta-block h2 { color: var(--white); position: relative; z-index: 2; }
.cta-block p { color: rgba(255,255,255,.7); max-width: 50ch; margin: 24px auto 36px; position: relative; z-index: 2; font-size: 1.05rem; }
.cta-block .btns { position: relative; z-index: 2; display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ---------- Footer -------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand h3 {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.9rem; max-width: 36ch; line-height: 1.65; }

.footer-col h4 {
  font-family: var(--body);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  transition: color .25s var(--ease);
}
.footer-col a:hover { color: var(--emerald-hover); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.4);
}
@media (max-width: 700px) {
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ---------- Reveal Animation -------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: transform, opacity;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="100"] { transition-delay: .1s; }
.reveal[data-delay="200"] { transition-delay: .2s; }
.reveal[data-delay="300"] { transition-delay: .3s; }
.reveal[data-delay="400"] { transition-delay: .4s; }
.reveal[data-delay="500"] { transition-delay: .5s; }

/* Hero word reveal */
.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.hero-title .word > span {
  display: inline-block;
  transform: translateY(120%);
  animation: word-rise .9s var(--ease-out) forwards;
}
.hero-title .word:nth-child(1) > span { animation-delay: .1s; }
.hero-title .word:nth-child(2) > span { animation-delay: .18s; }
.hero-title .word:nth-child(3) > span { animation-delay: .26s; }
.hero-title .word:nth-child(4) > span { animation-delay: .42s; }
.hero-title .word:nth-child(5) > span { animation-delay: .50s; }
@keyframes word-rise {
  to { transform: translateY(0); }
}

/* Pulse dot for "electric" cues */
.pulse {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--emerald-hover);
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  vertical-align: middle;
}
.pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--emerald-hover);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(3.5); opacity: 0; }
}

/* ---------- Inner page hero (smaller) ------------------------------------ */
.page-hero {
  padding-top: calc(84px + 60px);
  padding-bottom: 60px;
  background: var(--paper);
  border-bottom: 1px solid var(--silver);
}
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { max-width: 22ch; margin-bottom: 20px; }
.page-hero .lede { color: var(--slate); }
.page-hero .breadcrumbs {
  display: flex; gap: 8px;
  font-size: 0.78rem;
  color: var(--mist);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.page-hero .breadcrumbs a { color: var(--mist); }
.page-hero .breadcrumbs a:hover { color: var(--ink); }
.page-hero .breadcrumbs span { color: var(--steel); }

/* ---------- Long-form content ------------------------------------------- */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 2em; margin-bottom: .8em; }
.prose h3 { margin-top: 1.6em; margin-bottom: .6em; font-family: var(--body); font-size: 1.1rem; font-weight: 700; letter-spacing: 0; }
.prose p { font-size: 1.05rem; line-height: 1.75; color: var(--slate); }
.prose ul { margin: 0 0 1.4em; padding-left: 22px; }
.prose li { margin-bottom: 8px; line-height: 1.65; }

/* Two column layout for inner pages */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 100px);
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.two-col aside h4 {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  margin: 0 0 16px;
  font-weight: 600;
}
.two-col aside ul { list-style: none; margin: 0 0 32px; padding: 0; }
.two-col aside li { padding: 14px 0; border-top: 1px solid var(--silver); font-size: 0.95rem; }
.two-col aside li:last-child { border-bottom: 1px solid var(--silver); }

/* Contact page — wider form column on desktop; details-first stack on mobile */
.contact-grid { grid-template-columns: 1fr 1.4fr; }
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-grid > aside { order: 1; margin-bottom: 32px; }
  .contact-grid > div   { order: 2; }
  .contact-grid .contact-areas { display: none; }
}

/* ---------- Form ---------------------------------------------------------- */
.form {
  display: grid;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 600;
}
.field input, .field textarea, .field select {
  font-family: var(--body);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid var(--silver);
  background: var(--white);
  color: var(--ink);
  border-radius: 0;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px var(--emerald-tint);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-help { font-size: 0.85rem; color: var(--mist); }

/* ---------- Utility ------------------------------------------------------- */
.divider { height: 1px; background: var(--silver); border: 0; margin: 0; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.gap-md { gap: 24px; }

/* Print friendliness */
@media print {
  .site-header, .site-footer, .cta-block { display: none; }
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   PHASE 2 ADDITIONS — Photo hero, FAQ, Journal, Google Reviews
   ========================================================================== */

/* ---------- Photography-led Hero ---------------------------------------- */
.hero-photo {
  position: relative;
  height: clamp(640px, 92vh, 920px);
  margin-top: 0;
  padding-top: 84px; /* accounts for the fixed header so centering reads as visually balanced */
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
}
.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('../assets/eqs-cockpit.jpg') center / cover no-repeat;
}
.hero-photo-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,15,20,0.45) 0%, rgba(11,15,20,0.20) 35%, rgba(11,15,20,0.45) 70%, rgba(11,15,20,0.85) 100%),
    linear-gradient(90deg, rgba(11,15,20,0.85) 0%, rgba(11,15,20,0.55) 35%, transparent 60%);
  pointer-events: none;
}
.hero-photo-mark {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.025);
  font-family: var(--display);
  font-size: 30vw;
  font-weight: 200;
  font-style: italic;
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
}
.hero-photo-note {
  position: absolute;
  bottom: 24px;
  right: 32px;
  z-index: 4;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.hero-photo .container {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
.hero-photo-content {
  max-width: 720px;
}
.hero-photo .eyebrow {
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
}
.hero-photo .eyebrow::before { background: rgba(255,255,255,.6); }
.hero-photo h1 {
  color: var(--white);
  margin-bottom: 32px;
}
.hero-photo h1 .em {
  font-style: italic;
  color: var(--emerald-hover);
}

/* Inline eco badge that sits beside "Fully electric." */
.hero-eco-badge {
  display: inline-block;
  vertical-align: -0.16em;
  height: 0.95em;       /* Sized by height so vertical proportions look balanced */
  width: auto;
  margin-left: 18px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
  animation: ecoFade 1.2s var(--ease-out) 0.6s both;
}
@keyframes ecoFade {
  from { opacity: 0; transform: translateY(-6px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 700px) {
  .hero-eco-badge {
    height: 0.85em;
    margin-left: 12px;
  }
}
.hero-photo .hero-sub {
  color: rgba(255,255,255,.78);
  font-size: 1.15rem;
  max-width: 52ch;
  margin-bottom: 0;
}
.hero-photo .hero-cta { margin-top: 40px; }

/* Hero credential line — sits after the CTAs */
.hero-credential {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 600px;
}
.hero-credential-rule {
  flex: 0 0 32px;
  height: 1px;
  background: rgba(201, 154, 44, 0.7); /* --emerald-hover with alpha — gold rule */
}
.hero-credential-rule:last-child { flex: 1; }
.hero-credential-text {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald-hover);
  white-space: nowrap;
}
.hero-credential-text .dot {
  margin: 0 4px;
  color: rgba(201, 154, 44, 0.55);
}

@media (max-width: 700px) {
  .hero-credential { gap: 12px; margin-top: 32px; }
  .hero-credential-rule { flex: 0 0 16px; }
  .hero-credential-text {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    white-space: normal;
  }
}
.hero-photo .btn--primary { background: var(--white); color: var(--ink); }
.hero-photo .btn--primary:hover { background: var(--emerald-hover); color: var(--white); }
.hero-photo .btn--ghost { color: var(--white); border-color: rgba(255,255,255,.5); }
.hero-photo .btn--ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* Scroll cue — positioned within container so it aligns with the button row */
.hero-photo-scroll {
  position: absolute;
  bottom: 12px;
  right: 80px;
  z-index: 5;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-photo-scroll::after {
  content: "";
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.4);
  animation: scrollCue 2.4s var(--ease) infinite;
}
@keyframes scrollCue {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (max-width: 700px) {
  .hero-photo-scroll { display: none; }
  .hero-photo-note { font-size: 0.6rem; right: 16px; }
}

/* Header on photo hero needs different treatment when at top */
.site-header.on-photo:not(.scrolled) {
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.55) 0%, rgba(11, 15, 20, 0) 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
.site-header.on-photo:not(.scrolled) .nav-links a { color: rgba(255,255,255,.85); }
.site-header.on-photo:not(.scrolled) .nav-links a:hover { color: var(--white); }
.site-header.on-photo:not(.scrolled) .nav-cta {
  background: var(--white);
  color: var(--ink);
}
.site-header.on-photo:not(.scrolled) .nav-cta:hover { background: var(--emerald-hover); color: var(--white); }
.site-header.on-photo:not(.scrolled) .nav-toggle span { background: var(--white); }
.site-header.on-photo:not(.scrolled) .nav-call { color: var(--white); }

/* ---------- FAQ Accordion ----------------------------------------------- */
.faq-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
  margin-bottom: 60px;
}
@media (max-width: 900px) { .faq-head { grid-template-columns: 1fr; } }
.faq-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.faq-head .lede { color: var(--mist); font-size: 1.05rem; }

.faq {
  border-top: 1px solid var(--silver);
}
@media (min-width: 900px) {
  .faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 56px;
    align-items: start;
  }
}
.faq-item {
  border-bottom: 1px solid var(--silver);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.4;
  transition: color .25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--emerald); }
.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--silver);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--mist);
  font-family: var(--body);
  font-weight: 300;
  flex-shrink: 0;
  transition: all .3s var(--ease);
}
.faq-item summary:hover .faq-icon {
  border-color: var(--emerald);
  color: var(--emerald);
}
.faq-item[open] .faq-icon {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  padding: 4px 0 32px;
  max-width: 72ch;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.75;
}
.faq-a p { margin: 0 0 1em; }
.faq-a p:last-child { margin: 0; }
.faq-a a { color: var(--emerald); text-decoration: underline; text-underline-offset: 3px; }

/* Subtle slide-down on open */
.faq-item[open] summary { color: var(--ink); }
.faq-item[open] .faq-a {
  animation: faqOpen .35s var(--ease-out);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Journal Grid ------------------------------------------------- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--silver);
  border-block: 1px solid var(--silver);
}
.journal-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: background .35s var(--ease);
}
.journal-card:hover { background: var(--paper); }
.journal-img {
  display: block;
  aspect-ratio: 16 / 10;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.journal-img--eqs       { background-image: url('../assets/eqs-interior.jpg'); }
.journal-img--newmarket { background-image: url('../assets/corporate.jpg'); }
.journal-img--commute   { background-image: url('../assets/airport.jpg'); }
.journal-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,31,38,0.55), rgba(11,15,20,0.85));
  transition: transform .8s var(--ease-out);
  pointer-events: none;
}
.journal-card:hover .journal-img::before { transform: scale(1.05); }
.journal-img-label {
  position: absolute;
  bottom: 14px; left: 16px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 0.62rem;
  color: rgba(255,255,255,.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.journal-img::after {
  content: "";
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 1px;
  background: rgba(255,255,255,.4);
  z-index: 2;
}
.journal-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.journal-meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--emerald);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.journal-card h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0 0 14px;
  transition: color .25s var(--ease);
}
.journal-card:hover h3 { color: var(--emerald); }
.journal-card h3 a { color: inherit; }
.journal-excerpt {
  font-size: 0.95rem;
  color: var(--mist);
  line-height: 1.65;
  margin: 0 0 20px;
  flex-grow: 1;
}
.journal-card .tlink {
  align-self: flex-start;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Google Reviews ---------------------------------------------- */
.reviews-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}
@media (max-width: 800px) {
  .reviews-head { grid-template-columns: 1fr; }
}
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.92rem;
  color: var(--slate);
}
.reviews-summary .g-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--paper);
  border: 1px solid var(--silver);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--slate);
}
.reviews-summary .g-mark svg { width: 14px; height: 14px; }
.stars {
  color: #E5A100;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--silver);
  border-block: 1px solid var(--silver);
}
.review {
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review-stars {
  color: #E5A100;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.review-text {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  flex-grow: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--silver);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--emerald-tint);
  color: var(--emerald);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1rem;
}
.review-name { font-weight: 600; font-size: 0.9rem; color: var(--ink); display: block; }
.review-when { font-size: 0.78rem; color: var(--mist); }

.reviews-foot {
  margin-top: 40px;
  text-align: center;
}

/* ---------- Photo overlay on inner pages (optional, kept consistent) ---- */
@media (max-width: 700px) {
  .hero-photo h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-photo .hero-sub { font-size: 1rem; }
}

/* ---------- Benefits Grid (corporate-accounts page) -------------------- */
.benefits-head {
  margin-bottom: 56px;
}
.benefits-head h2 {
  margin-top: 12px;
  max-width: 22ch;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--silver);
  border-block: 1px solid var(--silver);
}
@media (max-width: 900px) {
  .benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .benefits { grid-template-columns: 1fr; }
}
.benefit {
  background: var(--white);
  padding: 36px 32px 38px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .35s var(--ease);
}
.benefit:hover { background: var(--paper); }
.benefit-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--emerald);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 4px;
}
.benefit h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0;
}
.benefit p {
  color: var(--mist);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ---------- Pricing page ------------------------------------------------ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.pricing-notes {
  background: var(--silver);
  padding: 36px 36px;
  border-radius: 2px;
}
.pricing-notes h4 {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
  margin: 0 0 20px;
}
.pricing-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-notes ul li {
  position: relative;
  padding: 0 0 14px 22px;
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.55;
}
.pricing-notes ul li:last-child { padding-bottom: 0; }
.pricing-notes ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-notes { padding: 28px; }
}
