/* =========================================================
   Root rem scaling — design baseline 1920px (1rem = 16px).
   The whole layout is in rem, so shrinking the root font-size
   scales the entire design down proportionally on smaller
   desktops, then resets to natural sizing for mobile reflow.
   ========================================================= */
html { font-size: 16px; }
@media (max-width: 1600px) { html { font-size: 15.5px; } }
@media (max-width: 1440px) { html { font-size: 15px; } }
@media (max-width: 1280px) { html { font-size: 14px; } }
@media (max-width: 1024px) { html { font-size: 16px; } }

/* =========================================================
   Law Office of Baron Drexel — Homepage
   Static HTML/CSS/JS (GoDaddy shared-hosting friendly)
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --navy-900: #001025;   /* darkest — buttons, dark sections */
  --navy-800: #132d4f;   /* headings / primary */
  --navy-700: #1b4479;   /* hover */
  --blue-500: #54769e;   /* accent */
  --blue-400: #667c99;   /* muted blue */
  --blue-50:  #eaf1fa;   /* light tint bg */
  --blue-50b: #f5f7ff;   /* lighter tint bg */
  --ink:      #151411;   /* main text */
  --ink-2:    #2a2a2a;
  --muted:    #424242;
  --gray:     #808080;
  --gray-2:   #a8a7a7;
  --border:   #d7d7d7;
  --white:    #ffffff;
  --gold:     #c8a45c;

  --maxw: 96rem;
  --radius: 0.75rem;
  --radius-sm: 0.5rem;
  --shadow-sm: 0 0.375rem 1.125rem rgba(16, 32, 60, .08);
  --shadow-md: 0 1.125rem 3.125rem rgba(16, 32, 60, .14);
  --header-h: 8.3125rem;

  --font-body: "Poppins", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-head: "Poppins", "Outfit", system-ui, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--blue-50b); /* #F5F7FF base — not pure white */
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy-800); line-height: 1.2; margin: 0; }
p { margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

/* anchor offset for sticky header */
section[id] { scroll-margin-top: 7.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 0.9375rem 2rem; border: 0; border-radius: var(--radius-sm);
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; letter-spacing: 0.0125rem;
  cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  text-align: center; white-space: nowrap;
}
.btn--primary { background: var(--navy-800); color: #fff; }
.btn--primary:hover { background: var(--navy-700); transform: translateY(-0.125rem); box-shadow: var(--shadow-sm); }
.btn--light { background: #fff; color: var(--navy-800); }
.btn--light:hover { background: var(--blue-50); transform: translateY(-0.125rem); box-shadow: var(--shadow-sm); }

/* ---------- Honeypot (anti-spam) — visually hidden, bots still fill it ---------- */
.hp-field {
  position: absolute !important; left: -624.9375rem !important;
  width: 0.0625rem; height: 0.0625rem; opacity: 0; pointer-events: none;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(1.75rem); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   HEADER
   ========================================================= */
/* Transparent header overlaid on the hero skyline; solidifies to navy on scroll */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  background: var(--navy-900);
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,.25);
}

.topbar { border-bottom: 0.0625rem solid rgba(255,255,255,.18); }
.topbar__inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 5.375rem; padding-top: 0.875rem; padding-bottom: 0.875rem;
}
.brand img { height: 3.25rem; width: auto; }

.topbar__contact { display: flex; align-items: center; gap: 1.75rem; margin-left: auto; }
.contact-pill { display: inline-flex; align-items: center; gap: 0.75rem; }
.contact-pill__icon {
  width: 2.875rem; height: 2.875rem; flex: 0 0 2.875rem; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.14); color: #fff; font-size: 1rem;
}
.contact-pill__text { display: flex; flex-direction: column; line-height: 1.25; }
.contact-pill__text small { color: rgba(255,255,255,.7); font-size: .78rem; }
.contact-pill__text strong { color: #fff; font-size: 1rem; font-weight: 600; }

.topbar__cta { padding: 0.8rem 1.6rem; min-width: 0; font-size: 0.95rem; background: rgba(255,255,255,.1); color: #fff; border: 0.0625rem solid rgba(255,255,255,.35); }
.topbar__cta:hover { background: rgba(255,255,255,.2); }

.nav-toggle {
  display: none; background: rgba(255,255,255,.16); color: #fff; border: 0;
  width: 3rem; height: 2.75rem; border-radius: var(--radius-sm); font-size: 1.2rem; cursor: pointer;
}

.mainnav { background: transparent; }
.mainnav__links {
  display: flex; justify-content: flex-end; align-items: center; gap: 2.75rem;
  min-height: 2.875rem; padding: 0.375rem 0;
}
.mainnav__links a {
  font-family: "Inter", var(--font-body); font-size: 1.25rem; color: #fff; font-weight: 500;
  padding: 0.375rem 0.125rem; position: relative;
}
.mainnav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -0.125rem; width: 0; height: 0.125rem;
  background: var(--gold); transition: width .25s ease;
}
.mainnav__links a:hover { color: var(--gold); }
.mainnav__links a:hover::after { width: 100%; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy-900);
  min-height: 100vh; /* hero fills the full screen */
  margin-top: calc(-1 * var(--header-h)); /* skyline sits under the transparent header */
  padding: calc(var(--header-h) + 2.5rem) 0 0;
}
.hero__bg, .hero__overlay { position: absolute; inset: 0; pointer-events: none; }
.hero__bg { background: url("../images/hero-bg.jpg") center/cover no-repeat; transform: scaleX(-1); }
.hero__overlay { display: none; }
/* Black gradient over the bottom of the hero — sits in FRONT of the portrait */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5rem; /* 80px */
  background: linear-gradient(to top, #000 0%, rgba(0,0,0,0) 100%);
  z-index: 3; pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 1; display: flex; align-items: flex-end;
  min-height: calc(100vh - var(--header-h) - 2.5rem);
}
.hero__content { position: relative; z-index: 2; max-width: 62%; padding-bottom: 3.75rem; }
.hero__title {
  font-size: 3.1rem; font-weight: 700; color: #fff; white-space: nowrap;
  letter-spacing: -0.0312rem; text-transform: uppercase; margin-bottom: 1.625rem;
  text-shadow: 0 0.125rem 1.5rem rgba(0,0,0,.35);
}
.hero__title span { color: #fff; }
.hero__list { display: grid; gap: 0.9375rem; margin-bottom: 1.875rem; max-width: 35rem; }
.hero__list li {
  display: flex; align-items: flex-start; gap: 0.875rem;
  font-size: 1.25rem; color: rgba(255,255,255,.92); font-weight: 500;
}
.hero__list i { color: var(--gold); font-size: 1.2rem; margin-top: 0.25rem; flex: 0 0 auto; }
.hero__cta { font-size: 1.05rem; margin-bottom: 2.375rem; padding: 0.8rem 2rem; min-width: 15.0625rem; }

/* value cards (white, over the skyline in the lower-left) */
.hero__values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 43.75rem; }
.value-card {
  background: rgba(255, 255, 255, .97); border-radius: var(--radius); padding: 1.375rem 1.25rem;
  box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 0.875rem; align-items: flex-start;
}
.value-card__icon {
  width: 3.25rem; height: 3.25rem; flex: 0 0 3.25rem; border-radius: 0.875rem;
  background: var(--navy-900); color: #fff; display: grid; place-items: center; font-size: 1.3rem;
}
.value-card p { color: var(--muted); font-size: 1.05rem; line-height: 1.55; }

