/* Fuço Pet Care — Opção 1 (editorial / elegante) */

:root {
  --gold: #F2B23C;
  --gold-deep: #E19E27;
  --gold-soft: #FBE7B6;
  --gold-tint: #FCF3DD;
  --ink: #1A140A;
  --ink-soft: #5A4E38;
  --line-l: #E7DCC2;
  --paper: #F7F1E3;
  --paper-2: #FBF6EA;
  --white: #FFFFFF;
  --green: #5F7F4E;

  --font-sans: "Red Hat Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

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

.wrap { max-width: var(--maxw); margin: 0 auto; }

.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

.eyebrow {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .18s, border-color .18s, color .18s, transform .18s;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: #141009;
  padding: 15px 26px;
  font-size: 16px;
}
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost {
  border: 1px solid var(--line-l);
  color: var(--ink);
  padding: 15px 26px;
  font-size: 16px;
  font-weight: 600;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn-sm { padding: 11px 20px; font-size: 15px; }

/* NAV */
.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-bottom: 1px solid var(--line-l);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 241, 227, .92);
  backdrop-filter: blur(8px);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; border-radius: 999px; }
.brand-name { font-weight: 800; font-size: 19px; letter-spacing: -.01em; }
.brand-name span { color: var(--ink-soft); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { text-decoration: none; font-size: 15px; font-weight: 600; }
.nav-links a:hover { color: var(--gold-deep); }
.nav-toggle { display: none; background: none; border: 0; padding: 6px; cursor: pointer; color: var(--ink); }

/* HERO */
.hero { padding: 64px 40px 40px; }
.hero h1 {
  margin: 20px 0 0;
  font-weight: 500;
  font-size: 62px;
  line-height: 1.02;
  letter-spacing: -.025em;
  max-width: 900px;
}
.hero .lead {
  margin: 24px 0 0;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 620px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 26px; margin-top: 20px; flex-wrap: wrap; }
.hero-trust .item { display: flex; align-items: center; gap: 9px; }
.hero-trust .sep { width: 1px; height: 22px; background: var(--line-l); }
.hero-trust span { font-size: 14px; color: var(--ink-soft); }
.hero-trust b { color: var(--ink); }

/* Placeholder image slot */
.slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-tint), var(--gold-soft) 55%, #efe6cf);
  border: 1px solid var(--gold-soft);
  color: var(--gold-deep);
}
.slot .slot-icon {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
}
.slot .slot-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  opacity: .8;
  max-width: 80%;
}
/* POR QUE A FUÇO */
.why {
  padding: 56px 40px 8px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
/* Carrossel de fotos — scroll-snap nativo; setas/dots são progressive enhancement */
.gal { position: relative; }
.gal-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  border-radius: 18px;
  border: 1px solid var(--gold-soft);
  background: var(--gold-tint);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gal-track::-webkit-scrollbar { display: none; }
.gal-track:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }
.gal-slide {
  flex: 0 0 100%;
  margin: 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
.gal-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}
.gal-nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line-l);
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s, opacity .18s;
}
.gal--js .gal-nav { display: flex; }
.gal-nav:hover { background: #fff; border-color: var(--gold); color: var(--gold-deep); }
.gal-nav:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; }
.gal-nav:disabled { opacity: .45; cursor: default; }
.gal-nav:disabled:hover { background: rgba(255, 255, 255, .92); border-color: var(--line-l); color: var(--ink); }
.gal-prev { left: 14px; }
.gal-next { right: 14px; }
.gal-bar {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.gal--js .gal-bar { display: flex; }
.gal-play {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line-l);
  border-radius: 999px;
  background: none;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color .18s, color .18s;
}
.gal-play:hover { border-color: var(--gold); color: var(--gold-deep); }
.gal-play:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; }
.gal-play .ico-play { display: none; }
.gal-play[aria-pressed="true"] .ico-pause { display: none; }
.gal-play[aria-pressed="true"] .ico-play { display: block; }
.gal-dots { display: flex; flex-wrap: wrap; gap: 2px; }
.gal-dots button {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.gal-dots button::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--line-l);
  transition: background .18s, width .18s;
}
.gal-dots button:hover::before { background: var(--gold); }
.gal-dots button[aria-current="true"]::before { width: 20px; background: var(--gold-deep); }
.gal-dots button:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 1px; border-radius: 6px; }
.gal-count { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--ink-soft); white-space: nowrap; }
.gal-count b { color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .gal-track { scroll-behavior: auto; }
}
.why-text h2 {
  margin: 14px 0 20px;
  font-weight: 500;
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: -.02em;
}
.why-text p { margin: 0 0 16px; font-size: 17px; line-height: 1.65; color: var(--ink-soft); }
.why-text p b { color: var(--ink); }
.why-close {
  font-size: 20px !important;
  font-weight: 600;
  color: var(--ink) !important;
  margin: 24px 0 22px !important;
}

