@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap");

/* ─── Tokens ──────────────────────────────────────────────── */
:root {
  --red:        #c0202a;
  --red-hover:  #a01820;
  --red-light:  #e8222d;
  --red-pale:   #fdf2f3;
  --red-mid:    rgba(192, 32, 42, 0.10);
  --red-glow:   rgba(192, 32, 42, 0.18);

  --white:  #ffffff;
  --off:    #fafafa;
  --border: rgba(192, 32, 42, 0.12);

  --ink:    #111111;
  --dim:    #333333;
  --muted:  #666666;
  --soft:   #999999;

  --nav-h:      76px;
  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  28px;

  --shadow-sm:  0 2px 16px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg:  0 20px 56px rgba(0,0,0,0.13);
  --shadow-red: 0 12px 36px rgba(192,32,42,0.22);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ─── Scroll-reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

/* ─── Nav ─────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

/* Homepage: starts transparent over hero */
.site-nav { background: transparent; }
.site-nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.06);
}

/* Inner pages always white nav */
.site-nav.always-white {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}

.nav-brand img {
  height: 46px;
  width: auto;
}

/* On transparency (homepage before scroll) — dark text on light hero */
.site-nav:not(.scrolled):not(.always-white) .nav-brand img {
  filter: none;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.site-nav:not(.scrolled):not(.always-white) .nav-links a { color: var(--dim); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--red); }
.site-nav:not(.scrolled):not(.always-white) .nav-links a:hover,
.site-nav:not(.scrolled):not(.always-white) .nav-links a.active { color: var(--red); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  transition: background 0.22s, color 0.22s, transform 0.22s;
}
.nav-cta:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  outline: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.site-nav.scrolled .hamburger span,
.site-nav.always-white .hamburger span { background: var(--ink); }
.site-nav:not(.scrolled):not(.always-white) .hamburger span { background: var(--ink); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  border-top: 4px solid var(--red);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--ink);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--red); }

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  /* White wash over left side so dark text stays readable */
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.88) 0%,
    rgba(255,255,255,0.60) 45%,
    rgba(255,255,255,0.10) 75%,
    rgba(255,255,255,0.0) 100%
  );
}
/* Subtle red band at the very bottom */
.hero-overlay::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: var(--red);
}
.hero-body {
  position: relative; z-index: 2;
  padding: 0 6vw 72px;
  max-width: 860px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--red);
}
.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 44px;
  font-weight: 400;
  line-height: 1.9;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform 0.22s var(--ease), box-shadow 0.22s, background 0.22s, border-color 0.22s, color 0.22s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--red-hover); box-shadow: 0 16px 48px rgba(192,32,42,0.30); }

.btn-ghost {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: var(--white); }

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

.btn-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }

.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { background: var(--dim); }

