/* ════════════════════════════════════════════════════
   Underway Tax Advisory — Main Stylesheet  v2.0
   ════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── RESET & ROOT ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1C2B4A;
  --red:     #D0442A;
  --white:   #FFFFFF;
  --off:     #F6F5F2;
  --mid:     #E4E2DD;
  --muted:   #6B7280;
  --ink-2:   #374151;
  --text:    #111827;
  --surface: #FAFAF8;

  --font-sans:  'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;

  --section-pad: 130px 64px;
  --max-w: 1200px;
  --radius: 4px;
  --nav-h: 96px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ── UTILITIES ────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 64px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: var(--red);
}
.eyebrow--left::before { display: none; }
.eyebrow--light { color: rgba(255,255,255,0.5); }
.eyebrow--light::before, .eyebrow--light::after { background: rgba(255,255,255,0.3); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.13;
}

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 38px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s, border-color 0.25s;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--primary:hover { background: var(--red); border-color: var(--red); }

.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { border-color: var(--red); color: var(--red); }

.btn--white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--white:hover { background: var(--off); }

.btn--red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--red:hover { background: #b83922; border-color: #b83922; }

.btn--full { width: 100%; text-align: center; }

/* ── STRIPE DIVIDER ───────────────────────────────── */
.stripe { height: 5px; background: linear-gradient(90deg, var(--navy), var(--red)); }

/* ── FADE-UP ANIMATION ────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.12s; }
.fade-up.delay-2 { transition-delay: 0.24s; }
.fade-up.delay-3 { transition-delay: 0.36s; }
.fade-up.delay-4 { transition-delay: 0.48s; }


/* ════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 28px rgba(0,0,0,0.09); }

.nav__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav__logo img { height: 82px; width: auto; max-width: 300px; object-fit: contain; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { opacity: 1; color: var(--red); }

.nav__cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white) !important;
  background: var(--navy);
  padding: 11px 26px;
  border-radius: var(--radius);
  opacity: 1 !important;
  transition: background 0.25s !important;
}
.nav__cta:hover { background: var(--red) !important; color: var(--white) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 100px 40px 60px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 22px;
  font-weight: 400;
  font-family: var(--font-serif);
  text-decoration: none;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav__mobile .btn {
  margin-top: 12px;
  font-size: 13px;
}


/* ════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 72px) 64px 80px;
  background: var(--off);
  border-bottom: 1px solid var(--mid);
}
.page-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 800px;
}
.page-hero p {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
}


/* ════════════════════════════════════════════════════
   HERO (home)
   ════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 64px 80px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

/* Background stripe decoration */
.hero__bg {
  position: absolute;
  right: -160px;
  top: -80px;
  width: 520px;
  opacity: 0.055;
  pointer-events: none;
}

.hero__eyebrow { margin-bottom: 32px; }

.hero__h1 {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin-bottom: 28px;
  max-width: 880px;
}
.hero__h1 em { font-style: italic; color: var(--red); }

.hero__sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.5;
  animation: scrollBob 2.4s ease-in-out infinite;
}
@keyframes scrollBob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* Hero photo row */
.hero__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 52px auto 0;
  width: 100%;
}
.hero__photo-card {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 48px rgba(28,43,74,0.12);
}
.hero__photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hero__photo-card:hover img { transform: scale(1.04); }


/* ════════════════════════════════════════════════════
   TRUST STRIP
   ════════════════════════════════════════════════════ */
.trust {
  background: var(--navy);
  padding: 20px 64px;
  overflow: hidden;
}
.trust__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 36px;
  border-right: 1px solid rgba(255,255,255,0.12);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.trust__item:last-child { border-right: none; }
.trust__item svg { color: var(--red); flex-shrink: 0; }


/* ════════════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════════════ */
.stats {
  padding: 64px;
  background: var(--off);
  border-bottom: 1px solid var(--mid);
}
.stats__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats__item {
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid var(--mid);
}
.stats__item:last-child { border-right: none; }
.stats__num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.stats__num em { color: var(--red); font-style: normal; }
.stats__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}


