/* medkit marketing — cozy cartoon plush styles */

:root {
  --cream: #FFF6E6;
  --cream-2: #FFEFD1;
  --peach: #FFB68A;
  --peach-deep: #FF8E5C;
  --butter: #FFD86B;
  --butter-deep: #F5B73D;
  --mint: #A8E5C8;
  --mint-deep: #5FCFA0;
  --sky: #A6D8FF;
  --sky-deep: #5AB7F2;
  --rose: #FFB3C0;
  --rose-deep: #F47A92;
  --ink: #3B2A1F;
  --ink-2: #6B4F3F;
  --ink-soft: #8E7261;
  --line: #2B1E16;
  --paper: #FFFAF0;

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 36px;
  --r-pill: 999px;

  --stroke: 3px;
  --stroke-thick: 4px;

  --plush: 0 6px 0 var(--line), 0 14px 28px rgba(43,30,22,0.18);
  --plush-sm: 0 4px 0 var(--line), 0 8px 16px rgba(43,30,22,0.15);
  --plush-tiny: 0 2px 0 var(--line);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
code {
  font-family: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
  background: var(--cream-2);
  border: 2px solid var(--line);
  border-radius: 6px;
  padding: 1px 6px;
  font-size: 0.88em;
  font-weight: 700;
}

h1, h2, h3 { font-family: 'Nunito', sans-serif; letter-spacing: -0.01em; margin: 0; }
h1 { font-weight: 900; }
h2 { font-weight: 900; font-size: 44px; line-height: 1.05; }
h3 { font-weight: 800; font-size: 22px; }
@media (max-width: 720px) { h2 { font-size: 32px; } h3 { font-size: 19px; } }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.section { padding: 96px 0; position: relative; }
@media (max-width: 720px) { .section { padding: 64px 0; } }

/* ─── Plush primitives ─────────────────────────────── */
.plush-lg {
  border: var(--stroke-thick) solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--plush);
  background: white;
}

.btn-plush {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 800;
  font-size: 18px;
  padding: 14px 26px;
  border: var(--stroke) solid var(--line);
  border-radius: var(--r-pill);
  background: var(--butter);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 5px 0 var(--line), 0 10px 18px rgba(43,30,22,0.18);
  transition: transform 120ms cubic-bezier(.5,1.6,.4,1), box-shadow 120ms;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.btn-plush:hover { transform: translateY(-2px) rotate(-0.5deg); }
.btn-plush:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 var(--line), 0 4px 8px rgba(43,30,22,0.2);
}
.btn-plush.primary { background: var(--peach); color: var(--ink); }
.btn-plush.mint { background: var(--mint); }
.btn-plush.sky { background: var(--sky); }
.btn-plush.ghost { background: white; }
.btn-plush.big { font-size: 20px; padding: 18px 34px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 14px;
  border: 2.5px solid var(--line);
  border-radius: var(--r-pill);
  background: white;
  color: var(--ink);
  box-shadow: 0 2px 0 var(--line);
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  width: fit-content;
  max-width: 100%;
}
.chip.peach { background: var(--peach); }
.chip.butter { background: var(--butter); }
.chip.mint { background: var(--mint); }
.chip.sky { background: var(--sky); }
.chip.rose { background: var(--rose); }