/* ─── Stats Bar ───────────────────────────────────────────── */
.stats-bar {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--red);
}
.stat-item {
  padding: 28px 40px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/* ─── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 6vw 72px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.75) 100%);
}
.page-hero-overlay::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(192,32,42,0.22) 0%, transparent 55%);
}
.page-hero-body { position: relative; z-index: 2; max-width: 680px; }
.page-hero-body .eyebrow {
  margin-bottom: 18px;
  color: rgba(255,255,255,0.7);
}
.page-hero-body h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.page-hero-body p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.85;
}

/* ─── Red divider line ────────────────────────────────────── */
.red-bar {
  height: 4px;
  background: var(--red);
}

/* ─── Layout ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 6vw; }
.section { padding: 96px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-label::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.9;
  font-weight: 300;
}
.section-header { margin-bottom: 56px; }

/* ─── Grid ────────────────────────────────────────────────── */
.grid-3 { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.grid-2 { display: grid; gap: 48px; grid-template-columns: repeat(2, 1fr); align-items: center; }
.grid-4 { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }

/* ─── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  background: var(--red-pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.card p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
}

/* Red card */
.card-red {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.card-red h3 { color: var(--white); }
.card-red p  { color: rgba(255,255,255,0.8); }
.card-red .card-icon { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); }
.card-red::before { background: rgba(255,255,255,0.3); }

/* Light red tint card */
.card-pale { background: var(--red-pale); border-color: var(--border); }

/* ─── Image Split ─────────────────────────────────────────── */
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 520px;
  border: 4px solid var(--white);
  outline: 1px solid var(--border);
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.split-img:hover img { transform: scale(1.03); }

/* ─── Pill tag ────────────────────────────────────────────── */
.pill {
  display: inline-block;
  padding: 5px 14px;
  background: var(--red-pale);
  color: var(--red);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ─── Pillars ─────────────────────────────────────────────── */
.pillars { display: flex; flex-direction: column; gap: 16px; }
.pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.pillar:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }
.pillar-icon { font-size: 1.4rem; line-height: 1; }
.pillar-body h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3px;
}
.pillar-body p { font-size: 0.9rem; color: var(--muted); font-weight: 300; line-height: 1.7; }

/* ─── Timeline ────────────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; }
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--red);
  padding-top: 3px;
}
.timeline-content h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 5px;
}
.timeline-content p { font-size: 0.93rem; color: var(--muted); font-weight: 300; line-height: 1.8; }

/* ─── Numbers Strip ───────────────────────────────────────── */
.numbers-strip {
  background: var(--red);
  padding: 72px 6vw;
}
.numbers-strip .grid-4 { max-width: 1200px; margin: 0 auto; }
.num-item { text-align: center; }
.num-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.num-lbl {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.numbers-strip .num-item + .num-item {
  border-left: 1px solid rgba(255,255,255,0.18);
}

/* ─── Quote / Highlight Band ──────────────────────────────── */
.highlight-band {
  background: var(--red);
  border-radius: var(--radius-lg);
  padding: 64px 60px;
  position: relative;
  overflow: hidden;
}
.highlight-band::before {
  content: "\201C";
  font-family: "Cormorant Garamond", serif;
  font-size: 18rem;
  line-height: 0.8;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: 10px; left: 30px;
  pointer-events: none;
}
.highlight-band blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  max-width: 720px;
  position: relative; z-index: 1;
}
.highlight-band cite {
  display: block;
  margin-top: 22px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  position: relative; z-index: 1;
}

/* ─── Service Image Cards ─────────────────────────────────── */
.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 340px;
  box-shadow: var(--shadow-md);
  border: 3px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.08) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.3s;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(192,32,42,0.88) 0%, rgba(0,0,0,0.15) 55%);
}
.service-card-overlay h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.service-card-overlay p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.4s;
  opacity: 0;
}
.service-card:hover .service-card-overlay p { max-height: 80px; opacity: 1; }

/* ─── Styled List ─────────────────────────────────────────── */
.styled-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.styled-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--dim);
  font-weight: 300;
}
.styled-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 9px;
}

/* ─── Form ────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-mid);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── Contact Item ────────────────────────────────────────── */
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}
.contact-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red-pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-body h4 {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-body p { font-size: 0.98rem; font-weight: 500; color: var(--ink); }

/* ─── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: var(--red-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 6vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(192,32,42,0.07) 0%, transparent 70%);
}
.cta-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
  position: relative;
}
.cta-section p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.9;
  position: relative;
}
.cta-section .hero-actions { justify-content: center; position: relative; }

/* ─── Background helpers ──────────────────────────────────── */
.bg-white   { background: var(--white); }
.bg-off     { background: var(--off); }
.bg-pale    { background: var(--red-pale); }
.bg-red     { background: var(--red); }

/* ─── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: #0d0d0d;
  border-top: 4px solid var(--red);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding: 72px 6vw 60px;
  max-width: 1440px;
  margin: 0 auto;
}

/* Brand column */
.footer-brand-col img {
  height: 42px;
  width: auto;
  margin-bottom: 18px;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}
.footer-brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 6px;
}
.footer-tagline-text {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.85;
  font-weight: 300;
  max-width: 260px;
}

/* Column headings */
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Nav links column */
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav-list a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-nav-list a::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.25s;
  display: inline-block;
}
.footer-nav-list a:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer-nav-list a:hover::before { width: 14px; }

/* Contact column */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-contact-list li span:first-child {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-list li strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  font-weight: 500;
  margin-bottom: 2px;
}

/* Franchise CTA column */
.footer-cta-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}
.footer-cta-col .btn {
  font-size: 0.72rem;
  padding: 10px 22px;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0 6vw;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1440px;
  margin: 0 auto;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social a:hover {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}
.footer-legal {
  display: flex;
  gap: 18px;
}
.footer-legal a {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.22);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--red); }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 6vw 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-legal { flex-wrap: wrap; }
}


/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .stat-item:last-child { border-bottom: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .numbers-strip .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .numbers-strip .num-item + .num-item { border-left: none; }
  .highlight-band { padding: 48px 36px; }
}
@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .hero-body { padding-bottom: 48px; }
  .split-img { height: 280px; }
  .highlight-band { padding: 36px 24px; }
  .cta-section { padding: 72px 6vw; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}