.hero__media { position: absolute; right: 0; top: 0; bottom: 0; display: flex; align-items: flex-end; justify-content: flex-end; z-index: 1; }
.hero__portrait { height: 100%; width: 76.0625rem; object-fit: contain; object-position: bottom right; }

/* =========================================================
   AWARDS
   ========================================================= */
.awards { background: transparent; color: var(--navy-800); border-bottom: 0.0625rem solid var(--border); }
.awards__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.875rem;
  padding: 2.25rem 0; align-items: center;
}
.award { display: flex; align-items: center; gap: 1.125rem; justify-content: center; }
.award:not(:last-child) { border-right: 0.0625rem solid var(--border); }
.award__icon { width: 4rem; height: 4rem; flex: 0 0 4rem; display: grid; place-items: center; }
.award__icon img { width: 100%; height: 100%; object-fit: contain; }
.award__text h3 { color: var(--navy-800); font-size: 1.25rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.0187rem; }
.award__text p { color: var(--blue-400); font-size: 1rem; margin-top: 0.1875rem; }

/* =========================================================
   TAGLINE
   ========================================================= */
.tagline { text-align: center; padding: 7rem 0; }
.tagline__title { font-size: 2.1rem; font-weight: 500; color: var(--navy-800); line-height: 1.35; }
.tagline__sub { color: var(--navy-800); font-size: 2.1rem; font-weight: 500; margin-top: 0; line-height: 1.35; }