/* Background variants */
.bg-cream-2 { background: var(--cream-2); }
.bg-peach-soft { background: linear-gradient(180deg, #FFE6D1 0%, #FFD0AE 100%); }
.bg-mint-soft { background: linear-gradient(180deg, #DFF7EA 0%, #B7ECD0 100%); }
.bg-sky-soft { background: linear-gradient(180deg, #DFF1FF 0%, #B6DFFE 100%); }
.bg-butter-soft { background: linear-gradient(180deg, #FFF1C2 0%, #FFE08A 100%); }

/* ─── Animations ─────────────────────────────── */
@keyframes wobble-soft {
  0%,100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}
@keyframes float-up {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pop-in {
  0% { transform: scale(0.85) translateY(10px); opacity: 0; }
  60% { transform: scale(1.04) translateY(-2px); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}
@keyframes breathe {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.wobble { animation: wobble-soft 3.6s ease-in-out infinite; transform-origin: 50% 90%; }
.floaty { animation: float-up 3s ease-in-out infinite; }
.popin  { animation: pop-in 600ms cubic-bezier(.5,1.7,.4,1) backwards; }
.breathe { animation: breathe 3.5s ease-in-out infinite; }

/* ─── NAV ─────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: rgba(255, 246, 230, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--line);
}
.nav-logo {
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-logo .peach { color: var(--peach-deep); }
.nav-cross { display: inline-block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 800;
  font-size: 15px;
}
.nav-links a:not(.btn-plush) {
  color: var(--ink-2);
  transition: color 120ms;
}
.nav-links a:not(.btn-plush):hover { color: var(--ink); }
.nav-cta { padding: 10px 20px; font-size: 15px; box-shadow: 0 4px 0 var(--line); }
@media (max-width: 720px) {
  .nav-links a:not(.btn-plush):not(.nav-cta) { display: none; }
}

/* ─── HERO ─────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #FFE6D1 0%, #FFD0AE 100%);
  overflow: hidden;
  padding: 70px 0 120px;
}
.doodle { position: absolute; pointer-events: none; }
.sun {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 80px 28px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.hero-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Nunito';
  font-weight: 900;
  font-size: clamp(80px, 16vw, 168px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.brand {
  color: var(--cream);
  -webkit-text-stroke: 5px var(--line);
  paint-order: stroke fill;
  text-shadow: 0 8px 0 var(--line);
}
.brand .peach { color: var(--peach); }
.brand-cross { display: inline-block; margin-bottom: 30px; }
.hero-tag {
  font-size: 24px;
  font-weight: 700;
  background: white;
  padding: 10px 22px;
  border: 3px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--plush-tiny);
  margin: 0;
  animation-delay: .15s;
}
@media (max-width: 720px) { .hero-tag { font-size: 17px; padding: 8px 16px; } }
.hero-sub {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-2);
  max-width: 720px;
  line-height: 1.55;
  margin: 0;
  animation-delay: .25s;
}
.hero-sub strong { color: var(--peach-deep); font-weight: 900; }
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation-delay: .35s;
}
.hero-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 880px;
  animation-delay: .45s;
}
@media (max-width: 720px) { .hero-stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: white;
  border: 3px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--plush-sm);
  padding: 14px 16px;
  text-align: left;
}
.stat-big {
  font-weight: 900;
  font-size: 30px;
  line-height: 1.05;
  color: var(--ink);
}
.stat-unit { font-weight: 700; font-size: 14px; color: var(--ink-2); }
.stat-sub {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.hero-hill {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 1;
}

/* ─── PROBLEM SPLIT ─────────────────────────────── */
.problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 880px) { .problem { grid-template-columns: 1fr; } }
.problem-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem-card.mint-card { background: var(--mint); }
.problem-card p { font-size: 17px; line-height: 1.55; color: var(--ink-2); margin: 0; font-weight: 600; }

/* ─── SECTION HEAD ─────────────────────────────── */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.section-head p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 600;
  margin: 0;
}

/* ─── DEMO VIDEO ─────────────────────────────── */
.demo-section .section-head { margin-bottom: 40px; }
.video-frame {
  position: relative;
  background: white;
  border: 4px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--plush);
  padding: 40px 18px 18px;
  max-width: 980px;
  margin: 0 auto;
  transform: rotate(-0.4deg);
}
.video-tape {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  background: var(--butter);
  border: 2.5px solid var(--line);
  box-shadow: 0 3px 0 var(--line);
  padding: 5px 18px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  border: 3px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: black;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.demo-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hint { font-size: 13px; color: var(--ink-2); font-weight: 700; }

/* ─── STEPS ─────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 14px;
}
@media (max-width: 1080px) {
  .steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
}
.step {
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  background: white;
}
.step:nth-child(1) { transform: rotate(-0.7deg); }
.step:nth-child(3) { transform: rotate(0.5deg); }
.step:nth-child(5) { transform: rotate(-0.3deg); }
.step:nth-child(7) { transform: rotate(0.6deg); background: var(--butter); }
.step-num {
  position: absolute;
  top: -16px;
  left: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--peach);
  border: 3px solid var(--line);
  box-shadow: 0 3px 0 var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
}
.attending-step .step-num { background: var(--rose-deep); color: white; }
.step-icon { font-size: 36px; margin-top: 6px; }
.step h3 { font-size: 18px; }
.step p { font-size: 14px; line-height: 1.5; color: var(--ink-2); margin: 0; font-weight: 600; }
.step-tag {
  margin-top: auto;
  padding: 5px 10px;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0;
  align-self: flex-start;
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  color: var(--ink-soft);
}

/* ─── FEATURE GRID ─────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 880px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-pill {
  align-self: flex-start;
  padding: 5px 12px;
  border: 2.5px solid var(--line);
  box-shadow: 0 2px 0 var(--line);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.feature-pill.peach { background: var(--peach); }
.feature-pill.mint { background: var(--mint); }
.feature-pill.sky { background: var(--sky); }
.feature-pill.rose { background: var(--rose); }
.feature h3 { font-size: 24px; }
.feature p { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 0; font-weight: 600; }
.feature-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feature-list li {
  padding: 6px 12px 6px 30px;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 700;
  position: relative;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  color: var(--mint-deep);
}

/* ─── ARCHITECTURE ─────────────────────────────── */
.arch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
@media (max-width: 980px) { .arch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .arch-grid { grid-template-columns: 1fr; } }
.arch-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: white;
}
.arch-card.attending-card { background: var(--cream-2); }
.arch-pill {
  align-self: flex-start;
  padding: 4px 10px;
  border: 2.5px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: 0 2px 0 var(--line);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.arch-pill.peach { background: var(--peach); }
.arch-pill.butter { background: var(--butter); }
.arch-pill.mint { background: var(--mint); }
.arch-pill.rose { background: var(--rose); }
.arch-tech {
  font-family: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 4px 8px;
  align-self: flex-start;
}
.arch-card p { font-size: 13px; line-height: 1.5; color: var(--ink-2); margin: 6px 0 0; font-weight: 600; }

.model-routing {
  padding: 24px 28px;
  background: white;
}
.model-routing-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.model-routing-head h3 { font-size: 22px; }
.model-row {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 2px solid var(--cream-2);
  align-items: center;
  font-size: 14px;
}
@media (max-width: 720px) {
  .model-row { grid-template-columns: 1fr; }
}
.model-row:first-of-type { border-top: 0; }
.model-cell.muted { color: var(--ink-2); font-weight: 600; }
.badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--rose-deep);
  color: white;
  border: 2.5px solid var(--line);
  border-radius: var(--r-pill);
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 2px 0 var(--line);
}

/* ─── PERSONAS ─────────────────────────────── */
.personas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .personas { grid-template-columns: 1fr; } }
.persona {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: white;
}
.persona:nth-child(2) { transform: rotate(0.6deg); }
.persona:nth-child(1) { transform: rotate(-0.5deg); }
.persona:nth-child(3) { transform: rotate(0.4deg); }
.persona-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 3px solid var(--line);
  box-shadow: 0 3px 0 var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.persona-name { font-weight: 900; font-size: 16px; }
.persona p { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin: 0; font-weight: 600; }

/* ─── BIG STATS ─────────────────────────────── */
.big-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .big-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .big-stats { grid-template-columns: 1fr; } }
.big-stat {
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.big-stat.peach-soft { background: linear-gradient(180deg, #FFE6D1 0%, #FFD0AE 100%); }
.big-stat.mint-soft { background: linear-gradient(180deg, #DFF7EA 0%, #B7ECD0 100%); }
.big-stat.sky-soft { background: linear-gradient(180deg, #DFF1FF 0%, #B6DFFE 100%); }
.big-stat.butter-soft { background: linear-gradient(180deg, #FFF1C2 0%, #FFE08A 100%); }
.big-stat-num {
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
}
.big-stat-sub {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  line-height: 1.4;
}

/* ─── CONTACT ─────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: white;
  text-decoration: none;
  color: var(--ink);
  transition: transform 140ms cubic-bezier(.5,1.7,.4,1);
}
.contact-card:hover { transform: translateY(-3px) rotate(-0.4deg); }
.contact-card:nth-child(1) { transform: rotate(-0.4deg); }
.contact-card:nth-child(2) { transform: rotate(0.4deg); }
.contact-card:nth-child(3) { transform: rotate(0.3deg); }
.contact-card:nth-child(4) { transform: rotate(-0.5deg); }
.contact-card:nth-child(1):hover,
.contact-card:nth-child(2):hover,
.contact-card:nth-child(3):hover,
.contact-card:nth-child(4):hover { transform: translateY(-3px) rotate(-0.4deg); }
.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--line);
  box-shadow: 0 3px 0 var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-meta { flex: 1; min-width: 0; }
.contact-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}
.contact-value {
  font-size: 16px;
  font-weight: 800;
  margin-top: 2px;
  word-break: break-all;
}
.contact-arrow {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink-2);
  flex-shrink: 0;
}

/* ─── CTA STRIP ─────────────────────────────── */
.cta-strip {
  background: linear-gradient(180deg, #FFE6D1 0%, #FFD0AE 100%);
  border-top: 4px solid var(--line);
  border-bottom: 4px solid var(--line);
  padding: 80px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
}
@media (max-width: 880px) { .cta-inner { grid-template-columns: 1fr; } }
.cta-inner h2 { margin-top: 12px; font-size: 56px; }
@media (max-width: 720px) { .cta-inner h2 { font-size: 36px; } }
.cta-inner p { font-size: 17px; color: var(--ink-2); font-weight: 600; margin: 12px 0 0; }
.cta-buttons { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }

/* ─── FOOTER ─────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 36px;
}
@media (max-width: 880px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }
.footer-logo {
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.footer-logo .peach { color: var(--peach); }
.footer-mute {
  color: rgba(255, 246, 230, 0.72);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
  margin: 0 0 8px;
}
.footer-mute.small { font-size: 12px; color: rgba(255, 246, 230, 0.5); }
.footer-mute a { color: var(--peach); font-weight: 800; }
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 246, 230, 0.08);
  border: 2px solid rgba(255, 246, 230, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: background 140ms, transform 140ms cubic-bezier(.5,1.7,.4,1), color 140ms;
}
.footer-socials a:hover {
  background: var(--peach);
  color: var(--ink);
  border-color: var(--peach);
  transform: translateY(-2px);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 560px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer-col-title {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--peach);
  margin-bottom: 12px;
}
.footer-cols a, .footer-cols span {
  display: block;
  color: rgba(255, 246, 230, 0.78);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 0;
  transition: color 120ms;
}
.footer-cols a:hover { color: var(--peach); }
.footer-bottom {
  border-top: 1px solid rgba(255, 246, 230, 0.12);
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 246, 230, 0.55);
  font-weight: 700;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-cross-row { display: inline-flex; align-items: center; }