/* ════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════ */
.services {
  padding: var(--section-pad);
  background: var(--white);
}
.services__header {
  max-width: var(--max-w);
  margin: 0 auto 72px;
}
.services__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--mid);
  border: 3px solid var(--mid);
  border-radius: 8px;
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 52px 44px;
  position: relative;
}
.service-card__num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 28px;
}
.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--navy);
  margin-bottom: 24px;
  opacity: 0.6;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
}
.service-card p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--muted);
}

/* Service areas chips */
.services__areas {
  max-width: var(--max-w);
  margin: 64px auto 0;
  text-align: center;
}
.services__areas .eyebrow { margin-bottom: 24px; }
.services__areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  list-style: none;
  padding: 0;
}
.services__areas-list li {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  background: var(--off);
  border: 1px solid var(--mid);
  border-radius: 100px;
  padding: 8px 20px;
  white-space: nowrap;
}


/* ════════════════════════════════════════════════════
   PHOTO STRIP
   ════════════════════════════════════════════════════ */
.photo-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  height: 460px;
  overflow: hidden;
}
.photo-strip__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.photo-strip__img:hover { transform: scale(1.04); }


/* ════════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════════ */
.how {
  padding: var(--section-pad);
  background: var(--off);
}
.how__header {
  max-width: var(--max-w);
  margin: 0 auto 72px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.how__header-text { flex: 1; }
.how__header-sub {
  max-width: 360px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}
.how__steps {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.how__steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--mid);
  z-index: 0;
}
.how__step {
  padding: 0 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.how__step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  margin: 0 auto 28px;
  transition: background 0.3s, border-color 0.3s;
}
.how__step:hover .how__step-num {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.how__step h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.how__step p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}


/* ════════════════════════════════════════════════════
   DARK STATEMENT
   ════════════════════════════════════════════════════ */
.statement {
  background: var(--navy);
  padding: 120px 64px;
  text-align: center;
}
.statement h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.statement h2 em { color: #f87e6a; font-style: italic; }
.statement p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 44px;
}


/* ════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════ */
.about { padding: var(--section-pad); background: var(--white); }
.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.about__text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--muted);
  margin-bottom: 20px;
}
.about__text .btn { margin-top: 16px; }
.about__photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(28,43,74,0.14);
}


/* ════════════════════════════════════════════════════
   PHOTO FEATURE (split section)
   ════════════════════════════════════════════════════ */
.photo-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  overflow: hidden;
}
.photo-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-feature__text {
  background: var(--navy);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}
.photo-feature__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  color: white;
}
.photo-feature__text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.82;
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  margin-bottom: 36px;
}
.photo-feature__text .btn { align-self: flex-start; }


/* ════════════════════════════════════════════════════
   TEAM
   ════════════════════════════════════════════════════ */
.team { padding: var(--section-pad); background: var(--off); }
.team__header {
  max-width: var(--max-w);
  margin: 0 auto 72px;
  text-align: center;
}
.team__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 8px;
  padding: 52px;
  position: relative;
  transition: box-shadow 0.3s;
}
.team-card:hover { box-shadow: 0 16px 56px rgba(28,43,74,0.10); }
.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.team-card__role {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.team-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
}
.team-card p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--muted);
  margin-bottom: 24px;
}
.team-card__tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--off);
  border: 1px solid var(--mid);
  padding: 6px 14px;
  border-radius: 100px;
}