/* =========================================================
   PRACTICE SECTIONS (Bankruptcy / Personal Injury)
   ========================================================= */
.section-title { font-size: 2.5rem; font-weight: 700; }
.section-lead { color: var(--navy-800); font-size: 1.6rem; font-weight: 600; margin-top: 0.35rem; }
.section-lead-muted { color: var(--blue-400); font-size: 1.375rem; margin-top: 0.875rem; }

.practice { padding: 7rem 0; }
.practice__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.75rem; align-items: center; }
.practice__desc { color: var(--muted); margin: 1.375rem 0 1.625rem; font-size: 1.25rem; }
.practice .section-title { font-size: 2.5rem; line-height: 1.25; }
.practice__list {
  display: grid; gap: 1.15rem;
  background: #fff; border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow-sm); border-bottom: 0.375rem solid var(--navy-900);
}
.practice__list li { display: flex; gap: 0.875rem; align-items: flex-start; color: var(--ink-2); font-size: 1.125rem; }
.practice__list i { color: var(--blue-500); font-size: 1.25rem; margin-top: 0.1875rem; flex: 0 0 auto; }
.practice__list strong { display: block; color: var(--navy-800); margin-bottom: 0.25rem; }
.practice__media img {
  width: 100%; aspect-ratio: 750 / 740; height: auto; object-fit: cover; object-position: center;
  border-radius: var(--radius); box-shadow: var(--shadow-md);
}
/* reverse = image on the left (desktop) */
.practice--reverse .practice__media { order: -1; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band { padding: 6rem 0 4rem; text-align: center; }
.cta-band__inner { max-width: 61.25rem; margin: 0 auto; }
.cta-band h2 { font-size: 3rem; font-weight: 700; }
.cta-band p { color: var(--muted); max-width: 47.5rem; margin: 1.25rem auto 1.875rem; }
.cta-band .btn { padding: 2rem 3rem; min-width: 22.875rem; }

/* =========================================================
   GALLERY + STATS
   ========================================================= */
.gallery { padding: 3rem 0 7rem; }
.gallery__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.875rem; }
.gallery__item { position: relative; margin: 0; }
.gallery__item img { width: 100%; height: 26.25rem; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.stat {
  position: absolute; background: rgba(255,255,255,.93); color: var(--navy-800);
  padding: 1.25rem 1.6rem; border-radius: 0.25rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 1.5rem; min-width: 12.5rem;
}
.stat--bl { left: -0.5rem; bottom: 2.5rem; }
.stat--tr { right: -0.5rem; top: 42%; }
.stat__text { display: flex; flex-direction: column; }
.stat__num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--navy-800); }
.stat__label { font-size: .9rem; color: var(--blue-400); }
.stat__icon { font-size: 1.5rem; color: var(--navy-800); margin-left: auto; }

/* =========================================================
   ACHIEVEMENTS
   ========================================================= */
.achievements { padding: 7rem 0; }
.section-head--center { text-align: center; max-width: 56.25rem; margin: 0 auto 3.125rem; }
.achievements__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.875rem; }
.achv-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16 / 8.2; display: flex; align-items: flex-end;
  box-shadow: var(--shadow-md); transition: transform .25s ease;
}
.achv-card:hover { transform: translateY(-0.375rem); }
.achv-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.achv-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,16,37,0) 20%, rgba(0,16,37,.55) 52%, rgba(0,16,37,.94) 100%); }
.achv-card__body { position: relative; z-index: 1; padding: 2.25rem 2.25rem 2rem; }
.achv-card__body h3 { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; }
.achv-card__body p { color: rgba(255,255,255,.85); font-size: 1.125rem; max-width: 34rem; }

/* =========================================================
   ABOUT
   ========================================================= */
