/* ============================================================
   SULLIVAN CONSULTING PARTNERS — SITE STYLESHEET
   ------------------------------------------------------------
   HOW TO EDIT:
   - All colors, fonts, and spacing are controlled by the CSS
     variables in the ":root" block directly below. Change a
     value there and it updates across every page.
   - Section comments (in ALL CAPS) mark where each part of the
     design lives, so you can jump straight to what you need.
   ============================================================ */

:root {
  /* ---- Brand palette: navy, white, charcoal ---- */
  --navy: #0a1a3c;
  --navy-deep: #060f26;
  --navy-mid: #13284f;
  --navy-tint: #eef1f7;      /* very light navy for subtle backgrounds */
  --charcoal: #2b2d33;
  --charcoal-soft: #5a5e66;
  --white: #ffffff;
  --off-white: #f7f7f8;
  --border: #e1e3e8;

  /* ---- Typography ---- */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ---- Spacing / layout ---- */
  --max-width: 1180px;
  --section-padding: 96px;
  --radius: 4px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.4rem; }

p { color: var(--charcoal-soft); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: var(--section-padding) 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--off-white); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.78); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-navy .eyebrow { color: #b7c3dd; }

.section-header { max-width: 680px; margin-bottom: 48px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============================================================
   MOTION — scroll reveals, counters, reduced-motion support
   ------------------------------------------------------------
   Add class="reveal" to any element you want to fade/rise into
   view as the visitor scrolls to it. script.js handles the rest.
   Add class="reveal-group" to a grid/row to stagger its children.
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.16,.84,.44,1), transform 0.9s cubic-bezier(.16,.84,.44,1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none; }

.reveal-group > *:nth-child(1) { transition-delay: 0ms; }
.reveal-group > *:nth-child(2) { transition-delay: 90ms; }
.reveal-group > *:nth-child(3) { transition-delay: 180ms; }
.reveal-group > *:nth-child(4) { transition-delay: 270ms; }
.reveal-group > *:nth-child(5) { transition-delay: 360ms; }
.reveal-group > *:nth-child(6) { transition-delay: 450ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .ken-burns { animation: none !important; }
  * { scroll-behavior: auto !important; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease, transform 0.25s ease;
  text-align: center;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
  pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-primary:hover { background: transparent; color: var(--white); border-color: var(--white); }

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

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

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav ul {
  display: flex;
  gap: 34px;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.main-nav a:hover { color: var(--navy); }

.main-nav a.active { color: var(--navy); font-weight: 700; }

.nav-cta,
.nav-cta:hover,
.nav-cta:focus,
.nav-cta:active { color: var(--white) !important; }
.nav-cta { padding: 11px 24px; font-size: 0.85rem; background: var(--navy); border-color: var(--navy); }
.nav-cta:hover { background: var(--navy-mid); border-color: var(--navy-mid); }
.nav-cta::after { display: none; } /* the underline hover effect meant for text links doesn't suit a solid button */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
}

/* ============================================================
   HERO (Home page) — cinematic full-bleed photo + slow Ken Burns
   motion standing in for video. To swap the photo, change the
   src on the <img class="ken-burns"> inside .hero-media.
   ============================================================ */
.hero {
  color: var(--white);
  padding: 220px 0 150px;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1);
  animation: kenburns 26s ease-in-out infinite alternate;
}
.hero-media .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,15,38,0.55) 0%, rgba(6,15,38,0.62) 45%, rgba(6,15,38,0.88) 100%),
    linear-gradient(100deg, rgba(6,15,38,0.75) 0%, rgba(10,26,60,0.35) 55%, rgba(6,15,38,0.55) 100%);
}

@keyframes kenburns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1.5%); }
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; max-width: 760px; }

.hero .eyebrow { color: #cfd9ee; }

.hero h1 {
  color: var(--white);
  font-size: 3.6rem;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}

.hero p.lead {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scroll-cue .dot {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}
.scroll-cue .dot::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollcue 2.2s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* ============================================================
   IMAGE BREAK — full-bleed photographic storytelling sections
   used between text sections on interior pages. To swap the
   photo, change the background-image URL in the inline style
   attribute on the .img-break element.
   ============================================================ */
.img-break {
  position: relative;
  min-height: 460px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,15,38,0.45) 0%, rgba(6,15,38,0.55) 100%);
}
.img-break-caption {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
}
.img-break-caption .eyebrow { color: #cfd9ee; }
.img-break-caption p.quote {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

@media (max-width: 760px) {
  .img-break { background-attachment: scroll; min-height: 340px; }
}

/* Trust bar directly beneath hero */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 34px 0;
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.trust-item .num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}
.trust-item .label {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 88px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header h1 { color: var(--white); margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.78); max-width: 620px; margin: 0 auto; }

/* Photo variant — used on interior pages for a richer, less flat opener */
.page-header-photo {
  padding: 200px 0 110px;
  min-height: 58vh;
  display: flex;
  align-items: center;
}
.page-header-photo .hero-media img { animation-duration: 30s; }
.page-header-photo .container { position: relative; z-index: 2; }

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.grid {
  display: grid;
  gap: 32px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.card:hover::before { transform: scaleX(1); }
.card:hover {
  box-shadow: 0 20px 48px rgba(10, 26, 60, 0.10);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--navy-tint);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; }

.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.95rem; }

