/* RedKite Nutrition — shared styles */

:root {
  --bg: #ffffff;
  --bg-warm: #fdeef2;
  --ink: #0e1116;
  --ink-soft: #31363f;
  --muted: #6b7280;
  --rule: #e7e8ec;
  --navy: #283888;
  --navy-deep: #1d2a6b;
  --accent: #e63946;
  --accent-deep: #c62835;
  --pink: #ff4d7e;
  --brand-blue: #283888;
  --cream: #f5f7ff;

  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  --max: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
  font-variation-settings: "SOFT" 30, "WONK" 0;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-narrow {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ——— Navigation ——— */

/* ——— Masthead ——— */

.masthead {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.masthead-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px) var(--gutter) clamp(24px, 3.5vw, 36px);
  display: flex;
  justify-content: center;
}
.brand-lockup {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  text-align: left;
}
@media (max-width: 560px) {
  .brand-lockup {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
    text-align: center;
    row-gap: 10px;
  }
}
.brand-mark-lg {
  grid-row: 1 / 3;
  width: clamp(88px, 11vw, 128px);
  height: clamp(88px, 11vw, 128px);
  object-fit: contain;
  display: block;
}
@media (max-width: 560px) {
  .brand-mark-lg { grid-row: auto; }
}
.brand-wordmark {
  grid-column: 2;
  font-family: var(--f-display);
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  font-weight: 500;
  align-self: end;
}
.brand-wordmark em {
  font-style: normal;
  color: var(--brand-blue);
  font-weight: 500;
}
.brand-wordmark strong {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
@media (max-width: 560px) { .brand-wordmark { grid-column: auto; } }
.brand-tagline {
  grid-column: 2;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  align-self: start;
  padding-top: 8px;
}
@media (max-width: 560px) { .brand-tagline { grid-column: auto; } }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
  transition: border-color .2s ease;
}
.nav.scrolled { border-bottom-color: var(--rule); }

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
}
.brand em {
  font-style: normal;
  color: var(--brand-blue);
  font-weight: 500;
}
.brand strong {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
}
.nav-links a {
  position: relative;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color .15s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: background .15s ease, color .15s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--bg); }
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  width: 42px; height: 42px;
  border-radius: 999px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--ink);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute;
  left: 0; width: 16px; height: 1.5px; background: var(--ink);
  transition: transform .2s ease, top .2s ease;
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after  { top: 5px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    padding: 12px var(--gutter) 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--rule); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .nav-toggle { display: inline-flex; }
}

/* ——— Eyebrow / labels ——— */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--accent);
}

/* ——— Hero ——— */

.hero {
  padding: clamp(64px, 10vw, 120px) 0 clamp(56px, 9vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
  margin: 22px 0 28px;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.hero-lede {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--cream); }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-navy { background: var(--navy); color: var(--cream); }
.btn-navy:hover { background: var(--navy-deep); }
.btn .arrow {
  width: 14px; height: 14px;
  transition: transform .15s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ——— Placeholder images ——— */

.ph {
  position: relative;
  background: var(--bg-warm);
  color: var(--muted);
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 16px,
    rgba(0,0,0,0.035) 16px 17px
  );
}
.ph-label {
  position: relative;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--rule);
  color: var(--ink-soft);
  z-index: 1;
}
.ph-portrait { aspect-ratio: 4 / 5; }
.ph-landscape { aspect-ratio: 16 / 10; }
.ph-square { aspect-ratio: 1 / 1; }
.ph-tall { aspect-ratio: 3 / 4; }

.ph-navy { background: var(--navy); }
.ph-navy::before {
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 16px,
    rgba(255,255,255,0.06) 16px 17px
  );
}
.ph-navy .ph-label {
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
}
.ph-warm { background: #ffe1e8; }
.ph-warm::before {
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 16px,
    rgba(230, 57, 70, 0.09) 16px 17px
  );
}
.ph-pink { background: #ffd7e1; }
.ph-pink::before {
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 16px,
    rgba(255, 77, 126, 0.12) 16px 17px
  );
}
.ph-blue { background: #dae3ff; }
.ph-blue::before {
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 16px,
    rgba(22, 56, 199, 0.1) 16px 17px
  );
}

/* ——— Sections ——— */

.section {
  padding: clamp(72px, 10vw, 140px) 0;
}
.section-title {
  font-size: clamp(34px, 4.5vw, 56px);
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
  max-width: 18ch;
}
.section-title em { font-style: italic; color: var(--accent); font-weight: 300; }
.section-intro {
  color: var(--ink-soft);
  max-width: 58ch;
  font-size: 18px;
  margin: 0;
  text-wrap: pretty;
}

.section-navy {
  background: var(--navy);
  color: var(--cream);
}
.section-navy .section-intro { color: rgba(251, 246, 236, 0.75); }
.section-navy .eyebrow { color: #ff9bb3; }
.section-navy .eyebrow::before { background: #ff9bb3; }
/* On navy, switch the italic em back to a light accent so it reads */
.section-navy .section-title em { color: #ff9bb3; }

/* ——— Services cards ——— */

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 56px;
}
.service {
  background: var(--bg);
  color: var(--ink);
  padding: 40px 36px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: background .2s ease;
}
.service h3 { color: var(--ink); }
.service .service-num { color: var(--muted); }
.service .service-meta { color: var(--muted); }
.service:hover { background: var(--cream); }
.service-num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.14em;
}
.service h3 {
  font-size: 26px;
  line-height: 1.15;
  font-weight: 400;
}
.service p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
}
.service-meta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
@media (max-width: 860px) {
  .services { grid-template-columns: 1fr; }
}