/* ════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-pad);
  background: var(--white);
}
.testimonials__header {
  max-width: var(--max-w);
  margin: 0 auto 64px;
  text-align: center;
}
.testimonials__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--off);
  border: 1px solid var(--mid);
  border-radius: 8px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
}
.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 0.6;
  color: var(--red);
  margin-bottom: 20px;
  opacity: 0.6;
}
.testimonial-card p {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--ink-2);
  flex: 1;
  margin-bottom: 32px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
  font-style: normal;
}
.testimonial-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: block;
}
.testimonial-card__title {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 400;
  font-style: normal;
}
.testimonials__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 6px;
}
.testimonials__stars span { color: #F59E0B; font-size: 14px; }


/* ════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════ */
.faq {
  padding: var(--section-pad);
  background: var(--off);
}
.faq__inner {
  max-width: 860px;
  margin: 0 auto;
}
.faq__header {
  text-align: center;
  margin-bottom: 64px;
}
.faq__item {
  border-bottom: 1px solid var(--mid);
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 26px 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq__question:hover { color: var(--red); }
.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.faq__icon::before { width: 14px; height: 1.5px; top: 50%; left: 3px; transform: translateY(-50%); }
.faq__icon::after { width: 1.5px; height: 14px; top: 3px; left: 50%; transform: translateX(-50%); transition: transform 0.3s, opacity 0.3s; }
.faq__item.open .faq__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq__answer {
  display: none;
  padding: 0 0 28px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
}
.faq__item.open .faq__answer { display: block; }


/* ════════════════════════════════════════════════════
   EMAIL CTA
   ════════════════════════════════════════════════════ */
.email-cta {
  padding: 120px 64px;
  background: var(--navy);
  text-align: center;
}
.email-cta .eyebrow { color: rgba(255,255,255,0.45); }
.email-cta .eyebrow::before,
.email-cta .eyebrow::after { background: rgba(255,255,255,0.25); }
.email-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 20px;
}
.email-cta > p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.email-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  overflow: hidden;
}
.email-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 18px 24px;
  font-size: 15px;
  color: white;
}
.email-form input::placeholder { color: rgba(255,255,255,0.35); }
.email-form button {
  background: var(--red);
  color: white;
  border: none;
  padding: 18px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s;
}
.email-form button:hover { background: #b83922; }
.form-confirm {
  display: none;
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}


/* ════════════════════════════════════════════════════
   BOOKING STRIP
   ════════════════════════════════════════════════════ */
.booking {
  background: var(--red);
  padding: 36px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.booking p {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.booking a:first-of-type {
  font-size: 20px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.booking a:first-of-type:hover { opacity: 0.85; }
.booking a:last-child {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: background 0.25s;
}
.booking a:last-child:hover { background: rgba(255,255,255,0.12); }


/* ════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════ */
.contact { padding: var(--section-pad); background: var(--white); }
.contact__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.contact__info h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.contact__info > p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--muted);
  margin-bottom: 40px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item__label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-item__val {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
}
.contact-item__val:hover { color: var(--red); }

/* Contact form */
.contact__form {
  background: var(--off);
  border: 1px solid var(--mid);
  border-radius: 8px;
  padding: 52px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--mid);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; }


/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 80px 64px 40px;
  color: white;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo-svg {
  height: 56px;
  width: auto;
  max-width: 220px;
  margin-bottom: 20px;
  display: block;
}
.footer__brand p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.4);
  max-width: 260px;
  margin-bottom: 24px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 12px;
  transition: background 0.2s, color 0.2s;
}
.footer__social a:hover { background: rgba(255,255,255,0.1); color: white; }

.footer__col h4 {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 22px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col li a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__col li a:hover { color: white; }

.footer__bottom {
  max-width: var(--max-w);
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}


/* ════════════════════════════════════════════════════
   SERVICES PAGE — DETAIL CARDS
   ════════════════════════════════════════════════════ */
.services-detail {
  padding: var(--section-pad);
  background: var(--white);
}
.services-detail__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--mid);
  border: 3px solid var(--mid);
  border-radius: 8px;
  overflow: hidden;
}
.service-detail-card {
  background: var(--white);
  padding: 56px 52px;
}
.service-detail-card__num {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}
.service-detail-card h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.18;
}
.service-detail-card > p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--muted);
  margin-bottom: 28px;
}
.service-detail-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-detail-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.6;
}
.service-detail-card ul li::before {
  content: '→';
  color: var(--red);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 12px;
}


/* ════════════════════════════════════════════════════
   WHO WE SERVE
   ════════════════════════════════════════════════════ */