.about { position: relative; background: var(--blue-50b); color: var(--navy-800); overflow: hidden; }
.about::after {
  content: ""; position: absolute; right: 0; bottom: 0; width: 38rem; height: 38rem; max-width: 46%;
  background: url("../images/low-angle-shot-old-greek-stone-pillars-with-clear-blue-sky3.png") right bottom / contain no-repeat;
  opacity: .9; pointer-events: none;
}
.about__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 47.8125rem 1fr; align-items: stretch; min-height: 54.125rem; }
.about__media { position: relative; min-height: 24rem; overflow: hidden; }
.about__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about__text { display: flex; flex-direction: column; justify-content: center; padding: 2.75rem 6% 2.75rem 4.5rem; }
.about__title { color: var(--navy-800); font-size: 3.25rem; font-weight: 700; letter-spacing: 0.0625rem; }
.about__lead { color: var(--navy-800); font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.045em; margin: 0.5rem 0 1rem; }
.about__bio { color: var(--muted); font-size: 1.15rem; margin-bottom: 1.25rem; line-height: 1.55; }
.about .btn--primary { align-self: flex-start; background: transparent; border: 0.0625rem solid var(--navy-800); color: var(--navy-800); border-radius: 0.25rem; padding: 2rem 3rem; min-width: 22.3125rem; }
.about .btn--primary:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

/* =========================================================
   WHY CHOOSE
   ========================================================= */
.why { padding: 7rem 0; }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.25rem 2.5rem; }
.why__intro { padding-right: 0.625rem; }
.why__intro .section-title { margin-bottom: 1.125rem; }
.why__intro p { color: var(--muted); }
.feature { padding: 0.375rem 0.25rem; }
.feature__icon { display: block; width: 3.5rem; height: 3.5rem; margin-bottom: 1.5rem; }
.feature__icon img { width: 100%; height: 100%; object-fit: contain; }
.feature h3 {
  font-size: 1.625rem; font-weight: 600; color: var(--navy-800); line-height: 1.25;
  margin-bottom: 0.875rem; border-left: 0.1875rem solid var(--navy-800); padding-left: 0.875rem;
}
.feature p { color: var(--muted); font-size: 1.125rem; padding-left: 1.0625rem; }

/* =========================================================
   CALL US TODAY
   ========================================================= */
