/* ============================================================
   Wilcox Prochnow Law — Global Styles
   Palette: navy + deep teal + gold
   ============================================================ */

:root {
  --navy:        #14284c;
  --navy-deep:   #0c1a36;
  --navy-soft:   #1c365f;
  --blue-deep:   #0d2e5c;
  --teal:        #0f524d;
  --teal-deep:   #0a3a37;
  --teal-light:  #1c726a;
  --gold:        #c6a865;
  --gold-soft:   #d8c08a;
  --cream:       #f6f2ea;
  --cream-deep:  #ece4d6;
  --ink:         #1a1f29;
  --muted:       #5d6470;
  --gray:        #8c9199;
  --white:       #ffffff;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-sm: 0 2px 10px rgba(12,26,54,.08);
  --shadow-md: 0 14px 40px rgba(12,26,54,.14);
  --shadow-lg: 0 30px 80px rgba(12,26,54,.22);

  --ease: cubic-bezier(.22,.61,.36,1);
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; color: var(--navy); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: min(var(--maxw), 92vw); margin-inline: auto; }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: currentColor;
  opacity: .8;
}
.eyebrow.center::after {
  content: "";
  width: 34px; height: 1px;
  background: currentColor;
  opacity: .8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  padding: .92em 1.7em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn svg { width: 17px; height: 17px; }
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(198,168,101,.35); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,18,40,.55), rgba(8,18,40,0));
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.nav.scrolled {
  background: rgba(12,26,54,.97);
  box-shadow: 0 1px 0 rgba(0,0,0,.2), 0 8px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  padding-top: .7rem; padding-bottom: .7rem;
}
.nav.scrolled::before { opacity: 0; }

.nav-logo { position: relative; z-index: 2; display: flex; align-items: center; }
.nav-logo img {
  height: 80px; width: auto;
  filter: brightness(0) invert(1);
  transition: height .4s var(--ease), filter .4s var(--ease);
}
.nav-logo .chip { display: contents; }
.nav.scrolled .nav-logo img { height: 66px; filter: brightness(0) invert(1); }

.nav-links { position: relative; z-index: 2; display: flex; align-items: center; gap: clamp(1.2rem, 2.6vw, 2.6rem); }
.nav-links a.link,
.nav-links .dropdown-toggle {
  position: relative;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  padding: .4rem 0;
  transition: color .3s var(--ease);
}
.nav-links a.link::after,
.nav-links .dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-links a.link:hover::after,
.nav-links .dropdown-toggle:hover::after { width: 100%; }
.nav.scrolled .nav-links a.link,
.nav.scrolled .nav-links .dropdown-toggle { color: #fff; }

.nav-dropdown { position: relative; }
.dropdown-toggle {
  display: inline-flex; align-items: center; gap: .45em;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans);
}
.dropdown-toggle .chev { width: 13px; height: 13px; transition: transform .3s var(--ease); flex-shrink: 0; }
.nav-dropdown.open .dropdown-toggle .chev { transform: rotate(180deg); }

.dropdown-panel {
  position: absolute; top: calc(100% + 18px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 310px;
  background: rgba(10,20,42,.98);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  box-shadow: var(--shadow-lg);
  padding: .55rem;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility 0s linear .28s;
  z-index: 50;
}
.nav-dropdown.open .dropdown-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.dropdown-panel a {
  padding: .78rem 1rem;
  border-radius: 6px;
  font-size: .76rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: rgba(255,255,255,.88);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.dropdown-panel a:hover { background: rgba(255,255,255,.08); color: var(--gold-soft); }
.dropdown-panel a.overview { color: var(--gold-soft); border-bottom: 1px solid rgba(255,255,255,.1); border-radius: 6px 6px 0 0; margin-bottom: .3rem; padding-bottom: .9rem; }

.nav-cta {
  padding: .4rem .9rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 3px;
}
.nav-toggle { display: none; }
.mobile-menu { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease), transform 7s linear;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
}
.hero-slide.active { opacity: 1; transform: scale(1); }

/* slight grey veil + readability + bottom teal fade */
.hero-veil {
  position: absolute; inset: 0;
  background: rgba(110,115,122,.10);
  pointer-events: none;
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 40%, rgba(8,18,40,0) 30%, rgba(8,18,40,.34) 100%),
    linear-gradient(to bottom, rgba(8,18,40,.30) 0%, rgba(8,18,40,0) 26%);
  pointer-events: none;
}
/* subtle bottom darkening so cards read against the photo */
.hero-fade {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 55%;
  background: linear-gradient(to bottom, rgba(8,18,40,0) 0%, rgba(8,18,40,.35) 60%, rgba(8,18,40,.72) 100%);
  pointer-events: none;
}