.serve {
  padding: var(--section-pad);
  background: var(--off);
}
.serve__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.serve__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.serve__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.serve__item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 6px;
  padding: 20px 24px;
}
.serve__item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.serve__item-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.serve__item-text span {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}
.serve__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(28,43,74,0.14);
}


/* ════════════════════════════════════════════════════
   ABOUT PAGE SECTIONS
   ════════════════════════════════════════════════════ */
.values {
  padding: var(--section-pad);
  background: var(--white);
}
.values__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.values__header {
  text-align: center;
  margin-bottom: 72px;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.value-card {
  padding: 0;
}
.value-card__num {
  font-family: var(--font-serif);
  font-size: 56px;
  color: var(--mid);
  line-height: 1;
  margin-bottom: 16px;
}
.value-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--muted);
}

/* About page photo grid */
.about-photos {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  height: 520px;
  overflow: hidden;
}
.about-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ════════════════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════════════════ */
.cta-band {
  background: var(--navy);
  padding: 100px 64px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 20px;
}
.cta-band p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.cta-band__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 100px 40px; }
  .nav { padding: 0 40px; }
  .container { padding: 0 40px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(3) { border-bottom: none; }
  .trust { padding: 16px 40px; }
  .about__inner { gap: 60px; }
  .contact__inner { gap: 60px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .how__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .how__steps::before { display: none; }
  .how__header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --section-pad: 80px 28px; --nav-h: 72px; }

  .nav { padding: 0 28px; height: 72px; }
  .nav__logo img { height: 64px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .page-hero { padding: calc(72px + 56px) 28px 60px; }

  .hero { padding: calc(72px + 52px) 28px 80px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__photos { grid-template-columns: 1fr; gap: 10px; margin-top: 36px; }

  .trust { padding: 12px 20px; }
  .trust__inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; gap: 0; }
  .trust__item { padding: 10px 24px; font-size: 10px; }

  .stats { padding: 48px 28px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }

  .services__grid { grid-template-columns: 1fr; }
  .services-detail__grid { grid-template-columns: 1fr; }

  .photo-strip { grid-template-columns: 1fr; height: auto; }
  .photo-strip__img { height: 240px; }

  .how { padding: 80px 28px; }
  .how__steps { grid-template-columns: 1fr; gap: 36px; }

  .statement { padding: 80px 28px; }

  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__graphic, .serve__photo-col { display: none; }

  .photo-feature { grid-template-columns: 1fr; }
  .photo-feature__img { height: 300px; }
  .photo-feature__text { padding: 52px 28px; }

  .team__grid { grid-template-columns: 1fr; }

  .testimonials__grid { grid-template-columns: 1fr; }

  .values__grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photos { grid-template-columns: 1fr; height: 320px; }
  .about-photos img:last-child { display: none; }

  .email-cta { padding: 80px 28px; }
  .email-form { flex-direction: column; border: none; background: none; }
  .email-form input {
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: var(--radius);
    margin-bottom: 10px;
    background: rgba(255,255,255,0.08);
  }
  .email-form button { border-radius: var(--radius); }

  .booking { flex-direction: column; gap: 16px; text-align: center; padding: 28px; }

  .contact { padding: 80px 28px; }
  .contact__inner { grid-template-columns: 1fr; gap: 52px; }
  .contact__form { padding: 32px 24px; }

  .serve__inner { grid-template-columns: 1fr; }

  footer { padding: 56px 28px 36px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; padding-bottom: 36px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 11px; }

  .form-row { grid-template-columns: 1fr; }

  .cta-band { padding: 80px 28px; }
  .cta-band__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero__h1 { font-size: 38px; }
  .stats__grid { grid-template-columns: 1fr; }
  .stats__item { border-right: none; border-bottom: 1px solid var(--mid); padding: 24px 0; }
  .stats__item:last-child { border-bottom: none; }
  .footer__inner { grid-template-columns: 1fr; }
  .trust__item { padding: 8px 16px; }
}