/* SERVICES */
.services {
  background: var(--white);
  padding: 80px 40px 72px;
  border-top: 1px solid var(--line-l);
  border-bottom: 1px solid var(--line-l);
}
.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.services-head h2 {
  margin: 14px 0 0;
  font-weight: 500;
  font-size: 38px;
  letter-spacing: -.02em;
  max-width: 700px;
}
.services-sub { margin: 12px 0 0; font-size: 17px; color: var(--ink-soft); line-height: 1.55; max-width: 560px; }
.services-head .aside {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 280px;
  text-align: right;
  line-height: 1.5;
}
.svc-hint {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-deep);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}
.svc {
  background: var(--paper-2);
  border: 1px solid var(--line-l);
  border-radius: 12px;
  padding: 28px;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), border-color .18s;
}
.svc:hover { border-color: var(--gold); }
.svc:not([open]):hover { transform: translateY(-3px); }
.svc .ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gold-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
}
.svc h3 { margin: 18px 0 8px; font-size: 21px; font-weight: 600; }
.svc p { margin: 0; font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.svc .lede { color: var(--ink); font-weight: 600; margin-bottom: 4px; }

/* Expandable service cards (details/summary — sem JS) */
details.svc { padding: 0; }
details.svc > summary {
  display: block;
  position: relative;
  padding: 28px 52px 28px 28px;
  cursor: pointer;
  list-style: none;
  border-radius: 12px;
}
details.svc > summary::-webkit-details-marker { display: none; }
details.svc > summary:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; }
.svc .chev {
  position: absolute;
  top: 28px;
  right: 24px;
  color: var(--gold-deep);
  display: inline-flex;
  transition: transform .2s;
}
details.svc[open] { grid-column: 1 / -1; border-color: var(--gold); }
details.svc[open] > summary { padding-bottom: 20px; }
details.svc[open] .chev { transform: rotate(180deg); }
details.svc[open] .body > p:not(.lede) { display: none; }

.svc-panel {
  border-top: 1px solid var(--line-l);
  padding: 26px 28px 30px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: start;
}
.panel-text p { margin: 0 0 14px; font-size: 16px; line-height: 1.65; }
.panel-lede { color: var(--ink) !important; font-weight: 600; font-size: 18px !important; }
.panel-label { color: var(--ink) !important; font-weight: 600; margin-top: 20px !important; margin-bottom: 8px !important; }
.panel-text ul { margin: 0 0 18px; padding-left: 20px; }
.panel-text li { font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.panel-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 6px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: background .18s, gap .18s;
}
.panel-cta:hover { background: var(--gold-soft); gap: 12px; }

.panel-award {
  display: flex;
  gap: 14px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 20px 0 22px;
  color: var(--gold-deep);
}
.panel-award b { display: block; color: var(--ink); font-size: 16px; margin-bottom: 5px; }
.panel-award span { display: block; font-size: 14px; line-height: 1.55; color: var(--ink-soft); }

.panel-package {
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  border-radius: 12px;
  padding: 20px 22px 22px;
  margin-top: 22px;
}
.panel-package b { display: block; font-size: 19px; margin: 8px 0 12px; }
.panel-package ul { margin: 0 0 18px; padding-left: 20px; }

.pricebox {
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  border-radius: 12px;
  padding: 22px 24px 20px;
}
.ptable { width: 100%; border-collapse: collapse; font-size: 15px; }
.ptable-next { margin-top: 22px; }
.ptable caption {
  text-align: left;
  font-weight: 700; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep);
  padding-bottom: 10px;
}
.ptable th, .ptable td {
  padding: 10px 0;
  text-align: left;
  border-bottom: 1px dashed rgba(90,78,56,.25);
  font-weight: 400;
  color: var(--ink-soft);
}
.ptable thead th { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; text-align: right; color: var(--gold-deep); font-weight: 700; }
.ptable tbody th { font-weight: 500; color: var(--ink); }
.ptable tr:last-child th, .ptable tr:last-child td { border-bottom: 0; }
.ptable .val { text-align: right; font-weight: 700; color: var(--ink); white-space: nowrap; padding-left: 16px; }
.ptable .val.muted { font-weight: 600; color: var(--ink-soft); }
.pricebox .pricenote { margin: 14px 0 0; font-size: 13px; line-height: 1.5; color: var(--ink-soft); }
.pricebox .panel-cta { margin-top: 16px; }