/* ——— Bio ——— */

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.bio-text p {
  font-size: 17px;
  color: rgba(251, 246, 236, 0.85);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.bio-text p:last-of-type { margin-bottom: 28px; }
.bio-credentials {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(251, 246, 236, 0.18);
}
.bio-credentials div {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(251, 246, 236, 0.75);
}
.bio-credentials strong {
  display: block;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  text-transform: none;
}
@media (max-width: 860px) {
  .bio-grid { grid-template-columns: 1fr; }
}

/* ——— Approach / values strip ——— */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 72px;
}
.pillar {
  border-top: 1px solid var(--ink);
  padding-top: 22px;
}
.pillar-num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.pillar h4 {
  font-size: 24px;
  font-weight: 400;
  margin: 10px 0 12px;
}
.pillar p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 760px) {
  .pillars { grid-template-columns: 1fr; gap: 32px; }
}

/* ——— Contact / form ——— */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-meta h3 {
  font-size: 20px;
  font-weight: 400;
  font-family: var(--f-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.contact-meta address {
  font-style: normal;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.contact-meta .divider {
  border-top: 1px solid var(--rule);
  margin: 28px 0;
}

form.rk-form {
  display: grid;
  gap: 22px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.field input,
.field textarea {
  font: inherit;
  font-size: 16px;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  transition: border-color .15s ease;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.field textarea { min-height: 120px; }
.field.error input,
.field.error textarea { border-bottom-color: var(--accent); }
.field .error-msg {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  display: none;
}
.field.error .error-msg { display: block; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-status {
  padding: 16px 20px;
  background: var(--cream);
  border-left: 2px solid var(--accent);
  font-size: 15px;
  color: var(--ink);
  display: none;
}
.form-status.show { display: block; }
.form-status.error { background: #fde8ea; color: var(--accent-deep); }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ——— Accreditations ——— */

.accreditations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--rule);
}
.acc {
  border: 1px solid var(--rule);
  padding: 28px 20px;
  text-align: center;
  background: var(--bg);
  transition: background .15s ease;
}
.acc:hover { background: var(--cream); }
.acc-abbr {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--accent);
  font-weight: 400;
}
.acc-name {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
}
@media (max-width: 760px) { .accreditations { grid-template-columns: repeat(2, 1fr); } }

/* ——— Footer ——— */

.footer {
  border-top: 1px solid var(--rule);
  padding: 56px 0 40px;
  margin-top: 0;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 14.5px;
  max-width: 34ch;
  margin: 14px 0 0;
}
.footer h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a {
  color: var(--ink-soft);
  font-size: 15px;
  transition: color .15s ease;
}
.footer a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.socials { display: flex; gap: 14px; }
.socials a {
  width: 34px; height: 34px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s ease, color .15s ease;
}
.socials a:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ——— Page headers (About, Contact) ——— */

.page-header {
  padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--rule);
}
.page-header h1 {
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.025em;
  margin: 18px 0 20px;
}
.page-header h1 em { font-style: italic; color: var(--accent); font-weight: 300; }
.page-header p {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0;
  text-wrap: pretty;
}

/* ——— About: bio layout ——— */

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about-text p {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 20px;
  text-wrap: pretty;
}
.about-text p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-size: 58px;
  line-height: 1;
  float: left;
  padding: 6px 10px 0 0;
  color: var(--accent);
  font-weight: 400;
}
.about-aside .ph { margin-bottom: 20px; }
.about-aside h4 {
  font-size: 14px;
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin: 0 0 6px;
  font-weight: 500;
}
.about-aside p { font-size: 15px; color: var(--ink-soft); margin: 0; }

@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* ——— Qualifications list ——— */

.quals {
  margin-top: 20px;
}
.qual {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.qual:first-child { border-top: 1px solid var(--ink); }
.qual-year {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 500;
}
.qual-title {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.qual-inst {
  font-size: 14px;
  color: var(--muted);
}
.qual a { color: inherit; border-bottom: 1px solid transparent; transition: border-color .15s; }
.qual a:hover { border-bottom-color: var(--accent); color: var(--accent); }
@media (max-width: 720px) {
  .qual { grid-template-columns: 1fr; gap: 6px; }
}

/* ——— Testimonial / quote ——— */

.quote {
  padding: clamp(72px, 10vw, 120px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--cream);
}
.quote blockquote {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 22ch;
  font-weight: 400;
  text-wrap: balance;
}
.quote blockquote em { font-style: italic; color: var(--accent); font-weight: 300; }
.quote cite {
  display: block;
  margin-top: 40px;
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

/* ——— Little bird logo helper ——— */
.bird-line {
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ——— Utility ——— */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

.ratio-strip {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 16px;
  margin: 40px 0 0;
}
.ratio-strip .ph { aspect-ratio: auto; height: 180px; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .ratio-strip { grid-template-columns: 1fr; }
  .ratio-strip .ph { height: 140px; }
}
