/* ==========================================================================
   Team Coreanito Mateos — stylesheet
   Design tokens transcribed from the Claude Design system
   "team-coreanito-mateos-design-system" (colors / spacing / typography / textures)
   ========================================================================== */

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

:root {
  /* colors */
  --color-green: #0a8e45;
  --color-green-dark: #066432;
  --color-red: #b2202d;
  --color-red-dark: #8a1823;
  --color-black: #000000;
  --color-white: #ffffff;

  --gray-950: #0a0a0a;
  --gray-900: #151515;
  --gray-800: #232323;
  --gray-700: #3a3a3a;
  --gray-500: #6b6b6b;
  --gray-300: #a8a8a8;
  --gray-100: #e8e8e8;
  --gray-50: #f5f5f4;

  /* spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  --radius-pill: 999px;
  --border-width: 2px;
  --container-max: 1200px;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --duration-fast: 120ms;
  --duration-normal: 220ms;

  /* typography */
  --font-display: 'Teko', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;

  --text-display-md: clamp(2rem, 3.5vw, 3rem);

  /* textures */
  --halftone-dark: radial-gradient(circle, rgba(0, 0, 0, .85) 1px, transparent 1.4px);
  --halftone-light: radial-gradient(circle, rgba(255, 255, 255, .85) 1px, transparent 1.4px);
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #000;
  font-family: var(--font-body);
  color: #000;
  overflow-x: hidden;
}

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

a { color: var(--color-green); text-decoration: none; }
a:hover { color: var(--color-red); }

h1, h2, h3, p, ul, blockquote, figure { margin: 0; }

.page { background: #fff; color: #000; overflow-x: hidden; }

/* ---------- keyframes ---------- */
@keyframes heroFigureIn {
  from { opacity: 0; transform: translateY(60px) scale(1.05); clip-path: inset(100% 0 0 0); }
  to   { opacity: 1; transform: translateY(0) scale(1); clip-path: inset(0 0 0 0); }
}
@keyframes heroLineIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
  0%, 100% { opacity: .55; }
  50%      { opacity: .95; }
}
@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  border: var(--border-width) solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out);
}
.btn--lg { padding: 17px 36px; font-size: 14px; }
.btn--md { padding: 11px 22px; font-size: 12px; letter-spacing: .06em; }

.btn-red-solid {
  background: var(--color-red);
  color: #fff;
  border-color: var(--color-red);
}
.btn-red-solid:hover { background: var(--color-red-dark); color: #fff; }

.btn-red-invert {
  background: var(--color-red);
  color: #fff;
  border-color: var(--color-red);
}
.btn-red-invert:hover { background: #fff; color: var(--color-red); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover { background: #fff; color: #000; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000;
  border-bottom: var(--border-width) solid var(--color-red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 12px clamp(16px, 4vw, 48px);
}
.site-header__logo { display: flex; align-items: center; }
.site-header__logo img { height: 46px; }
.site-header__logo .logo-fallback { font-size: 22px; }

.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); flex-wrap: wrap; }
.nav-link {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav-link:hover { color: var(--color-green); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: #000;
  overflow: hidden;
  padding: clamp(48px, 7vw, 90px) clamp(16px, 4vw, 48px) 0;
}
.hero__shape {
  position: absolute;
  top: -12%;
  right: -6%;
  width: min(58vw, 780px);
  height: 120%;
  background: var(--color-red);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  opacity: .9;
}
.hero__halftone { position: absolute; inset: 0; background: var(--halftone-dark); opacity: .5; pointer-events: none; }
.hero__grid {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(16px, 3vw, 48px);
  align-items: end;
}
.hero__copy { padding-bottom: clamp(40px, 6vw, 90px); }
.hero__badge {
  opacity: 0;
  animation: heroLineIn .7s .05s var(--ease-out) forwards;
  display: inline-block;
  background: var(--color-green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 22px;
}
.hero__title {
  opacity: 0;
  animation: heroLineIn .8s .18s var(--ease-out) forwards;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: .9;
  letter-spacing: .01em;
  color: #fff;
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero__title span { color: var(--color-green); }
.hero__sub {
  opacity: 0;
  animation: heroLineIn .8s .3s var(--ease-out) forwards;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: #e8e8e8;
  max-width: 46ch;
  margin: 0 0 32px;
}
.hero__actions {
  opacity: 0;
  animation: heroLineIn .8s .42s var(--ease-out) forwards;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: clamp(380px, 52vw, 660px);
}
.hero__glow {
  position: absolute;
  bottom: 6%;
  width: min(78%, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .22), transparent 68%);
  animation: glowPulse 4.5s ease-in-out infinite;
}
.hero__figure {
  position: relative;
  width: min(100%, 520px);
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .7));
  animation: heroFigureIn 1.15s .1s var(--ease-out) both;
}

