/* ============================================================
   Ecomm Producers — modern marketing agency
   Cabinet Grotesk display · Satoshi body · Coral accent
   ============================================================ */

:root {
  --ink:           #0e0e0e;
  --ink-2:         #1a1a1a;
  --ink-soft:      #2b2b2b;
  --ink-muted:     #6e6e6e;
  --rule:          #e3e0d8;
  --rule-dark:     #2c2c2c;

  --paper:         #f7f5f0;
  --paper-2:       #ecebe5;
  --paper-3:       #ffffff;

  --accent:        #ff5c2b;
  --accent-deep:   #e34614;
  --accent-soft:   #ffe1d3;
  --accent-tint:   #fff3ec;

  --green:         #14a86b;

  --font-display:  'Cabinet Grotesk', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
  --font-body:     'Satoshi', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
  --font-mono:     'JetBrains Mono', ui-monospace, 'Courier New', monospace;

  --gutter:        clamp(20px, 4vw, 56px);
  --max:           1320px;
  --section-y:     clamp(72px, 9vw, 132px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01';
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

::selection { background: var(--accent); color: var(--paper-3); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.disp { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.026em; line-height: 0.94; color: var(--ink); }
.disp.t-2xl { font-size: clamp(56px, 8.5vw, 132px); line-height: 0.92; letter-spacing: -0.03em; }
.disp.t-xl  { font-size: clamp(44px, 6vw, 88px); }
.disp.t-l   { font-size: clamp(34px, 4.4vw, 64px); }
.disp.t-m   { font-size: clamp(26px, 3vw, 44px); }
.disp.t-s   { font-size: clamp(20px, 2vw, 28px); }

.disp em { font-style: normal; color: var(--accent); }

.body-l { font-family: var(--font-body); font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; color: var(--ink-soft); font-weight: 400; }
.body-m { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--ink-soft); font-weight: 400; }
.body-s { font-family: var(--font-body); font-size: 14px; line-height: 1.55; color: var(--ink-muted); font-weight: 400; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--accent); }
.eyebrow.light { color: var(--accent); }
.eyebrow.muted { color: var(--ink-muted); }
.eyebrow.muted::before { background: var(--ink-muted); }

/* ============================================================
   LAYOUT
   ============================================================ */

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); position: relative; }

.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section-t { padding-top: var(--section-y); }
.section-b { padding-bottom: var(--section-y); }

.bg-paper { background: var(--paper); color: var(--ink); }
.bg-ink   { background: var(--ink); color: var(--paper); }
.bg-accent { background: var(--accent); color: var(--ink); }
.bg-paper-2 { background: var(--paper-2); }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px 0;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 32px; height: 32px;
  background: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  position: relative;
}
.brand-mark::before {
  content: '';
  position: absolute;
  inset: 8px 8px 8px auto;
  width: 8px; height: 16px;
  background: var(--accent);
  border-radius: 2px;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 8px auto 8px 8px;
  width: 8px; height: 16px;
  background: var(--paper);
  border-radius: 2px;
}
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--ink); letter-spacing: -0.018em; }

.nav-links { display: flex; gap: 32px; align-items: center; justify-content: center; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--accent-deep); }
.nav-links a.is-current { color: var(--ink); font-weight: 600; }
.nav-links a.is-current::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--accent); }

.nav-cta {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 22px;
  border-radius: 10px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s ease, transform 0.18s ease;
}
.nav-cta::after { content: '→'; font-weight: 500; transition: transform 0.2s ease; }
.nav-cta:hover { background: var(--accent); color: var(--ink); }
.nav-cta:hover::after { transform: translateX(3px); }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 10px;
  border: 0;
  background: var(--accent);
  color: var(--ink);
  transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn::after { content: '→'; font-weight: 500; transition: transform 0.2s ease; }
.btn:hover { background: var(--accent-deep); color: var(--paper); transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(255, 92, 43, 0.45); }
.btn:hover::after { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  padding: 15px 26px;
  border-radius: 10px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-light {
  background: var(--paper);
  color: var(--ink);
}
.btn-light:hover { background: var(--accent); color: var(--ink); }

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}
.btn-dark:hover { background: var(--accent); color: var(--ink); transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.4); }

/* ============================================================
   HERO
   ============================================================ */

.hero { padding: clamp(56px, 8vw, 120px) 0 clamp(64px, 8vw, 140px); position: relative; overflow: hidden; background: var(--ink); color: var(--paper); }

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle at center, rgba(255, 92, 43, 0.18), transparent 60%);
  pointer-events: none;
}