.callcta { position: relative; padding: 6rem 0; color: #fff; background: var(--navy-900); min-height: 43.75rem; }
.callcta::before {
  content: ""; position: absolute; inset: 0;
  background: url("../images/call-bg.jpg") center/cover no-repeat; opacity: .95;
}
.callcta__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,16,37,.85) 0%, rgba(0,16,37,.5) 55%, rgba(0,16,37,.25) 100%); }
.callcta__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.75rem; align-items: stretch; min-height: 31.75rem; }
.callcta__text { display: flex; flex-direction: column; justify-content: center; }
.eyebrow-line { position: relative; display: inline-block; width: 5rem; height: 0.0625rem; background: rgba(255,255,255,.55); margin-bottom: 1.75rem; }
.eyebrow-line::after { content: ""; position: absolute; right: -0.25rem; top: 50%; transform: translateY(-50%); border: 0.25rem solid transparent; border-left-color: rgba(255,255,255,.85); }
.callcta__text h2 { color: #fff; font-size: 3.25rem; font-weight: 700; }
.callcta__text p { color: rgba(255,255,255,.85); font-size: 1.25rem; margin: 1rem 0 1.75rem; max-width: 32.5rem; }
.callcta__btn { align-self: flex-start; background: var(--gray-2); color: #fff; border: 0; padding: 2.1rem 2.75rem; min-width: 19.6875rem; }
.callcta__btn:hover { background: #b7b6b6; transform: translateY(-0.125rem); box-shadow: var(--shadow-sm); }
.callcta__card { position: relative; background: #fff; border-radius: 0; padding: 3rem 2.75rem; box-shadow: var(--shadow-md); display: flex; flex-direction: column; justify-content: center; }
.callcta__card::before { content: ""; position: absolute; inset: 1rem; border: 0.0625rem solid #d2d8e2; pointer-events: none; }
.callcta__card > * { position: relative; }
.callcta__card h3 { font-size: 1.75rem; font-weight: 700; color: var(--navy-800); }
.callcta__card p { color: var(--muted); margin: 0.75rem 0 1.625rem; }
.callcard__phone { display: inline-flex; align-items: center; gap: 1rem; }
.callcard__icon { width: 3.25rem; height: 3.25rem; flex: 0 0 3.25rem; border-radius: 0.5rem; background: var(--navy-900); color: #fff; display: grid; place-items: center; font-size: 1.3rem; }
.callcard__num { display: flex; flex-direction: column; }
.callcard__num small { color: var(--gray); font-size: .85rem; }
.callcard__num strong { color: var(--navy-800); font-size: 1.5rem; font-weight: 700; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.howto { padding: 7rem 0; }
.howto__player { background: #fff; padding: 1rem; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.howto__video { position: relative; border-radius: 0.5rem; overflow: hidden; }
.howto__video img { width: 100%; height: 38rem; object-fit: cover; display: block; }
.video-controls {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 1.25rem; padding: 0.875rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(0,16,37,.6));
}
.vc-btn { background: transparent; border: 0; color: #fff; font-size: 1rem; cursor: default; padding: 0; line-height: 1; display: grid; place-items: center; }
.vc-time { color: #fff; font-size: 0.85rem; flex: 0 0 auto; letter-spacing: .02em; }
.vc-progress { position: relative; flex: 1 1 auto; height: 0.1875rem; background: rgba(255,255,255,.35); border-radius: 1rem; }
.vc-progress__filled { position: absolute; left: 0; top: 0; bottom: 0; width: 12%; background: #fff; border-radius: 1rem; }
.vc-progress__dot { position: absolute; left: 12%; top: 50%; transform: translate(-50%,-50%); width: 0.75rem; height: 0.75rem; border-radius: 50%; background: #fff; }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 5.75rem; height: 5.75rem; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--navy-900); font-size: 1.8rem;
  display: grid; place-items: center; padding-left: 0.375rem;
  box-shadow: 0 0.625rem 2.5rem rgba(0,0,0,.3); transition: transform .25s ease, background .25s ease;
}
.play-btn::after {
  content: ""; position: absolute; inset: -0.875rem; border-radius: 50%;
  border: 0.125rem solid rgba(255,255,255,.5); animation: pulse 2.2s infinite;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
@keyframes pulse { 0% { transform: scale(1); opacity: .8;} 100% { transform: scale(1.4); opacity: 0; } }

/* =========================================================
   CONTACT BAR
   ========================================================= */
.contactbar { background: #eaf1fa; color: var(--navy-900); }
.contactbar__grid { display: flex; align-items: center; justify-content: center; gap: 20rem; padding: 3rem 0; flex-wrap: wrap; }
.contactbar__item { display: inline-flex; flex-direction: column; align-items: center; text-align: center; }
.contactbar__text { display: flex; flex-direction: column; gap: 0.625rem; }
.contactbar__text h4 { font-family: "Archivo", var(--font-body); color: #001025; font-size: 1.625rem; font-weight: 500; }
.contactbar__text p { font-family: "Archivo", var(--font-body); color: #667c99; font-size: 1.375rem; font-weight: 400; }
.contactbar__divider { position: relative; width: 0.0625rem; height: 6.25rem; background: rgba(0,16,37,.22); }
.contactbar__divider::before, .contactbar__divider::after { content: ""; position: absolute; left: 50%; width: 0.5rem; height: 0.5rem; background: #8a93a3; transform: translateX(-50%) rotate(45deg); }
.contactbar__divider::before { top: -0.25rem; }
.contactbar__divider::after { bottom: -0.25rem; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { position: relative; padding: 0; background: var(--blue-50b); overflow: hidden; }
.testimonials__bg {
  position: absolute; right: 0; bottom: 0; width: 22%; height: 50%;
  background: url("../images/low-angle-shot-old-greek-stone-pillars-with-clear-blue-sky3.png") right bottom / contain no-repeat;
  opacity: .9; pointer-events: none;
}
.testimonials__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 38% 62%; align-items: stretch; }
.testimonials__media { min-height: 34rem; }
.testimonials__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; box-shadow: none; }
.testimonials__text { padding: 5.5rem 6% 5.5rem 4rem; }
.eyebrow { display: inline-block; color: var(--blue-500); font-weight: 600; letter-spacing: 0.1875rem; font-size: .9rem; margin-bottom: 0.875rem; position: relative; padding-left: 3.5rem; }
.eyebrow::before { content: ""; position: absolute; left: 0; top: 50%; width: 2.75rem; height: 0.125rem; background: var(--blue-500); }
.testimonials__text h2 { font-size: 3.25rem; font-weight: 700; margin-bottom: 1.375rem; }
.testimonials__text blockquote { margin: 0; color: var(--muted); font-size: 1.375rem; font-style: italic; line-height: 1.7; position: relative; padding-left: 1.5rem; border-left: 0.25rem solid var(--blue-500); }
.testimonials__author { margin-top: 1.625rem; }
.testimonials__author strong { display: block; color: var(--navy-800); font-size: 1.25rem; }
.testimonials__author span { color: var(--blue-400); }
.testimonials__nav { display: flex; gap: 0.875rem; margin-top: 2rem; }
.tnav-btn { width: 3rem; height: 3rem; border-radius: 50%; border: 0.0625rem solid var(--blue-500); background: transparent; color: var(--blue-500); font-size: 1rem; cursor: pointer; transition: all .2s ease; display: grid; place-items: center; }
.tnav-btn:hover { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }

/* =========================================================
   MAKE AN INQUIRY
   ========================================================= */
.inquiry { position: relative; padding: 7rem 0; background: var(--blue-50b); color: var(--navy-800); overflow: hidden; }
.inquiry::after {
  content: ""; position: absolute; right: 0; bottom: 0; width: 50rem; height: 32rem; max-width: 55%;
  background: url("../images/low-angle-shot-old-greek-stone-pillars-with-clear-blue-sky2.png") right bottom / contain no-repeat;
  opacity: .95; pointer-events: none;
}
.inquiry__head { text-align: center; max-width: 47.5rem; margin: 0 auto 2.75rem; position: relative; z-index: 1; }
.inquiry__head h2 { color: var(--navy-800); font-size: 3.4rem; font-weight: 500; letter-spacing: 0.125rem; display: flex; align-items: center; justify-content: center; gap: 1.75rem; }
.inquiry__head h2 .rule { position: relative; width: 4rem; height: 0.0625rem; background: var(--blue-400); display: inline-block; flex: 0 0 auto; }
.inquiry__head h2 .rule::after {
  content: ""; position: absolute; top: 50%; transform: translateY(-50%);
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  border: 0.0625rem solid var(--blue-400); background: var(--blue-50b);
}
.inquiry__head h2 .rule:first-of-type::after { left: -0.25rem; }
.inquiry__head h2 .rule:last-of-type::after { right: -0.25rem; }
.inquiry__head p { color: var(--blue-400); letter-spacing: 0.25rem; font-size: 1.05rem; margin-top: 0.75rem; font-weight: 500; }
.inquiry__form {
  position: relative; z-index: 1; max-width: 61.25rem; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 2.5rem;
}
.field--full { grid-column: 1 / -1; }
.inquiry__form input, .inquiry__form textarea {
  width: 100%; padding: 0.75rem 0.25rem; border: 0; border-bottom: 0.0625rem solid #c6cde0; border-radius: 0;
  background: transparent; color: var(--navy-800); font-family: var(--font-body); font-size: 1rem; resize: vertical;
}
.inquiry__form input::placeholder, .inquiry__form textarea::placeholder { color: var(--blue-400); }
.inquiry__form input:focus, .inquiry__form textarea:focus { outline: none; border-bottom-color: var(--navy-800); }
.inquiry__submit { display: flex; justify-content: center; margin-top: 0.5rem; }
.inquiry__submit .btn {
  background: transparent; color: var(--navy-800);
  border: 0.0625rem solid var(--navy-800); border-radius: 0.25rem;
  padding: 1.2rem 2.25rem; min-width: 21.6875rem; letter-spacing: 0.0625rem; font-weight: 500;
}
.inquiry__submit .btn:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.form-status { grid-column: 1 / -1; text-align: center; padding: 0.75rem; border-radius: var(--radius-sm); font-weight: 500; }
.form-status.is-success { background: rgba(34, 139, 76, .12); color: #1d7a44; }
.form-status.is-error { background: rgba(200, 40, 40, .1); color: #b22; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.finalcta { padding: 6rem 0; }
.finalcta__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.875rem; flex-wrap: wrap; }
.finalcta h2 { font-size: 3.25rem; font-weight: 700; max-width: 45rem; }
.finalcta__btn { padding: 1.25rem 2.5rem; font-size: 1.05rem; min-width: 15.75rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--blue-50b); color: var(--navy-800); padding-top: 3.75rem; border-top: 0.0625rem solid var(--border); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3.125rem; }
.footer__logo { height: 3.5rem; width: auto; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: 1rem; }
.footer__social a { width: 3.625rem; height: 3.625rem; border-radius: 0.875rem; background: var(--blue-50); color: var(--navy-800); display: grid; place-items: center; font-size: 1.5rem; transition: all .2s ease; }
.footer__social a:hover { background: var(--navy-900); color: #fff; }
.footer__col h4 { color: var(--navy-800); font-size: 1.35rem; margin-bottom: 1.25rem; }
.footer__col ul { display: grid; gap: 0.75rem; }
.footer__col a { color: var(--blue-400); font-size: 1.1rem; transition: color .2s ease; }
.footer__col a:hover { color: var(--navy-800); }
.footer__bottom { background: var(--navy-900); padding: 1.5rem 0; }
.footer__bottom p { text-align: center; color: rgba(255,255,255,.7); font-size: .92rem; }

/* =========================================================
   SLIDE-IN ESTIMATE FORM
   ========================================================= */
.estimate {
  position: fixed; top: 50%; right: 0; z-index: 1100;
  display: flex; align-items: center;
  transform: translate(calc(100% - 2.5rem), -50%);
  transition: transform .4s ease;
}
.estimate.is-open { transform: translate(0, -50%); }
.estimate__tab {
  flex: 0 0 2.5rem; width: 2.5rem; height: 5rem;
  background: #fff; border: 0; cursor: pointer;
  border-radius: 0.5rem 0 0 0.5rem; box-shadow: -0.375rem 0 1.25rem rgba(0,16,37,.12);
  color: var(--navy-800); font-size: 1.1rem; display: grid; place-items: center;
}
.estimate__tab i { transition: transform .4s ease; }
.estimate.is-open .estimate__tab i { transform: rotate(180deg); }
.estimate__panel {
  width: min(21rem, 90vw); background: #fff; box-shadow: -0.625rem 0 2.5rem rgba(0,16,37,.18);
  padding: 1.75rem 1.5rem; max-height: 88vh; overflow-y: auto;
}
.estimate__title { font-size: 1.4rem; font-weight: 700; color: var(--navy-800); margin-bottom: 1.25rem; }
.estimate__form { display: grid; gap: 0.75rem; }
.efield { display: flex; align-items: center; border: 0.0625rem solid #e2e6ef; border-radius: 0.4rem; overflow: hidden; background: #fff; }
.efield:focus-within { border-color: var(--navy-700); }
.efield__icon { width: 2.75rem; height: 2.75rem; flex: 0 0 2.75rem; display: grid; place-items: center; background: #eef2f9; color: var(--navy-800); }
.efield input, .efield select {
  flex: 1 1 auto; min-width: 0; border: 0; padding: 0.7rem 0.75rem;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--navy-800); background: #fff; outline: none;
}
.efield input::placeholder { color: #97a1ae; }
.efield input:-webkit-autofill { -webkit-box-shadow: 0 0 0 2rem #fff inset; }
.efield select {
  cursor: pointer; appearance: none; -webkit-appearance: none; padding-right: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23667c99' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.75rem center;
}
.estimate__submit { background: var(--navy-800); color: #fff; width: 100%; margin-top: 0.5rem; padding: 0.9rem; }
.estimate__submit:hover { background: var(--navy-700); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .topbar__contact { gap: 1.125rem; }
  .contact-pill__text small { display: none; }
  .hero__grid { gap: 1.5rem; }
  .achievements__grid { grid-template-columns: repeat(2, 1fr); }
  /* Cards grow with their text (fixed aspect clips titles at narrow widths) */
  .achv-card { aspect-ratio: auto; min-height: 17rem; }
  .achv-card__body { padding: 1.75rem; }
  /* Stronger overlay — text starts higher on short cards, so darken more of the photo */
  .achv-card__overlay { background: linear-gradient(180deg, rgba(0,16,37,.45) 0%, rgba(0,16,37,.75) 45%, rgba(0,16,37,.96) 100%); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .contactbar__grid { gap: 7rem; }
}

@media (max-width: 900px) {
  /* Header → mobile menu */
  :root { --header-h: 5.5rem; }
  .topbar__contact, .topbar__cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
  .site-header.nav-open { background: var(--navy-900); }
  .mainnav { border-top: 0.0625rem solid rgba(255,255,255,.15); }
  .mainnav__links {
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0;
    min-height: 0; padding: 0;
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
  }
  .site-header.nav-open .mainnav__links { max-height: 26.25rem; }
  .mainnav__links li { width: 100%; border-bottom: 0.0625rem solid rgba(255,255,255,.12); }
  .mainnav__links a { display: block; width: 100%; padding: 0.875rem 0.25rem; }

  .hero { min-height: auto; }
  .hero__grid { min-height: auto; text-align: center; display: flex; flex-direction: column; }
  .hero__content { max-width: 100%; padding-bottom: 0; }
  .hero__title { white-space: normal; font-size: 2.4rem; }
  .hero__media { position: static; order: 1; justify-content: center; margin-top: 2rem; }
  .hero__portrait { width: 100%; height: 30rem; max-height: 30rem; object-fit: cover; object-position: center top; }
  .hero__list { margin-inline: auto; text-align: left; max-width: 30rem; }
  .hero__cta { margin: 0 auto 1.875rem; }
  .hero__values-grid { max-width: 40rem; margin-inline: auto; text-align: left; }

  .awards__grid { grid-template-columns: 1fr; gap: 0; }
  .award { justify-content: flex-start; padding: 1.375rem 0; }
  .award:not(:last-child) { border-right: 0; border-bottom: 0.0625rem solid var(--border); }

  .callcta { min-height: 0; }
  .callcta__grid { min-height: 0; align-items: stretch; }
  .practice__grid, .callcta__grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .practice--reverse .practice__media { order: 0; }
  .practice__media { order: -1; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 0; }
  .testimonials__media { order: -1; min-height: 16rem; }
  .testimonials__text { padding: 2.5rem 1.5rem 3rem; }
  .howto__video img { height: 22rem; }

  .about__grid { grid-template-columns: 1fr; gap: 0; min-height: 0; }
  .about__media { order: -1; min-height: 24rem; }
  .about::after { width: 18rem; height: 18rem; }
  .about__text { padding: 2.5rem 1.5rem 3rem; }

  .finalcta__inner { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 600px) {
  body { font-size: 0.9375rem; }
  .container { padding-left: 1.125rem; padding-right: 1.125rem; } /* sides only — shorthand would wipe .footer__grid's bottom padding */
  .btn { padding: 0.8125rem 1.5rem; }
  .achievements__grid, .why__grid { grid-template-columns: 1fr; }
  .achv-card { aspect-ratio: auto; min-height: 19rem; }
  .achv-card__body { padding: 1.5rem; }
  .inquiry__head h2 .rule { display: none; }
  .hero__values-grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item img { height: 20rem; }
  .howto__player { padding: 0.5rem; }
  .howto__video img { height: 13rem; }
  .testimonials__bg { display: none; }
  .contactbar__grid { flex-direction: column; gap: 2.5rem; padding: 3.5rem 0; }
  .contactbar__divider { display: none; }
  .inquiry__form { grid-template-columns: 1fr; }
  .callcta__card { padding: 1.875rem 1.5rem; }
  .callcard__num strong { font-size: 1.2rem; }
  .stat { min-width: 9.375rem; padding: 0.875rem 1.125rem; }
  .stat__num { font-size: 1.6rem; }
  section[id] { scroll-margin-top: 5.625rem; }

  /* Full-width CTAs on mobile (the large min-widths overflow narrow phones) */
  .cta-band .btn, .about .btn--primary, .callcta__btn,
  .inquiry__submit .btn, .finalcta__btn { min-width: 0; width: 100%; padding: 1.1rem 1.5rem; }
  .hero__cta, .topbar__cta { min-width: 0; }

  /* Shrink large headings so long words don't clip on narrow screens */
  .section-title, .practice .section-title, .about__title, .callcta__text h2,
  .testimonials__text h2, .inquiry__head h2, .finalcta h2, .cta-band h2,
  .tagline__title, .tagline__sub { font-size: 1.9rem; line-height: 1.25; }

  /* Footer stacks to one column */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Tighter vertical rhythm on mobile */
  .practice, .why, .howto, .inquiry, .achievements, .tagline { padding-top: 3.25rem; padding-bottom: 3.25rem; }
  .gallery { padding-bottom: 3.25rem; }
  .cta-band { padding: 2rem 0 3rem; }
}
