:root {
  --cream: #fff6f0;
  --blush: #f8c8b0;
  --peach: #f3a984;
  --coral: #e88b7a;
  --mint: #7ba89a;
  --mint-deep: #5a8a7c;
  --sage: #c9dfd4;
  --rose: #e8a0a8;
  --ink: #3a2f2c;
  --ink-soft: #6b5a55;
  --card: #fffaf7;
  --line: rgba(58, 47, 44, 0.08);
  --shadow: 0 12px 32px rgba(90, 60, 50, 0.08);
  --shadow-soft: 0 6px 18px rgba(90, 60, 50, 0.06);
  --radius: 22px;
  --radius-sm: 14px;
  --font-display: "Quicksand", "Apple SD Gothic Neo", sans-serif;
  --font-body: "Nunito", "Apple SD Gothic Neo", sans-serif;
  --max: 1120px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, #ffe4d4 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, #d8efe6 0%, transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, #fff9f5 40%, #f5ebe4 100%);
  background-attachment: fixed;
  line-height: 1.7;
  min-height: 100vh;
}

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

a {
  color: var(--mint-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--coral);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 246, 240, 0.86);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--blush), var(--peach));
  box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0.35);
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 10px 8px 12px;
  border-radius: 6px;
  background: rgba(255, 248, 243, 0.9);
  box-shadow: 8px 6px 0 -4px var(--mint);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.35rem 0.2rem;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta {
  background: var(--mint);
  color: #fff !important;
  padding: 0.55rem 1rem !important;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.nav-cta:hover {
  background: var(--mint-deep);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  position: relative;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before { top: -6px; }
.nav-toggle-bar::after { top: 6px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(var(--header-h) + 0.5rem);
    flex-direction: column;
    align-items: stretch;
    background: var(--card);
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .nav-cta { text-align: center; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--peach), var(--coral));
  color: #fff;
  box-shadow: 0 10px 24px rgba(232, 139, 122, 0.35);
}

.btn-primary:hover { color: #fff; }

.btn-secondary {
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--mint-deep);
  border: 1.5px solid var(--sage);
}

.btn-mint {
  background: var(--mint);
  color: #fff;
  box-shadow: 0 10px 24px rgba(123, 168, 154, 0.35);
}

.btn-mint:hover { color: #fff; background: var(--mint-deep); }

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.card-body { padding: 1.35rem 1.4rem 1.5rem; }

.card-media {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.soft-illu {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 30%, #ffe0d0, transparent 45%),
    radial-gradient(circle at 70% 60%, #cfe8df, transparent 40%),
    linear-gradient(160deg, #fad7c5, #e8f3ee);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.soft-illu::before,
.soft-illu::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.soft-illu::before {
  width: 42%;
  height: 42%;
  top: 18%;
  left: 16%;
  background: rgba(255, 255, 255, 0.55);
}

.soft-illu::after {
  width: 28%;
  height: 28%;
  bottom: 16%;
  right: 18%;
  background: rgba(123, 168, 154, 0.35);
}

.hero-home { padding: 3.5rem 0 2rem; }

.hero-ribbon {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: end;
}

.brand-hero {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  line-height: 0.95;
  margin: 0 0 1rem;
  background: linear-gradient(120deg, var(--ink) 40%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rise-in 0.8s ease both;
}

.hero-lede {
  font-size: 1.15rem;
  max-width: 34ch;
  margin-bottom: 1.5rem;
  animation: rise-in 0.8s ease 0.12s both;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  background: rgba(123, 168, 154, 0.15);
  border-radius: 999px;
  color: var(--mint-deep);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  animation: rise-in 0.8s ease 0.05s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise-in 0.8s ease 0.2s both;
}

.hero-panel {
  background: var(--card);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  animation: float-in 1s ease 0.15s both;
}

.hero-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.signal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.signal-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0.9rem;
  background: linear-gradient(90deg, #fff3ec, #f3faf7);
  border-radius: 14px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
}

.dot.rose { background: var(--rose); }
.dot.peach { background: var(--peach); }

@media (max-width: 800px) {
  .hero-ribbon { grid-template-columns: 1fr; }
}

.section { padding: 3.5rem 0; }
.section-tight { padding: 2.5rem 0; }

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

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

.benefit {
  padding: 1.5rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  transition: transform 0.25s ease;
}

.benefit:hover { transform: translateY(-4px); }

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: var(--sage);
  color: var(--mint-deep);
  font-weight: 800;
}

.course-card .card-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
}

.chip {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #fff0e8;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.chip.mint { background: #e6f3ee; color: var(--mint-deep); }

.quote-stack { display: grid; gap: 1rem; }

.quote {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border-left: 5px solid var(--blush);
}

.quote p { margin-bottom: 0.75rem; color: var(--ink); }
.quote cite { font-style: normal; color: var(--ink-soft); font-size: 0.92rem; font-weight: 700; }

.band {
  background: linear-gradient(120deg, rgba(248, 200, 176, 0.45), rgba(201, 223, 212, 0.55));
  border-radius: 32px;
  padding: 2.25rem;
  box-shadow: var(--shadow-soft);
}

.band-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.band-cta h2 { margin: 0 0 0.4rem; }

.page-hero { padding: 2.75rem 0 1.5rem; }

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.page-hero p {
  max-width: 48ch;
  font-size: 1.05rem;
}

.page-hero-media {
  margin-top: 1.5rem;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 340px;
}

.page-hero-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

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

.price-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: linear-gradient(180deg, #fff8f3, #eef8f3);
  border-color: var(--mint);
  transform: scale(1.02);
}

.price-card h3 { margin: 0 0 0.35rem; }

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0.75rem 0;
}

.price-amount span {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.price-card ul {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  flex: 1;
}

.price-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 1.5rem;
}

.form-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.form-group { margin-bottom: 1.15rem; }

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1.5px solid #edd9cf;
  background: #fff;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(123, 168, 154, 0.2);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.field-error {
  display: none;
  color: #b54a4a;
  font-size: 0.88rem;
  margin-top: 0.35rem;
  font-weight: 600;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #d97878;
}

.form-group.has-error .field-error { display: block; }

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-weight: 700;
}

.form-status.success {
  display: block;
  background: #e6f3ee;
  color: var(--mint-deep);
}

.form-status.error {
  display: block;
  background: #fde8e6;
  color: #a14444;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}

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

.contact-aside {
  background: linear-gradient(160deg, #ffe8da, #e8f4ef);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-aside h2 { margin-top: 0; }

.blog-list { display: grid; gap: 1.25rem; }

.blog-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.blog-item:hover { transform: translateY(-3px); color: inherit; }

.blog-item img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.blog-item-body { padding: 1.25rem 1.25rem 1.25rem 0; }

@media (max-width: 680px) {
  .blog-item { grid-template-columns: 1fr; }
  .blog-item-body { padding: 0 1.25rem 1.25rem; }
}

.article {
  max-width: 720px;
  margin: 0 auto;
}

.article h2 { margin-top: 2rem; }

.article img.cover {
  width: 100%;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
  max-height: 380px;
  object-fit: cover;
}

.modules { display: grid; gap: 0.85rem; }

.module {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.module h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }

.instructor {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.25rem;
  align-items: center;
  background: var(--card);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.instructor img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffe4d6;
}

.faq details {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
}

.faq details p { margin: 0.75rem 0 0; }

.legal {
  max-width: 760px;
  margin: 0 auto;
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.legal h2 { margin-top: 2rem; font-size: 1.25rem; }

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.92rem;
}

.legal th,
.legal td {
  border: 1px solid #edd9cf;
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.legal th { background: #fff3ec; }

.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  line-height: 1;
  background: linear-gradient(120deg, var(--peach), var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}

.site-footer {
  margin-top: 4rem;
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, transparent, rgba(248, 200, 176, 0.25));
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

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

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

.footer-heading {
  font-weight: 800;
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.footer-address { font-size: 0.88rem; line-height: 1.55; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-legal-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 640px;
  margin-inline: auto;
  background: var(--card);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(58, 47, 44, 0.18);
  border: 1px solid var(--line);
  padding: 1.25rem 1.35rem;
  display: none;
  animation: rise-in 0.4s ease both;
}

.cookie-banner.is-visible { display: block; }

.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.inline-error {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  background: #fde8e6;
  color: #a14444;
  border-radius: 12px;
  font-weight: 700;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float-in {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.reveal { animation: rise-in 0.7s ease both; }
.prose-wide { max-width: 62ch; }

.case-study {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  margin-bottom: 1.25rem;
}

.case-study h3 { margin-top: 0; }

.rating {
  color: var(--coral);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.avatar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.mini-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 0;
}

.stat-pill {
  background: var(--card);
  border-radius: 16px;
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-soft);
  min-width: 120px;
}

.stat-pill strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
}

.stat-pill span {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

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

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

.map-cell {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--blush);
}

.map-cell:nth-child(2) { border-top-color: var(--mint); }
.map-cell:nth-child(3) { border-top-color: var(--rose); }
.map-cell:nth-child(4) { border-top-color: var(--peach); }

.map-cell h3 { margin: 0 0 0.4rem; font-size: 1rem; }