.hero .wrap { z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 2px; background: var(--accent); }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.6vw, 112px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 32px;
}
.hero-headline em { font-style: normal; color: var(--accent); }
.hero-headline .strike { text-decoration-line: line-through; text-decoration-color: rgba(255, 92, 43, 0.6); text-decoration-thickness: 4px; }

.hero-deck {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: rgba(247, 245, 240, 0.78);
  max-width: 56ch;
  margin-bottom: 40px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-trust {
  display: flex; gap: clamp(20px, 3vw, 40px); flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(247, 245, 240, 0.16);
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(247, 245, 240, 0.6);
}
.hero-trust strong { color: var(--paper); font-weight: 600; }

/* Hero visual — agency dashboard mockup */
.hero-visual {
  position: relative;
  display: grid;
  gap: 16px;
}

.dash-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.dash-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--rule); margin-bottom: 14px; }
.dash-title { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: -0.005em; }
.dash-status { font-family: var(--font-body); font-size: 11.5px; color: var(--green); display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.dash-status::before { content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }

.dash-bookings { display: grid; gap: 10px; }
.booking-row { display: grid; grid-template-columns: 56px 1fr auto; gap: 14px; align-items: center; padding: 8px 0; }
.booking-time { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink); letter-spacing: -0.01em; }
.booking-meta { font-family: var(--font-body); font-size: 14px; }
.booking-name { font-weight: 600; color: var(--ink); display: block; line-height: 1.2; }
.booking-job { font-size: 12px; color: var(--ink-muted); margin-top: 2px; }
.booking-tag { font-family: var(--font-body); font-size: 10.5px; font-weight: 700; padding: 4px 8px; border-radius: 4px; letter-spacing: 0.04em; text-transform: uppercase; }
.booking-tag.es { background: var(--accent-soft); color: var(--accent-deep); }
.booking-tag.en { background: #e2f3eb; color: #0a7a4a; }

.dash-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 14px; margin-top: 4px; border-top: 1px solid var(--rule); font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.dash-total span:last-child { font-size: 22px; color: var(--accent-deep); letter-spacing: -0.01em; }

.dash-secondary {
  background: var(--paper-2);
  color: var(--ink);
  border-radius: 14px;
  padding: 18px 22px;
  display: grid; grid-template-columns: 1fr auto; align-items: center;
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.3);
}
.dash-secondary-text { font-family: var(--font-body); font-size: 13.5px; color: var(--ink-soft); line-height: 1.4; }
.dash-secondary-text strong { color: var(--ink); }
.dash-secondary-stat { font-family: var(--font-display); font-weight: 800; font-size: 38px; color: var(--accent-deep); letter-spacing: -0.02em; line-height: 1; }
.dash-secondary-stat span { font-size: 14px; color: var(--ink-muted); display: block; font-weight: 500; margin-top: 4px; letter-spacing: 0; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 480px; }
}

/* ============================================================
   STATS BAND
   ============================================================ */

.stats {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: clamp(56px, 6vw, 88px) 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }

.stat {
  padding: 0 clamp(16px, 2.5vw, 32px);
  border-right: 1px solid var(--rule);
}
.stat:last-child { border-right: 0; }
.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--ink);
  letter-spacing: -0.026em;
  line-height: 0.95;
  margin-bottom: 8px;
  display: block;
}
.stat-num em { font-style: normal; color: var(--accent); }
.stat-meta {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-muted);
  display: block;
}

@media (max-width: 880px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .stat { border-right: 0; padding: 0 16px; }
  .stat:nth-child(odd) { border-right: 1px solid var(--rule); }
  .stat:first-child, .stat:nth-child(3) { padding-left: 0; }
}
@media (max-width: 540px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0 !important; padding: 18px 0; border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: 0; }
}

/* ============================================================
   SECTION HEAD
   ============================================================ */

.sec-head { display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 4vw, 80px); align-items: end; padding-bottom: clamp(40px, 5vw, 64px); margin-bottom: clamp(40px, 5vw, 64px); border-bottom: 1px solid var(--rule); }
.sec-head .eyebrow { padding-bottom: 8px; }
.sec-head h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 4.4vw, 64px); line-height: 0.96; letter-spacing: -0.024em; max-width: 22ch; }
.sec-head h2 em { font-style: normal; color: var(--accent); }
.sec-head .lede { font-family: var(--font-body); font-size: clamp(16px, 1.3vw, 19px); line-height: 1.55; color: var(--ink-muted); max-width: 56ch; margin-top: 16px; }

