/* ═══════════════════════════════════════════════════
   ÉLAN VITAL DRESSAGE — Global Stylesheet v2.0
   Mobile-first · Luxury Equestrian · Photo-led
═══════════════════════════════════════════════════ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --tobacco:     #1A1208;
  --tobacco-mid: #251A0E;
  --ivory:       #F5F0E6;
  --warm-white:  #FDFAF5;
  --gold:        #B8935A;
  --gold-light:  #D4AD74;
  --text-dark:   #1E1710;
  --text-body:   #3A2E24;
  --text-light:  #F0E6D4;
  --border:      rgba(184,147,90,0.15);
  --nav-h:       64px;
}

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

/* ── OVERFLOW & BOX-SIZING GLOBAL GUARD ── */
*, *::before, *::after { box-sizing: border-box; }
section, div, header, main, footer, article {
  max-width: 100%;
}
img { max-width: 100%; display: block; }

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; }
h1 { font-size: clamp(2.4rem, 7vw, 4.8rem); font-weight: 500; line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 500; line-height: 1.12; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 500; line-height: 1.2; }
em { font-style: italic; color: var(--gold-light); }

p { font-size: clamp(0.9rem, 2.2vw, 1rem); line-height: 1.85; color: var(--text-body); }

/* ── UTILITY ── */
.eyebrow {
  font-size: clamp(0.5rem, 1.5vw, 0.58rem);
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.rule { width: 44px; height: 1px; background: var(--gold); margin: 1.2rem 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(0.55rem, 1.5vw, 0.62rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-gold { background: var(--gold); color: var(--tobacco); }
.btn-gold:hover { background: var(--gold-light); }
.btn-ghost { border: 1px solid rgba(184,147,90,0.4); color: var(--gold-light); }
.btn-ghost:hover { border-color: var(--gold); background: rgba(184,147,90,0.08); }
.btn-dark { background: var(--tobacco); color: var(--ivory); }
.btn-dark:hover { background: var(--tobacco-mid); }

/* Full-width on mobile */
@media (max-width: 600px) {
  .btn { width: 100%; justify-content: center; padding: 1rem; }
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }
@media (min-width: 1280px) { .container { padding: 0 3.5rem; } }

/* ═══════════════════════════════════════════════════
   NAVIGATION — Dropdown + Hamburger
═══════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  height: var(--nav-h);
  background: rgba(26,18,8,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) { .site-nav { padding: 0 3rem; } }

/* Logo */
.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1.1;
}
.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: var(--gold-light);
  display: block;
}
.nav-logo-sub {
  font-size: 0.44rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(200,185,154,0.45);
  display: block;
}

/* Desktop nav list */
.nav-menu {
  display: none;
  list-style: none;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
}
@media (min-width: 1024px) {
  .nav-menu { display: flex; }
}

.nav-menu > li {
  position: relative;
}
.nav-menu > li > a {
  color: rgba(240,230,212,0.7);
  text-decoration: none;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 0.9rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.25s;
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active,
.nav-menu > li:hover > a {
  color: var(--gold-light);
}
.nav-menu > li > a .caret {
  font-size: 0.5rem;
  opacity: 0.5;
  transition: transform 0.2s;
}
.nav-menu > li:hover > a .caret { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(var(--nav-h) - 4px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(22,15,6,0.98);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  min-width: 180px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 10001;
}
.nav-menu > li:hover .nav-dropdown,
.nav-menu > li:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,230,212,0.65);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-dropdown a:hover {
  color: var(--gold-light);
  background: rgba(184,147,90,0.08);
}

/* Nav right actions */
.nav-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1024px) { .nav-actions { display: flex; } }

.nav-actions a {
  color: rgba(200,185,154,0.45);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s;
}
.nav-actions a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold);
  color: var(--tobacco) !important;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Hamburger button */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .nav-hamburger { display: none; } }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.nav-mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(22,15,6,0.99);
  backdrop-filter: blur(14px);
  z-index: 10001;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.3s, visibility 0.3s;
  pointer-events: none;
  border-bottom: 1px solid var(--border);
}
.nav-mobile.open {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile-list {
  list-style: none;
  padding: 1rem 0 2rem;
}
.nav-mobile-item {
  border-bottom: 1px solid rgba(184,147,90,0.08);
}
.nav-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  color: rgba(240,230,212,0.8);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-mobile-top:hover, .nav-mobile-top.active { color: var(--gold-light); }
.nav-mobile-caret {
  font-size: 0.5rem;
  color: var(--gold);
  transition: transform 0.25s;
}
.nav-mobile-item.open .nav-mobile-caret { transform: rotate(180deg); }

.nav-mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(184,147,90,0.04);
}
.nav-mobile-item.open .nav-mobile-sub { max-height: 400px; }
.nav-mobile-sub a {
  display: block;
  padding: 0.7rem 2rem;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240,230,212,0.55);
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(184,147,90,0.05);
}
.nav-mobile-sub a:hover { color: var(--gold-light); }

