/* =============================================
   ANA ELIAS CONSULTING — Shared Stylesheet
   Color Palette: Deep Navy + Champagne Gold
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy:       #1a2744;
  --navy-dark:  #111b33;
  --navy-mid:   #243156;
  --gold:       #c9a05e;
  --gold-light: #dbb97a;
  --gold-pale:  #f4ead9;
  --cream:      #faf8f4;
  --white:      #ffffff;
  --text-dark:  #1a1a2e;
  --text-mid:   #4a4a6a;
  --text-light: #7a7a9a;
  --border:     #e8e2d6;
  --shadow-sm:  0 2px 12px rgba(26,39,68,.08);
  --shadow-md:  0 8px 32px rgba(26,39,68,.14);
  --shadow-lg:  0 20px 60px rgba(26,39,68,.18);
  --radius:     4px;
  --radius-lg:  10px;
  --transition: .28s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p { color: var(--text-mid); font-weight: 400; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}

.gold { color: var(--gold); }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 100px 0; }

/* ── DIVIDER ── */
.gold-rule {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.2rem 0 2rem;
  border: none;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.2rem;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,160,94,.35);
}

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

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  background: rgba(17,27,51,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,160,94,.15);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
}

.nav-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
}

.nav-logo-sub {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.55);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: .6rem; }

.footer-col ul li a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .88rem;
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-col p {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  margin-bottom: .5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #1e3a5f 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(201,160,94,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,160,94,.05) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,160,94,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,160,94,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.hero-inner .eyebrow { font-size: .75rem; }

.hero-inner h1 {
  color: var(--white);
  margin-bottom: 1.4rem;
}

.hero-inner h1 span { color: var(--gold); }

.hero-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  bottom: 3rem; right: 3rem;
  z-index: 2;
  background: rgba(201,160,94,.12);
  border: 1px solid rgba(201,160,94,.3);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.6rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.hero-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-badge .label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  display: block;
  margin-top: .35rem;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: var(--border);
}

.stat-item {
  padding: 2.4rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-item .label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── SERVICES SECTION ── */
.services { background: var(--cream); }

.section-header { margin-bottom: 3.5rem; }

.section-header.center { text-align: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 2.4rem 2rem;
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  background: var(--navy-dark);
}

.service-card:hover h3,
.service-card:hover p { color: var(--white); }

.service-card:hover .service-icon { background: rgba(201,160,94,.15); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: var(--transition);
}

.service-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

.service-card h3 { font-size: 1.1rem; margin-bottom: .7rem; transition: color var(--transition); }
.service-card p  { font-size: .88rem; line-height: 1.65; transition: color var(--transition); }

/* ── WHO WE SERVE ── */
.who-serve {
  background: var(--navy);
  color: var(--white);
}

.who-serve h2 { color: var(--white); }
.who-serve p  { color: rgba(255,255,255,.7); }

.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.serve-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,160,94,.15);
  border-radius: var(--radius);
  transition: var(--transition);
}

.serve-item:hover { background: rgba(255,255,255,.09); }

.serve-check {
  width: 24px; height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(201,160,94,.2);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

.serve-check svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 2.5; }

.serve-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .2rem;
}

.serve-item p { font-size: .83rem; color: rgba(255,255,255,.55); }

/* ── QUOTE / CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  color: var(--white);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,160,94,.08) 0%, transparent 70%);
}

.cta-band > .container { position: relative; z-index: 2; }

.cta-band h2 { color: var(--white); margin-bottom: 1rem; }

.cta-band p { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto 2rem; }

/* ── ABOUT PAGE ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(201,160,94,.07) 0%, transparent 70%);
}

.page-hero > .container { position: relative; z-index: 2; }

.page-hero h1 { color: var(--white); margin-bottom: .8rem; }

.page-hero p { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── FIRM STORY ── */
.firm-story { background: var(--white); }

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-text p { margin-bottom: 1.2rem; }

.story-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
}

.highlight-box .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.highlight-box .label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.story-visual {
  position: relative;
}

.story-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-img-wrap img { width: 100%; display: block; }

.story-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 1.4rem 1.8rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.story-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.story-badge .label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: block;
  margin-top: .3rem;
}

/* ── LEADERSHIP ── */
.leadership { background: var(--cream); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-card-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--navy);
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s ease;
}

.team-card:hover .team-card-photo img { transform: scale(1.04); }

.team-card-body { padding: 1.8rem; }

.team-card-body h3 { font-size: 1.35rem; margin-bottom: .25rem; }

.team-card-title {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.team-card-body p { font-size: .88rem; line-height: 1.65; }

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.2rem;
}

.tag {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: .3rem .75rem;
  background: var(--gold-pale);
  color: var(--navy);
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* ── EXPERTISE SECTION ── */
.expertise { background: var(--white); }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.expertise-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  background: var(--cream);
}

.expertise-item:hover {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.expertise-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .4;
  line-height: 1;
  min-width: 2.5rem;
}

.expertise-item h4 {
  font-size: .95rem;
  margin-bottom: .4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.expertise-item p { font-size: .83rem; }

/* ── INQUIRY PAGE ── */
.inquiry-section { background: var(--cream); }

.inquiry-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.inquiry-info h2 { margin-bottom: 1rem; }

.inquiry-info p { margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.contact-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}

.contact-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

.contact-detail-text .label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: .2rem;
}

.contact-detail-text a,
.contact-detail-text span {
  font-size: .95rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
}

.contact-detail-text a:hover { color: var(--gold); }

/* ── FORM ── */
.inquiry-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.4rem;
}

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

label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: .5rem;
}

input, select, textarea {
  width: 100%;
  padding: .85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: var(--transition);
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,160,94,.12);
}

textarea { resize: vertical; min-height: 130px; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234a4a6a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.char-counter {
  text-align: right;
  font-size: .75rem;
  color: var(--text-light);
  margin-top: .4rem;
}

.char-counter.warn { color: #c0392b; }

.form-submit { width: 100%; padding: 1rem; font-size: .88rem; margin-top: .5rem; }

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17,27,51,.7);
  backdrop-filter: blur(4px);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
  animation: popIn .35s cubic-bezier(.34,1.56,.64,1) forwards;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}

.modal-icon {
  width: 64px; height: 64px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}

.modal-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 2; }

.modal-box h3 { font-size: 1.5rem; margin-bottom: .7rem; }

.modal-box p { color: var(--text-mid); margin-bottom: 1.8rem; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .story-layout { gap: 3rem; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(201,160,94,.15);
  }

  .nav-links.open { display: flex; }
  .nav-cta { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .story-layout { grid-template-columns: 1fr; }
  .story-visual { display: none; }
  .team-grid { grid-template-columns: 1fr; max-width: 440px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .inquiry-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .story-highlights { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .inquiry-form-wrap { padding: 1.8rem 1.4rem; }
}