/* ---------- marquee ---------- */
.marquee {
  background: #000;
  overflow: hidden;
  border-top: var(--border-width) solid var(--color-red);
  border-bottom: var(--border-width) solid var(--color-red);
  padding: 14px 0;
}
.marquee__track { display: flex; width: max-content; animation: marqueeSlide 28s linear infinite; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 34px;
  line-height: 1;
  color: #fff;
  letter-spacing: .06em;
  white-space: nowrap;
}
.marquee__group span:nth-child(2n) { color: var(--color-red); }
.marquee__group span:nth-child(4n) { color: var(--color-green); }

/* ---------- section heading (component) ---------- */
.section-heading { text-align: left; font-family: var(--font-body); }
.section-heading--center { text-align: center; }
.section-heading__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 8px;
}
.section-heading__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  font-size: var(--text-display-md);
  line-height: .95;
  margin: 0;
  color: #000;
}
.section-heading--dark .section-heading__title { color: #fff; }
.section-heading__accent { color: var(--color-green); }

/* ---------- about / coreanito ---------- */
.section-coreanito { background: #fff; padding: clamp(64px, 8vw, 120px) clamp(16px, 4vw, 48px); }
.about-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -18px;
  left: -18px;
  width: 120px;
  height: 120px;
  background: var(--color-green);
}
.about-image {
  position: relative;
  width: 100%;
  border: var(--border-width) solid #000;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.about-copy p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #333;
  margin: 24px 0 32px;
  max-width: 56ch;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2px;
  background: #000;
  border: var(--border-width) solid #000;
}
.stat { background: #fff; padding: 20px 18px; }
.stat__num { font-family: var(--font-display); font-size: 46px; line-height: .9; color: var(--color-red); }
.stat__label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #555; margin-top: 6px; }

/* ---------- quote sections ---------- */
.quote-section {
  position: relative;
  background: #000;
  padding: clamp(70px, 9vw, 130px) clamp(16px, 4vw, 48px);
  overflow: hidden;
}
.quote-section__bg {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
  opacity: .28;
  filter: grayscale(1);
}
.quote-section__halftone { position: absolute; inset: 0; background: var(--halftone-dark); opacity: .6; }
.quote-section blockquote {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.quote-section p {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  color: #fff;
}
.quote-section p span { color: var(--color-red); }
.quote-section footer {
  margin-top: 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-green);
}

.quote-section--red { background: var(--color-red); }
.quote-section--red .quote-section__halftone { background: var(--halftone-light); opacity: .35; }
.quote-section--red p { font-size: clamp(2rem, 4.4vw, 3.6rem); line-height: 1.02; }

/* ---------- credentials ---------- */
.section-credentials { background: #fff; padding: clamp(64px, 8vw, 110px) clamp(16px, 4vw, 48px); }
.credentials-wrap { max-width: var(--container-max); margin: 0 auto; }
.credentials-heading { margin-bottom: 44px; }
.credentials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; }
.credential-card {
  border: var(--border-width) solid #000;
  padding: 26px 22px;
  background: #fff;
  transition: background var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out);
}
.credential-card:hover { background: #000; color: #fff; }
.credential-card__title { font-family: var(--font-display); font-size: 30px; line-height: 1; color: var(--color-red); text-transform: uppercase; }
.credential-card__desc { font-size: 14px; line-height: 1.5; color: #555; margin-top: 10px; }
.credential-card--accent { background: var(--color-green); color: #fff; }
.credential-card--accent .credential-card__title { color: #fff; }
.credential-card--accent .credential-card__desc { color: #e6f5ec; }
.credential-card--accent:hover { background: var(--color-green-dark); color: #fff; }

/* ---------- philosophy ---------- */
.section-philosophy { background: #0a0a0a; padding: clamp(64px, 8vw, 110px) clamp(16px, 4vw, 48px); color: #fff; }
.philosophy-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.philosophy-copy p { font-size: 1.0625rem; line-height: 1.7; color: #c9c9c9; margin: 24px 0 0; max-width: 56ch; }
.philosophy-image-wrap { position: relative; }
.philosophy-image {
  width: 100%;
  border: var(--border-width) solid #fff;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.philosophy-tag {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--color-red);
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 26px;
  padding: 10px 20px;
}

/* ---------- programs ---------- */
.section-programs { background: #fff; padding: clamp(64px, 8vw, 110px) clamp(16px, 4vw, 48px); }
.programs-wrap { max-width: var(--container-max); margin: 0 auto; }
.programs-heading { margin-bottom: 44px; }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }

.program-card { font-family: var(--font-body); background: #fff; border: var(--border-width) solid #000; position: relative; }
.program-card__image-wrap { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #111; }
.program-card__image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.program-card__body { padding: 18px 20px; }
.program-card__title { font-family: var(--font-display); text-transform: uppercase; font-size: 28px; font-weight: 600; margin: 0 0 6px; color: #000; }
.program-card__desc { font-size: 14px; line-height: 1.5; color: #555; }

/* ---------- gallery ---------- */
.section-gallery { background: #000; padding: clamp(64px, 8vw, 110px) clamp(16px, 4vw, 48px); }
.gallery-wrap { max-width: 1240px; margin: 0 auto; }
.gallery-heading { margin-bottom: 44px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; }
.gallery-figure { margin: 0; overflow: hidden; border: var(--border-width) solid #fff; aspect-ratio: 16 / 9; }
.gallery-figure--wide { grid-column: span 2; min-width: 280px; }
.gallery-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease-out; }
.gallery-figure:hover img { transform: scale(1.06); }

/* ---------- testimonials ---------- */
.section-testimonials { background: #fff; padding: clamp(64px, 8vw, 110px) clamp(16px, 4vw, 48px); }
.testimonials-wrap { max-width: var(--container-max); margin: 0 auto; }
.testimonials-heading { margin-bottom: 48px; text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.testimonial-slot { border-top: 4px solid var(--color-red); padding-top: 28px; }
.testimonial-slot--green { border-top-color: var(--color-green); }

.testimonial-card { font-family: var(--font-body); text-align: center; max-width: 560px; margin: 0 auto; }
.testimonial-card__quote { font-size: 17px; line-height: 1.6; color: #222; font-style: italic; margin: 0 0 12px; }
.testimonial-card__name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

/* ---------- pricing ---------- */
.section-pricing { background: #fff; padding: clamp(64px, 8vw, 110px) clamp(16px, 4vw, 48px); }
.pricing-wrap { max-width: 1080px; margin: 0 auto; }
.pricing-heading { margin-bottom: 44px; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }

.pricing-card {
  font-family: var(--font-body);
  background: #fff;
  color: #000;
  border: var(--border-width) solid #000;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-card--featured { background: #000; color: #fff; }
.pricing-card__name { font-family: var(--font-display); text-transform: uppercase; font-size: 26px; font-weight: 600; }
.pricing-card__price-row { display: flex; align-items: baseline; gap: 4px; margin-top: 4px; }
.pricing-card__price { font-family: var(--font-display); font-size: 48px; font-weight: 600; color: var(--color-red); }
.pricing-card__period { font-size: 13px; color: #777; }
.pricing-card--featured .pricing-card__period { color: #aaa; }
.pricing-card__features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.pricing-card__features li { display: flex; gap: 8px; align-items: baseline; }
.pricing-card__check { color: var(--color-green); font-weight: 700; }
.pricing-card__cta {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  border: var(--border-width) solid transparent;
  padding: 13px 28px;
  font-size: 13px;
  border-radius: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration-fast) var(--ease-out);
}
.pricing-card__cta:hover { transform: translateY(-1px); }
.pricing-card__cta--primary { background: var(--color-red); color: #fff; border-color: var(--color-red); }
.pricing-card__cta--outline { background: transparent; color: #fff; border-color: #fff; }

/* ---------- location ---------- */
.section-location { background: #0a0a0a; color: #fff; padding: clamp(64px, 8vw, 110px) clamp(16px, 4vw, 48px); }
.location-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.location-copy p { font-size: 1.0625rem; line-height: 1.7; color: #c9c9c9; margin: 24px 0 32px; max-width: 52ch; }
.schedule-list { border: var(--border-width) solid #fff; display: grid; grid-template-columns: 1fr; gap: 2px; background: #fff; }
.schedule-row { background: #0a0a0a; padding: 18px 20px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.schedule-row__day { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--color-green); }
.schedule-row__time { font-family: var(--font-display); font-size: 26px; line-height: 1; }
.map-wrap { border: var(--border-width) solid #fff; height: clamp(320px, 42vw, 460px); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.4) contrast(1.05); }

/* ---------- final CTA ---------- */
.section-final-cta {
  position: relative;
  background: #000;
  padding: clamp(70px, 9vw, 130px) clamp(16px, 4vw, 48px);
  overflow: hidden;
}
.final-cta-content { position: relative; max-width: 820px; margin: 0 auto; text-align: center; }
.final-cta-content h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: .95;
  color: #fff;
  margin: 0 0 20px;
}
.final-cta-content h2 span { color: var(--color-green); }
.final-cta-content p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #d8d8d8;
  margin: 0 auto 34px;
  max-width: 52ch;
}
.final-cta-content .btn--lg { padding: 18px 40px; font-size: 14px; letter-spacing: .05em; }

/* ---------- contact ---------- */
.section-contact { background: #fff; padding: clamp(64px, 8vw, 110px) clamp(16px, 4vw, 48px); }
.contact-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-list { display: flex; flex-direction: column; gap: 2px; background: #000; border: var(--border-width) solid #000; margin-top: 32px; }
.contact-row {
  background: #fff;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: #000;
  transition: background var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out);
}
a.contact-row:hover { background: var(--color-green); color: #fff; }
.contact-row__label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-row__value { font-family: var(--font-display); font-size: 24px; line-height: 1; }
.contact-row__value--text { font-family: var(--font-body); font-size: 15px; font-weight: 600; }
.contact-row__value--addr { text-align: right; max-width: 26ch; }
.contact-row__social { display: flex; gap: 16px; align-items: center; }
.contact-row__social a { font-size: 14px; font-weight: 700; color: var(--color-red); }

.contact-panel { background: #000; padding: clamp(24px, 3vw, 40px); border: var(--border-width) solid #000; }
.contact-panel__title { font-family: var(--font-display); text-transform: uppercase; font-size: 34px; line-height: 1; color: #fff; margin-bottom: 6px; }
.contact-panel__sub { font-size: 14px; color: #a8a8a8; margin: 0 0 24px; }

.success-panel { display: none; border: var(--border-width) solid var(--color-green); padding: 28px 22px; color: #fff; }
.success-panel--visible { display: block; }
.success-panel__title { font-family: var(--font-display); text-transform: uppercase; font-size: 30px; line-height: 1; color: var(--color-green); margin-bottom: 8px; }
.success-panel p { font-size: 14px; line-height: 1.6; color: #c9c9c9; margin: 0 0 20px; }
.success-panel button {
  background: transparent;
  color: #fff;
  border: var(--border-width) solid #fff;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out);
}
.success-panel button:hover { background: #fff; color: #000; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form--hidden { display: none; }

.field { display: flex; flex-direction: column; gap: 6px; font-family: var(--font-body); }
.field__label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; }
.field__input, .field textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  border: var(--border-width) solid #fff;
  background: transparent;
  color: #fff;
  outline: none;
}
.field textarea { resize: vertical; }
.field__input::placeholder, .field textarea::placeholder { color: #8a8a8a; }

.contact-form__submit {
  background: var(--color-red);
  color: #fff;
  border: var(--border-width) solid var(--color-red);
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out);
}
.contact-form__submit:hover { background: #fff; color: var(--color-red); }

/* ---------- footer ---------- */
.site-footer { background: #000; color: #fff; padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px) 32px; border-top: var(--border-width) solid var(--color-red); }
.footer-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}
.site-footer__logo img { height: 84px; width: auto; }
.site-footer__logo .logo-fallback { font-size: 34px; }
.site-footer__tagline { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.5rem, 2.4vw, 2.1rem); line-height: 1.05; color: #fff; }
.site-footer__tagline span { color: var(--color-green); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: #a8a8a8; }
.footer-contact a { color: #fff; }
.footer-bottom { max-width: var(--container-max); margin: 36px auto 0; border-top: 1px solid #232323; padding-top: 20px; font-size: 12px; color: #6b6b6b; }

/* ---------- scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- missing-image placeholder ---------- */
.img-missing {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  min-height: 80px;
  padding: 12px;
  background: repeating-linear-gradient(45deg, #1a1a1a, #1a1a1a 10px, #111 10px, #111 20px);
  color: #9a9a9a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px dashed #555;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero__badge, .hero__title, .hero__sub, .hero__actions, .hero__figure { animation: none; opacity: 1; }
  .marquee__track, .hero__glow { animation: none; }
}