.nav-mobile-cta {
  margin: 1.5rem 1.5rem 0;
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--tobacco);
  padding: 0.9rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════
   PAGE HERO SYSTEM — consistent across all pages
═══════════════════════════════════════════════════ */
.page-top { padding-top: var(--nav-h); }

.page-hero {
  position: relative;
  min-height: clamp(320px, 60vw, 560px);
  background: var(--tobacco);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero.hero-tall { min-height: clamp(420px, 70vw, 680px); }
.page-hero.hero-short { min-height: clamp(240px, 40vw, 380px); }

/* ── PHOTO PLACEMENT SYSTEM ──
   Each hero has a named photo slot.
   Replace the background-image URL to swap photos.
   Adjust object-position to reframe crops. */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 30%; /* DEFAULT — override per page */
  opacity: 0.35;
  transition: opacity 0.3s;
}

/* PHOTO LABELS — see HTML for named comments */
/* HOME_HERO_IMAGE         → .page-hero.home-hero .hero-photo-bg */
/* TRAINING_HERO_IMAGE     → .page-hero.training-hero .hero-photo-bg */
/* SALES_HERO_IMAGE        → .page-hero.sales-hero .hero-photo-bg */
/* CLINICS_HERO_IMAGE      → .page-hero.clinics-hero .hero-photo-bg */
/* VIRTUAL_LESSONS_HERO    → .page-hero.vl-hero .hero-photo-bg */
/* ABOUT_BLAIRE_HERO       → .page-hero.about-hero .hero-photo-bg */
/* FACILITY_HERO           → .page-hero.facility-hero .hero-photo-bg */
/* RESULTS_HERO            → .page-hero.results-hero .hero-photo-bg */
/* CONTACT_HERO            → .page-hero.contact-hero .hero-photo-bg */

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,18,8,0.9) 0%,
    rgba(26,18,8,0.4) 50%,
    rgba(26,18,8,0.2) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2.5rem 1.5rem 3rem;
  max-width: 800px;
}
@media (min-width: 768px) {
  .hero-inner { padding: 4rem 2.5rem 4rem; }
}
@media (min-width: 1280px) {
  .hero-inner { padding: 4rem 3.5rem 5rem; }
}