/* Numbered list rows (services detail page) */
.service-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }
.service-row .index {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy-tint);
}
.service-row h3 { margin-bottom: 10px; }
.service-row ul { margin-top: 14px; }
.service-row ul li {
  font-size: 0.92rem;
  color: var(--charcoal-soft);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.service-row ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--navy);
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat .num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
}
.stat .label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-top: 6px;
}

/* Brand strip */
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 32px 0;
}
.brand-strip span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal-soft);
  letter-spacing: 0.02em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial {
  background: var(--off-white);
  border-left: 3px solid var(--navy);
  padding: 32px 36px;
  border-radius: var(--radius);
}
.testimonial p.quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.testimonial .attribution { font-size: 0.88rem; color: var(--charcoal-soft); font-weight: 600; }

/* ============================================================
   ABOUT PAGE — bio layout
   ============================================================ */
.bio-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

.headshot-frame {
  aspect-ratio: 4 / 5;
  background: var(--navy-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  padding: 24px;
  overflow: hidden;
}
.headshot-frame .initials {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
}
.headshot-frame .hint {
  font-size: 0.8rem;
  color: var(--charcoal-soft);
  max-width: 200px;
}
.headshot-frame.has-photo {
  padding: 0;
  background: var(--navy-tint);
}
.headshot-frame.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.headshot-frame-small {
  width: 220px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.headshot-frame-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.credential-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}
.credential-list li:last-child { border-bottom: none; }
.credential-list strong { color: var(--charcoal); }

/* ============================================================
   TIMELINE (About / Results)
   ============================================================ */
.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-item .years {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
}
.timeline-item h4 { font-size: 1.05rem; margin-bottom: 6px; color: var(--navy); }
.timeline-item p { font-size: 0.92rem; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.cta-band h2 { color: var(--white); margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto 32px; }
.cta-band .hero-actions { justify-content: center; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-info-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal-soft);
  margin-bottom: 6px;
}
.contact-info-item .value { font-size: 1.05rem; font-weight: 600; color: var(--navy); }

form .field { margin-bottom: 20px; }
form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
form input, form textarea, form select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
}
form input:focus, form textarea:focus, form select:focus {
  outline: none;
  border-color: var(--navy);
}
form textarea { resize: vertical; min-height: 130px; }

.form-note {
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  margin-top: 14px;
}

#form-success {
  display: none;
  background: var(--navy-tint);
  border: 1px solid var(--navy);
  color: var(--navy);
  padding: 18px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-weight: 600;
}

#form-error {
  display: none;
  background: #fdf1ec;
  border: 1px solid #c25a2b;
  color: #9a4620;
  padding: 18px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand p { color: var(--white); font-family: var(--font-heading); font-weight: 700; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.footer-nav a:hover { color: var(--white); }
.footer-contact { font-size: 0.85rem; text-align: right; }
.footer-contact p { color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  padding-top: 24px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  h1 { font-size: 2.4rem; }
  .hero h1 { font-size: 2.4rem; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .bio-layout { grid-template-columns: 1fr; }
  .headshot-frame { max-width: 320px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .page-header-photo { padding: 150px 0 90px; min-height: 46vh; }
  .img-break-caption p.quote { font-size: 1.6rem; }
}

@media (max-width: 760px) {
  :root { --section-padding: 64px; }

  .main-nav {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 32px 28px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .main-nav ul li { width: 100%; }
  .main-nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-cta { margin-top: 16px; display: inline-block; }
  .nav-toggle { display: flex; }

  .logo-text { font-size: 0.92rem; }

  .hero { padding: 130px 0 90px; min-height: 78vh; }
  .hero h1 { font-size: 2rem; }
  .hero p.lead { font-size: 1.05rem; }
  .scroll-cue { display: none; }

  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .service-row { grid-template-columns: 1fr; gap: 10px; }
  .service-row .index { font-size: 1.6rem; }

  .footer-inner { flex-direction: column; }
  .footer-contact { text-align: left; }

  .trust-bar .container { justify-content: flex-start; gap: 24px 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  h1, .hero h1 { font-size: 1.75rem; }
  h2 { font-size: 1.6rem; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