.svc-cta {
  background: var(--gold);
  border: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-cta h3 { margin: 0 0 8px; font-size: 21px; font-weight: 700; color: #141009; }
.svc-cta p { margin: 0 0 16px; color: #3a2c0e; line-height: 1.5; }
.svc-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  color: #141009; font-weight: 700; font-size: 15px; text-decoration: none;
}
.svc-cta a:hover { gap: 12px; }

/* AWARD BAND */
.award {
  margin: 56px 40px 0;
  background: var(--gold);
  border-radius: 16px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.award .left { display: flex; align-items: center; gap: 28px; }
.award .medal {
  width: 92px; height: 92px;
  border-radius: 999px;
  background: #141009;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.award .eyebrow { color: #3a2c0e; }
.award h2 { margin: 8px 0 6px; font-weight: 500; font-size: 32px; color: #141009; }
.award p { margin: 0; font-size: 15px; color: #3a2c0e; }
.award .rank { text-align: right; }
.award .rank .num { font-size: 56px; font-weight: 300; font-style: italic; color: #141009; line-height: 1; }
.award .rank .cap { font-size: 13px; color: #3a2c0e; letter-spacing: .04em; }

/* NOSSO ESPAÇO */
.space {
  margin-top: 72px;
  padding: 76px 40px;
  background: var(--white);
  border-top: 1px solid var(--line-l);
  border-bottom: 1px solid var(--line-l);
}
.space h2 {
  margin: 14px 0 0;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -.02em;
  max-width: 760px;
}
.space p { margin: 18px 0 0; font-size: 18px; line-height: 1.65; color: var(--ink-soft); max-width: 720px; }
.space .space-lead { font-size: 20px; color: var(--ink); }
.space-kicker {
  margin-top: 28px !important;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep) !important;
}
.space-tagline {
  margin: 20px 0 0;
  padding: 26px 32px;
  border-left: 3px solid var(--gold);
  background: var(--gold-tint);
  border-radius: 0 14px 14px 0;
  max-width: 760px;
}
.space-tagline p {
  margin: 0;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--ink);
  max-width: none;
}

/* FOUNDERS */
.founders {
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.founders-slot { height: 440px; border-radius: 16px; position: sticky; top: 96px; }
.founders h2 { margin: 16px 0 6px; font-weight: 500; font-size: 40px; letter-spacing: -.02em; }
.founders .role { margin: 0 0 28px; font-size: 18px; font-weight: 600; color: var(--gold-deep); }
.founders p { margin: 0 0 14px; font-size: 18px; line-height: 1.65; color: var(--ink-soft); }
.founders p b { color: var(--ink); }
.founders p.small { font-size: 16px; }
.bio { padding-top: 22px; border-top: 1px solid var(--line-l); margin-bottom: 22px; }
.bio h3 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.bio p:last-child { margin-bottom: 0; }
.bio-highlight {
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  border-radius: 14px;
  padding: 24px 26px;
  margin-top: 8px;
}
.bio-highlight p { margin: 12px 0 0; }
.bio-highlight p:first-of-type { color: var(--ink); font-weight: 500; }
.tags { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.tag {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 16px;
  border: 1px solid var(--line-l);
  border-radius: 999px;
  font-size: 14px;
}

/* TESTIMONIALS */
.testi {
  background: var(--white);
  border-top: 1px solid var(--line-l);
  padding: 72px 40px;
}
.testi h2 { margin: 14px 0 34px; font-weight: 500; font-size: 38px; letter-spacing: -.02em; }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote {
  background: var(--paper-2);
  border: 1px solid var(--line-l);
  border-radius: 12px;
  padding: 32px;
}
.stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 16px; }
.quote p { margin: 0 0 20px; font-size: 18px; line-height: 1.6; color: var(--ink); }
.quote cite { font-size: 14px; color: var(--ink-soft); font-weight: 600; font-style: normal; }

/* CTA / FOOTER */
.footer { background: var(--gold); padding: 64px 40px 0; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(20,16,9,.15);
}
.footer-top h2 {
  margin: 0;
  font-weight: 500;
  font-size: 44px;
  letter-spacing: -.02em;
  color: #141009;
  max-width: 600px;
}
.footer-top p {
  margin: 10px 0 0;
  font-size: 18px;
  color: #3a2c0e;
  max-width: 600px;
}
.footer-phone {
  background: #141009;
  color: var(--gold);
  padding: 17px 30px;
  font-size: 17px;
  flex-shrink: 0;
}
.footer-phone:hover { background: #241a0d; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 36px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom .name { font-weight: 800; font-size: 17px; color: #141009; }
.footer-meta { display: flex; align-items: center; gap: 22px; color: #3a2c0e; font-size: 14px; flex-wrap: wrap; }
.footer-meta a, .footer-meta span { display: flex; align-items: center; gap: 7px; text-decoration: none; }
.footer-meta a:hover { color: #141009; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { height: 60px; padding: 0 18px; }
  .brand img { width: 34px; height: 34px; }
  .brand-name { font-size: 16px; }
  .brand-name span { display: none; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav .btn { display: none; }

  .hero { padding: 28px 20px 4px; }
  .hero h1 { font-size: 34px; line-height: 1.05; letter-spacing: -.02em; }
  .hero .lead { font-size: 15px; margin-top: 14px; }
  .hero-actions { margin-top: 18px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-actions .btn-ghost { display: none; }
  .hero-trust { gap: 12px; margin-top: 16px; }
  .hero-trust .sep { display: none; }

  .why { padding: 28px 20px 4px; grid-template-columns: 1fr; gap: 20px; }
  .gal-slide img { height: 340px; }
  .gal-nav { width: 38px; height: 38px; }
  .gal-prev { left: 8px; }
  .gal-next { right: 8px; }
  .gal-dots button { width: 18px; height: 18px; }
  .gal-bar { gap: 8px; }
  .gal-play { width: 30px; height: 30px; }
  .why-text h2 { font-size: 24px; margin: 12px 0 16px; }
  .why-text p { font-size: 15px; }
  .why-close { font-size: 18px !important; margin: 20px 0 18px !important; }
  .why-text .btn { width: 100%; justify-content: center; }

  .services { padding: 36px 20px 32px; }
  .services-head { flex-direction: column; align-items: flex-start; margin-bottom: 18px; }
  .services-head h2 { font-size: 26px; }
  .services-sub { font-size: 15px; }
  .services-head .aside { display: none; }
  .svc-hint { margin-bottom: 12px; }
  .svc-grid { grid-template-columns: 1fr; gap: 12px; }
  .svc { display: flex; align-items: center; gap: 15px; padding: 16px; }
  .svc .ic { width: 44px; height: 44px; border-radius: 12px; }
  .svc .body { flex: 1; }
  .svc h3 { margin: 0; font-size: 16px; }
  .svc p { font-size: 13px; margin-top: 2px; }
  .svc .lede { margin-bottom: 0; }
  .svc-cta { flex-direction: column; align-items: flex-start; }
  .svc-cta h3 { font-size: 18px; }

  details.svc { display: block; padding: 0; }
  details.svc > summary { display: flex; align-items: center; gap: 15px; padding: 16px 40px 16px 16px; }
  details.svc[open] > summary { padding-bottom: 14px; }
  .svc .chev { top: 50%; right: 14px; transform: translateY(-50%); }
  details.svc[open] .chev { transform: translateY(-50%) rotate(180deg); }
  .svc-panel { grid-template-columns: 1fr; gap: 20px; padding: 18px 16px 22px; }
  .panel-text p { font-size: 15px; }
  .panel-lede { font-size: 16px !important; }
  .panel-text li { font-size: 15px; }
  .panel-cta { width: 100%; justify-content: center; padding: 13px 20px; }
  .panel-award { flex-direction: column; gap: 10px; padding: 16px 18px; }
  .panel-award b { font-size: 15px; }
  .panel-package { padding: 18px; }
  .panel-package b { font-size: 17px; }
  .pricebox { padding: 18px 18px 16px; }
  .ptable { font-size: 14px; }
  .ptable thead th { font-size: 11px; letter-spacing: .02em; }
  .ptable .val { padding-left: 10px; }

  .award { margin: 24px 20px 0; flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 20px; }
  .award .left { gap: 18px; }
  .award .medal { width: 64px; height: 64px; }
  .award h2 { font-size: 24px; }
  .award .rank { display: none; }

  .space { margin-top: 32px; padding: 36px 20px 38px; }
  .space h2 { font-size: 26px; }
  .space p { font-size: 15px; margin-top: 14px; }
  .space .space-lead { font-size: 17px; }
  .space-tagline { padding: 20px 22px; margin-top: 18px; }
  .space-tagline p { font-size: 19px; }

  .founders { padding: 36px 20px; grid-template-columns: 1fr; gap: 18px; }
  .founders-slot { height: 200px; order: -1; position: static; }
  .founders h2 { font-size: 24px; }
  .founders .role { font-size: 16px; margin-bottom: 22px; }
  .founders p { font-size: 15px; }
  .founders p.small { font-size: 14px; }
  .bio { padding-top: 18px; margin-bottom: 18px; }
  .bio-highlight { padding: 18px 20px; }
  .tags { gap: 10px; }

  .testi { padding: 40px 20px; }
  .testi h2 { font-size: 26px; margin-bottom: 22px; }
  .testi-grid { grid-template-columns: 1fr; }
  .quote { padding: 24px; }
  .quote p { font-size: 16px; }

  .footer { padding: 34px 20px 0; }
  .footer-top { flex-direction: column; align-items: flex-start; padding-bottom: 28px; gap: 18px; }
  .footer-top h2 { font-size: 26px; }
  .footer-top p { font-size: 16px; }
  .footer-phone { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 20px 0 28px; }
}