.hero-inner h1 { color: var(--ivory); margin-bottom: 1rem; }
.hero-inner .hero-sub {
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  color: rgba(240,230,212,0.8);
  max-width: 580px;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.hero-inner .eyebrow { color: var(--gold); }
.hero-inner .eyebrow::before { background: var(--gold); }

/* ═══════════════════════════════════════════════════
   SECTION SYSTEM
═══════════════════════════════════════════════════ */
.section { padding: clamp(3rem, 8vw, 5.5rem) 0; }
.section-dark { background: var(--tobacco); color: var(--text-light); }
.section-dark p { color: rgba(240,230,212,0.8); }
.section-dark .eyebrow::before { background: var(--gold); }
.section-mid { background: var(--tobacco-mid); }
.section-ivory { background: var(--ivory); }
.section-white { background: var(--warm-white); }

.section-header { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-header.centered { text-align: center; }
.section-header.centered .eyebrow { justify-content: center; }
.section-header.centered .eyebrow::before { display: none; }
.section-header.centered .eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ── EDITORIAL IMAGE BLOCKS ── */
.img-block {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Standard ratios */
.img-block.ratio-16-9  { aspect-ratio: 16/9; }
.img-block.ratio-4-3   { aspect-ratio: 4/3; }
.img-block.ratio-4-5   { aspect-ratio: 4/5; }
.img-block.ratio-3-2   { aspect-ratio: 3/2; }
.img-block.ratio-1-1   { aspect-ratio: 1/1; }
.img-block.ratio-wide  { aspect-ratio: 21/9; }

/* Full-width editorial */
.img-editorial {
  width: 100%;
  height: clamp(280px, 45vw, 520px);
  overflow: hidden;
  position: relative;
}
.img-editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Two column image/text */
.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .split-layout { grid-template-columns: 1fr 1fr; }
  .split-layout.flip { direction: rtl; }
  .split-layout.flip > * { direction: ltr; }
}
.split-image {
  height: clamp(280px, 50vw, 520px);
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-content {
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) { .card-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .card-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 1100px) { .card-grid.cols-4 { grid-template-columns: repeat(4,1fr); } }

.card {
  background: white;
  border-bottom: 3px solid var(--gold);
  overflow: hidden;
}
.card-dark { background: var(--tobacco-mid); }
.card-img {
  height: clamp(200px, 40vw, 280px);
  overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-body h3 { color: var(--text-dark); margin-bottom: 0.5rem; }
.card-dark .card-body h3 { color: var(--ivory); }
.card-body p { font-size: 0.9rem; margin-bottom: 1rem; }

/* ── TESTIMONIAL CARDS ── */
.testimonial-card {
  background: white;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-left: 3px solid var(--gold);
  position: relative;
}
.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.testimonial-card .attribution {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-card .expand-btn {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-top: 0.8rem;
  display: block;
}
.testimonial-card .full-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.85;
}
.testimonial-card .full-text.open { max-height: 600px; }

/* ── CTA BANNER ── */
.cta-banner {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: var(--tobacco-mid);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,147,90,0.08) 0%, transparent 65%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--ivory); margin-bottom: 0.8rem; }
.cta-banner p { color: rgba(240,230,212,0.75); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--tobacco);
  border-top: 1px solid var(--border);
  padding: clamp(2.5rem, 6vw, 4rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0 1.5rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding: 0 3rem 3rem; } }

.f-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.f-tag {
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(200,185,154,0.35);
  margin-bottom: 0.8rem;
}
.f-desc { font-size: 0.82rem; color: rgba(200,185,154,0.45); line-height: 1.7; margin-bottom: 1rem; }
.f-social { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.f-social a { font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(200,185,154,0.4); text-decoration: none; transition: color 0.25s; }
.f-social a:hover { color: var(--gold-light); }
.f-col-title { font-size: 0.52rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.f-links { list-style: none; }
.f-links li { margin-bottom: 0.5rem; }
.f-links a { font-size: 0.82rem; color: rgba(200,185,154,0.45); text-decoration: none; transition: color 0.25s; }
.f-links a:hover { color: var(--gold-light); }
.f-bottom {
  border-top: 1px solid var(--border);
  padding: 1.2rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.f-bottom span { font-size: 0.6rem; color: rgba(200,185,154,0.25); letter-spacing: 0.1em; }
.f-review { font-size: 0.6rem; color: rgba(200,185,154,0.35); text-decoration: none; letter-spacing: 0.1em; transition: color 0.25s; }
.f-review:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════════ */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lb-overlay.active { display: flex; }
.lb-img-wrap {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}
.lb-close {
  position: fixed;
  top: 1rem;
  right: 1.2rem;
  color: var(--gold-light);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
  background: none;
  border: none;
  padding: 0.5rem;
}
.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,18,8,0.7);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.8rem 1rem;
  z-index: 10;
  transition: background 0.2s;
}
.lb-prev { left: 0.5rem; }
.lb-next { right: 0.5rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(184,147,90,0.2); }
.lb-caption {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200,185,154,0.55);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════
   MOBILE — Global fixes at 390px / 430px / 768px
═══════════════════════════════════════════════════ */
@media (max-width: 767px) {
  /* Prevent overflow */
  .container { padding: 0 1.2rem; }
  
  /* Stack all grids */
  .split-layout { grid-template-columns: 1fr !important; direction: ltr !important; }
  .card-grid { grid-template-columns: 1fr !important; }
  
  /* Hero adjustments */
  .page-hero { min-height: clamp(300px, 60vw, 420px) !important; }
  .hero-inner { padding: 2rem 1.2rem 2.5rem !important; }
  
  /* Section padding */
  .section { padding: 2.5rem 0; }
  
  /* Images */
  .split-image { height: clamp(220px, 50vw, 320px); }
  .img-editorial { height: clamp(220px, 50vw, 320px); }
  
  /* Cards */
  .card-img { height: clamp(180px, 45vw, 250px); }
  
  /* Typography tighten */
  p { font-size: 0.9rem; }
  
  /* No horizontal scroll */
  body { overflow-x: hidden; }
  img { max-width: 100%; }
  
  /* Footer */
  .f-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 430px) {
  .hero-inner h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .section { padding: 2rem 0; }
}