.sec-head-dark { border-bottom-color: rgba(247, 245, 240, 0.16); }
.sec-head-dark h2 { color: var(--paper); }
.sec-head-dark .lede { color: rgba(247, 245, 240, 0.65); }

@media (max-width: 760px) {
  .sec-head { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   SERVICES GRID (cards)
   ============================================================ */

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; background: var(--paper-3); }

.svc-card {
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}
.svc-card:nth-child(3n) { border-right: 0; }
.svc-card:nth-last-child(-n+3) { border-bottom: 0; }
.svc-card:hover { background: var(--paper-2); }

.svc-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--accent-deep);
}

.svc-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.svc-icon svg { width: 22px; height: 22px; stroke: var(--accent-deep); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.svc-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 1.8vw, 26px); line-height: 1.15; letter-spacing: -0.014em; color: var(--ink); }
.svc-bilingual { font-family: var(--font-body); font-size: 13.5px; color: var(--accent-deep); font-weight: 500; margin-top: -8px; }
.svc-desc { font-family: var(--font-body); font-size: 14.5px; line-height: 1.6; color: var(--ink-muted); }

@media (max-width: 880px) { .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card:nth-child(3n) { border-right: 1px solid var(--rule); }
  .svc-card:nth-child(2n) { border-right: 0; }
  .svc-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--rule); }
  .svc-card:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 540px) { .svc-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: 0 !important; }
  .svc-card:not(:last-child) { border-bottom: 1px solid var(--rule); }
}

/* ============================================================
   THESIS / BILINGUAL EDGE — dark section
   ============================================================ */

.thesis { background: var(--ink); color: var(--paper); padding: clamp(72px, 9vw, 132px) 0; position: relative; overflow: hidden; }
.thesis::before {
  content: '';
  position: absolute;
  top: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle at center, rgba(255, 92, 43, 0.12), transparent 60%);
  pointer-events: none;
}

.thesis-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: start; position: relative; z-index: 2; }

.thesis-en { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 4.6vw, 64px); line-height: 1.0; letter-spacing: -0.024em; color: var(--paper); }
.thesis-en em { color: var(--accent); font-style: normal; }

.thesis-aside {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 24px;
}
.thesis-es { font-family: var(--font-body); font-size: 17px; line-height: 1.55; color: rgba(247, 245, 240, 0.85); margin-bottom: 24px; font-style: italic; }
.thesis-bullet { font-family: var(--font-body); font-size: 14.5px; line-height: 1.55; color: rgba(247, 245, 240, 0.65); padding: 14px 0; border-bottom: 1px solid rgba(247, 245, 240, 0.12); display: grid; grid-template-columns: auto 1fr; gap: 14px; }
.thesis-bullet:last-child { border-bottom: 0; padding-bottom: 0; }
.thesis-bullet strong { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; line-height: 1; }
.thesis-bullet span { padding-top: 2px; }

@media (max-width: 880px) { .thesis-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   PROCESS — numbered horizontal flow
   ============================================================ */

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.proc-step {
  padding: 32px 28px 36px 0;
  border-top: 2px solid var(--ink);
  position: relative;
}
.proc-step:not(:last-child) { padding-right: 28px; }
.proc-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--accent-deep);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 16px;
}
.proc-step h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 2vw, 28px); line-height: 1.1; letter-spacing: -0.014em; color: var(--ink); margin-bottom: 12px; }
.proc-step p { font-family: var(--font-body); font-size: 14.5px; line-height: 1.6; color: var(--ink-muted); }

@media (max-width: 880px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 8px 24px; }
}
@media (max-width: 540px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   INDUSTRIES — bilingual ticker style list
   ============================================================ */

.industries-block { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(32px, 5vw, 80px); align-items: start; }

.industries-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.industry-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 20px;
  align-items: center;
  transition: padding-left 0.25s ease, background 0.25s ease;
}
.industry-item:first-child { border-top: 1px solid var(--rule); }
.industry-item:hover { padding-left: 16px; background: var(--paper-2); }

.industry-num { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--accent-deep); letter-spacing: 0.06em; }
.industry-en { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 1.8vw, 26px); letter-spacing: -0.012em; color: var(--ink); }
.industry-es { font-family: var(--font-body); font-size: 13.5px; color: var(--ink-muted); font-style: italic; }

@media (max-width: 760px) { .industries-block { grid-template-columns: 1fr; } }

/* ============================================================
   CTA STRIP
   ============================================================ */