.hero-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 1.5rem 36vh;
  z-index: 3;
}
.hero-lines { position: relative; height: 1.2em; width: min(92vw, 1000px); }
.hero-line {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  color: #fff;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  letter-spacing: .01em;
  text-shadow: 0 4px 40px rgba(0,0,0,.45);
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .9s var(--ease), transform 1.1s var(--ease);
  white-space: nowrap;
}
.hero-line.in { opacity: 1; transform: translateY(0); }
.hero-line.out { opacity: 0; transform: translateY(-30px); transition: opacity .55s var(--ease), transform .7s var(--ease); }

.hero-sub {
  position: absolute;
  bottom: 12vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 3;
}

.hero-dots {
  position: absolute;
  bottom: 6.5vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .55rem;
  z-index: 4;
}
.hero-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.7);
  background: transparent;
  padding: 0; cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.hero-dots button.on { background: var(--gold); border-color: var(--gold); transform: scale(1.15); }

/* ============================================================
   FIRM OVERVIEW
   ============================================================ */
.firm-overview {
  position: relative;
  z-index: 3;
  background: var(--cream);
  padding: 6rem 0 2.5rem;
}
.firm-overview-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: start;
}
.firm-overview-text h2 { font-size: clamp(2rem, 3.6vw, 2.7rem); margin-top: .6rem; }
.firm-overview-text p { color: var(--muted); font-size: 1.02rem; line-height: 1.8; margin-top: 1.1rem; }

.firm-overview-list {
  background: #fff;
  border-radius: 12px;
  padding: 2.6rem 2.4rem;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--gold);
}
.firm-overview-list h3 {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.firm-overview-items { display: flex; flex-direction: column; gap: 1.1rem; }
.firm-overview-items li {
  display: flex; align-items: flex-start; gap: .9rem;
  font-size: .96rem; font-weight: 600; color: var(--navy);
  line-height: 1.4;
}
.firm-overview-items svg {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: .1em;
  color: var(--teal-light);
}

@media (max-width: 900px) {
  .firm-overview-grid { grid-template-columns: 1fr; gap: 2.6rem; }
}

/* ============================================================
   NEWSLETTER / TEAL SECTION
   ============================================================ */
.teal {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, var(--blue-deep) 9%, #114a52 44%, var(--teal) 76%, var(--teal) 100%);
  color: #eafdf9;
  padding: 0 0 2rem;
  margin-top: -85px;
}
.teal-inner { position: relative; }

/* pull the carousel up so card tops overlap the hero image */
.news-carousel {
  position: relative;
  z-index: 5;
}

.news-viewport { overflow: hidden; padding: 14px 6px 14px; }
.news-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .65s var(--ease);
  will-change: transform;
}
.news-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  background: var(--cream);
  color: var(--ink);
  border-radius: 6px;
  padding: 2rem 1.8rem 1.9rem;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--gold);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-card .tag {
  font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal-light);
}
.news-card .date { font-size: .8rem; color: var(--muted); margin-top: .3rem; }
.news-card h3 { font-size: 1.55rem; margin: .7rem 0 .6rem; color: var(--navy); }
.news-card p { font-size: .95rem; color: var(--muted); }
.news-card a.read {
  display: inline-flex; align-items: center; gap: .4em;
  margin-top: 1.1rem; font-weight: 600; font-size: .85rem;
  color: var(--teal-light); letter-spacing: .04em;
}
.news-card a.read svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.news-card a.read:hover svg { transform: translateX(4px); }

.news-controls { display: none; }
.news-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(28,114,106,.6);
  background: rgba(15,82,77,.5);
  color: #eafdf9;
  display: grid; place-items: center; cursor: pointer;
  z-index: 10;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.news-arrow:hover { background: rgba(15,82,77,.85); border-color: var(--teal-light); }
.news-arrow svg { width: 20px; height: 20px; }
#newsPrev { left: 1.2rem; }
#newsNext { right: 1.2rem; }
.news-progress { display: none; }

.news-viewport { overflow: hidden; padding: 14px clamp(3.5rem, 6vw, 5.5rem) 14px; }
.news-track { display: flex; gap: 1.5rem; transition: transform .65s var(--ease); will-change: transform; }
.news-card { flex: 0 0 calc((100% - 3rem) / 3); }

/* ============================================================
   ATTORNEYS
   ============================================================ */
.attorneys { background: var(--cream); padding: 2.5rem 0 5.75rem; position: relative; }
.attorneys .section-head { max-width: 1180px; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.4rem; }
.section-head h2 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-top: .7rem; }
.section-head p { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }

.atty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  max-width: 1180px;
  margin-inline: auto;
}
.atty-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border: 1px solid rgba(20,40,76,.06);
}
.atty-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.atty-photo {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  position: relative;
  overflow: hidden;
}
.atty-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.atty-photo .monogram {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 5rem; font-weight: 700;
  color: rgba(255,255,255,.92);
  letter-spacing: .04em;
}
.atty-photo::after {
  content: "USC \2014 Trial Attorneys";
  position: absolute; bottom: 12px; left: 0; right: 0;
  text-align: center;
  font-family: var(--sans); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.atty-body { padding: 1.8rem 1.9rem 2rem; }
.atty-body .role { font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.atty-body h3 { font-size: 1.9rem; margin: .35rem 0 .8rem; }
.atty-body p { color: var(--muted); font-size: .97rem; margin-bottom: 1.1rem; }
.atty-body p:last-of-type { margin-bottom: 0; }
.atty-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.3rem; }
.atty-tags span {
  font-size: .72rem; font-weight: 600; letter-spacing: .05em;
  color: var(--navy); background: var(--cream-deep);
  padding: .35em .8em; border-radius: 999px;
}

.founders-note {
  max-width: 1180px;
  margin: 0 auto 2.6rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(20,40,76,.09);
  text-align: center;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.75;
}

/* ============================================================
   WHY WORK FOR US
   ============================================================ */
.why {
  position: relative;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(28,114,106,.25), transparent 60%),
    linear-gradient(180deg, var(--navy-deep), var(--navy));
  color: #e9eef6;
  padding: 5.75rem 0 6.25rem;
}
.why .section-head h2 { color: #fff; }
.why .section-head .eyebrow { color: var(--gold-soft); }
.why .section-head p { color: rgba(233,238,246,.72); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  display: block;
  text-decoration: none;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 2.1rem 1.6rem 2rem;
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  cursor: pointer;
}
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); border-color: rgba(198,168,101,.5); }
.why-icon {
  width: 54px; height: 54px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--navy-deep);
  display: grid; place-items: center;
  margin-bottom: 1.3rem;
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { color: #fff; font-size: 1.55rem; margin-bottom: .55rem; }
.why-card p { color: rgba(233,238,246,.72); font-size: .94rem; }

/* ============================================================
   CTA STRIP + FOOTER
   ============================================================ */
.cta-strip {
  position: relative;
  background: var(--teal);
  color: #eafdf9;
  text-align: center;
  padding: 4.5rem 1.5rem;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(to bottom, var(--navy), transparent);
  pointer-events: none;
}
.cta-strip::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(to top, var(--navy-deep), transparent);
  pointer-events: none;
}
.cta-strip h2 { color: #fff; font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.cta-strip p { max-width: 560px; margin: .9rem auto 1.8rem; color: rgba(234,253,249,.8); }

.footer { background: var(--navy-deep); color: rgba(233,238,246,.7); padding: 4rem 0 2rem; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { max-width: 320px; }
.footer-brand img { height: 42px; margin-bottom: 1.1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .92rem; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: .92rem; padding: .3rem 0; transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.6rem; font-size: .82rem; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.show { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .news-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: grid; place-items: center;
    position: relative; z-index: 2;
    width: 44px; height: 44px; border-radius: 6px;
    background: rgba(255,255,255,.9); border: none; cursor: pointer;
  }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ""; display: block; width: 20px; height: 2px; background: var(--navy); position: relative;
  }
  .nav-toggle span::before { position: absolute; top: -6px; }
  .nav-toggle span::after { position: absolute; top: 6px; }
  .mobile-menu {
    position: fixed; inset: 0; z-index: 99;
    background: var(--navy-deep);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1.6rem;
    opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
    overflow-y: auto; padding: 6rem 1.5rem 3rem;
  }
  .mobile-menu.open { opacity: 1; pointer-events: auto; }
  .mobile-menu a { color: #fff; font-family: var(--serif); font-size: 2rem; }
  .mobile-menu .close { position: absolute; top: 1.4rem; right: 1.6rem; font-size: 2rem; color: #fff; background: none; border: none; cursor: pointer; }

  .mobile-dropdown { display: flex; flex-direction: column; align-items: center; }
  .mobile-dropdown-toggle {
    display: flex; align-items: center; gap: .5rem;
    background: none; border: none; cursor: pointer;
    color: #fff; font-family: var(--serif); font-size: 2rem;
  }
  .mobile-dropdown-toggle .chev { width: 18px; height: 18px; transition: transform .3s var(--ease); }
  .mobile-dropdown.open .mobile-dropdown-toggle .chev { transform: rotate(180deg); }
  .mobile-dropdown-panel {
    max-height: 0; overflow: hidden;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    transition: max-height .4s var(--ease), margin .4s var(--ease);
    margin-top: 0;
  }
  .mobile-dropdown.open .mobile-dropdown-panel { max-height: 28rem; margin-top: 1.2rem; }
  .mobile-dropdown-panel a {
    font-family: var(--sans); font-size: .95rem; font-weight: 600;
    letter-spacing: .04em; text-transform: uppercase;
    color: rgba(255,255,255,.72); text-align: center;
  }
  .mobile-dropdown-panel a:hover { color: #fff; }

  .atty-grid { grid-template-columns: 1fr; max-width: 460px; }
  .news-card { flex: 0 0 100%; }
  .teal { margin-top: -60px; }
  .hero-line { font-size: clamp(2rem, 9vw, 3rem); white-space: normal; }
  .hero-lines { height: 2.4em; }
}