.cta-strip { background: var(--accent); color: var(--ink); padding: clamp(64px, 7vw, 112px) 0; position: relative; overflow: hidden; }
.cta-strip::before {
  content: '';
  position: absolute;
  bottom: -200px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 1000px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.16), transparent 60%);
  pointer-events: none;
}
.cta-grid { display: grid; grid-template-columns: 1.5fr auto; gap: clamp(32px, 4vw, 80px); align-items: end; position: relative; z-index: 2; }
.cta-headline { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 5vw, 80px); line-height: 0.96; letter-spacing: -0.024em; color: var(--ink); }
.cta-aside { font-family: var(--font-body); font-size: 16px; line-height: 1.55; color: var(--ink); max-width: 28ch; margin-bottom: 16px; }

@media (max-width: 760px) { .cta-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   ABOUT — content blocks
   ============================================================ */

.about-hero {
  padding: clamp(56px, 7vw, 120px) 0 clamp(48px, 6vw, 96px);
  border-bottom: 1px solid var(--rule);
}
.about-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(48px, 7vw, 116px); line-height: 0.94; letter-spacing: -0.028em; max-width: 18ch; margin-bottom: 32px; }
.about-hero h1 em { color: var(--accent); font-style: normal; }
.about-hero .lede { font-family: var(--font-body); font-size: clamp(18px, 1.5vw, 22px); line-height: 1.5; color: var(--ink-soft); max-width: 60ch; }

.story { padding: clamp(56px, 7vw, 96px) 0; border-bottom: 1px solid var(--rule); }
.story-grid { display: grid; grid-template-columns: 280px 1fr; gap: clamp(40px, 5vw, 96px); align-items: start; }
.story-aside .num { font-family: var(--font-display); font-weight: 800; font-size: 64px; color: var(--accent); letter-spacing: -0.024em; line-height: 1; display: block; margin-bottom: 14px; }
.story-aside .label { font-family: var(--font-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-muted); }
.story-body h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 3.6vw, 52px); line-height: 1.0; letter-spacing: -0.022em; margin-bottom: 24px; max-width: 22ch; }
.story-body h2 em { color: var(--accent); font-style: normal; }
.story-body p { font-family: var(--font-body); font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 16px; max-width: 64ch; }
.story-body p strong { color: var(--ink); font-weight: 600; }
.story-body .pullquote { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.4vw, 32px); line-height: 1.2; color: var(--ink); margin: 32px 0; padding-left: 24px; border-left: 3px solid var(--accent); max-width: 50ch; letter-spacing: -0.014em; }
.story-body .pullquote em { color: var(--accent); font-style: normal; }

@media (max-width: 760px) { .story-grid { grid-template-columns: 1fr; gap: 24px; } .story-aside { display: flex; align-items: baseline; gap: 18px; } .story-aside .num { font-size: 48px; margin-bottom: 0; } }

/* ============================================================
   CONTACT
   ============================================================ */

.contact-hero { padding: clamp(56px, 7vw, 120px) 0 clamp(48px, 6vw, 96px); border-bottom: 1px solid var(--rule); }
.contact-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(56px, 8vw, 132px); line-height: 0.92; letter-spacing: -0.03em; max-width: 14ch; margin-bottom: 28px; }
.contact-hero h1 em { color: var(--accent); font-style: normal; }
.contact-hero .lede { font-family: var(--font-body); font-size: clamp(18px, 1.5vw, 22px); line-height: 1.5; color: var(--ink-soft); max-width: 56ch; }

.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 5vw, 96px); padding: clamp(56px, 6vw, 96px) 0; align-items: start; }
.channels { display: grid; gap: 0; border-top: 1px solid var(--rule); }
.channel { padding: 28px 0; border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: 110px 1fr; gap: 24px; align-items: baseline; transition: padding-left 0.2s ease; }
.channel:hover { padding-left: 12px; }
.channel-label { font-family: var(--font-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-muted); }
.channel-value { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 1.8vw, 26px); color: var(--ink); line-height: 1.2; letter-spacing: -0.012em; transition: color 0.2s ease; }
a.channel-value:hover { color: var(--accent-deep); }
.channel-meta { font-family: var(--font-body); font-size: 14px; color: var(--ink-muted); margin-top: 6px; line-height: 1.5; }

.contact-card {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(28px, 3vw, 40px);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle at center, rgba(255, 92, 43, 0.22), transparent 60%);
  pointer-events: none;
}
.contact-card-inner { position: relative; z-index: 2; }
.contact-card h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.1; letter-spacing: -0.014em; margin-bottom: 14px; }
.contact-card h3 em { color: var(--accent); font-style: normal; }
.contact-card p { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: rgba(247, 245, 240, 0.78); margin-bottom: 14px; }
.contact-card .arrow { font-family: var(--font-display); font-size: 32px; color: var(--accent); display: block; line-height: 1; margin-top: 20px; }

.hours { padding: clamp(40px, 5vw, 80px) 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 80px); }
.hours-block h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin-bottom: 16px; letter-spacing: -0.012em; }
.hours-line { display: grid; grid-template-columns: 1fr auto; gap: 24px; padding: 10px 0; font-family: var(--font-body); font-size: 15px; border-bottom: 1px solid var(--rule); }
.hours-line:last-child { border-bottom: 0; }
.hours-line .day { font-weight: 600; color: var(--ink); }
.hours-line .time { color: var(--ink-muted); }

.map-frame { aspect-ratio: 21 / 9; border: 1px solid var(--rule); border-radius: 16px; overflow: hidden; background: var(--paper-2); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.3) saturate(1.1); }

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } .hours-grid { grid-template-columns: 1fr; gap: 32px; } .channel { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; } }

/* ============================================================
   SMS COMPLIANCE BLOCK
   ============================================================ */

.sms-block { background: var(--paper-2); padding: clamp(48px, 6vw, 88px) 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.sms-block-grid { display: grid; grid-template-columns: 240px 1fr; gap: clamp(24px, 4vw, 64px); align-items: start; }
.sms-block-label { display: flex; flex-direction: column; gap: 12px; }
.sms-block-label .tag {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 12px;
  border-radius: 6px;
  width: fit-content;
}
.sms-block-label h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 2vw, 28px); line-height: 1.05; letter-spacing: -0.016em; color: var(--ink); }
.sms-block-label h3 em { color: var(--accent-deep); font-style: normal; display: block; font-size: 0.78em; font-weight: 500; margin-top: 4px; }
.sms-block-body { font-family: var(--font-body); font-size: 15px; line-height: 1.7; color: var(--ink-soft); max-width: 78ch; }
.sms-block-body p { margin-bottom: 14px; }
.sms-block-body p:last-child { margin-bottom: 0; }
.sms-block-body strong { color: var(--ink); font-weight: 600; }
.sms-block-body a { color: var(--accent-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; font-weight: 600; }

@media (max-width: 760px) { .sms-block-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ============================================================
   FOOTER
   ============================================================ */

.foot { background: var(--ink); color: var(--paper); padding: clamp(56px, 6vw, 96px) 0 clamp(28px, 3vw, 40px); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 64px); padding-bottom: clamp(32px, 4vw, 56px); border-bottom: 1px solid rgba(247, 245, 240, 0.16); }

.foot-brand { display: flex; flex-direction: column; gap: 16px; }
.foot-brand .brand-name { color: var(--paper); font-size: 24px; }
.foot-brand .brand-mark { background: var(--paper); }
.foot-brand .brand-mark::after { background: var(--ink); }
.foot-brand-tag { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--accent); letter-spacing: -0.005em; }
.foot-brand-desc { font-family: var(--font-body); font-size: 14px; line-height: 1.6; color: rgba(247, 245, 240, 0.62); max-width: 36ch; }

.foot-col h4 { font-family: var(--font-body); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent); margin-bottom: 14px; }
.foot-col ul { list-style: none; }
.foot-col li { font-family: var(--font-body); font-size: 14.5px; padding: 4px 0; color: rgba(247, 245, 240, 0.78); line-height: 1.55; }
.foot-col a { color: inherit; transition: color 0.2s ease; }
.foot-col a:hover { color: var(--accent); }
.foot-col li.line-meta { font-size: 13px; color: rgba(247, 245, 240, 0.5); }

.foot-bottom { padding-top: 28px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--font-body); font-size: 12.5px; color: rgba(247, 245, 240, 0.5); letter-spacing: 0.02em; }

@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ANIMATION
   ============================================================ */

@keyframes lift { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.lift { animation: lift 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) backwards; }
.delay-1 { animation-delay: 0.05s; }
.delay-2 { animation-delay: 0.18s; }
.delay-3 { animation-delay: 0.32s; }
.delay-4 { animation-delay: 0.46s; }
.delay-5 { animation-delay: 0.6s; }
.delay-6 { animation-delay: 0.74s; }

@media (prefers-reduced-motion: reduce) {
  .lift { animation: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
