/* ============================================================
   THE COMMONS — shared stylesheet
   Aesthetic: off-white & charcoal, luxury minimal, mobile-first
   ============================================================ */

:root {
  --bg:      #f7f5f0;   /* off-white / warm paper */
  --paper:   #ffffff;
  --ink:     #1b1a18;   /* charcoal */
  --ink-2:   #3a3833;
  --muted:   #75716a;   /* secondary text */
  --line:    #e5e0d7;   /* hairlines */
  --line-2:  #d8d2c6;
  --tile:    #ece8df;   /* image placeholder base */
  --tile-2:  #ddd7ca;
  --accent:  #1b1a18;   /* buttons */
  --gold:    #9a8c6a;   /* subtle premium accent */
  --maxw:    1240px;
  --pad:     clamp(20px, 5vw, 72px);
  --serif:   "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:    "Inter", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; margin: 0; padding: 0; }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; margin: 0; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin: 0 0 18px;
}
.lead { font-size: clamp(17px, 2vw, 20px); color: var(--ink-2); line-height: 1.55; }

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(56px, 9vw, 120px); }
.center { text-align: center; }
.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; border-radius: 2px; transition: all .25s ease; cursor: pointer;
  white-space: nowrap;
}
.btn--solid { background: var(--accent); color: #fff; }
.btn--solid:hover { background: #000; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: #f0ece3; }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 34px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(247,245,240,.9);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand {
  font-family: var(--serif); font-size: 22px; letter-spacing: 0.12em;
  font-weight: 600; text-transform: uppercase;
}
.brand small { display: block; font-family: var(--sans); font-size: 8px; letter-spacing: 0.16em; color: var(--muted); text-align: center; margin-top: 2px; font-weight: 600; }
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  color: var(--ink-2); padding: 4px 0; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--ink); transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.icon-btn { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); display: inline-flex; align-items: center; gap: 6px; }
.cart-count {
  display: inline-grid; place-items: center; min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--ink); color: #fff; border-radius: 999px; font-size: 10.5px; font-weight: 700;
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px 0; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--ink); transition: .3s; }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 60; background: var(--bg);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 24px var(--pad);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .mm-top { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.mm-close { font-size: 26px; line-height: 1; }
.mobile-menu nav { margin-top: 24px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--serif); font-size: 30px; padding: 14px 0; border-bottom: 1px solid var(--line);
}

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero {
  min-height: 100svh; display: flex; align-items: center; position: relative;
  color: #f4f1ea; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(18,17,15,.62) 0%, rgba(18,17,15,.34) 45%, rgba(18,17,15,.82) 100%),
    url('images/hero.jpg') center 20% / cover no-repeat,
    radial-gradient(120% 90% at 70% 20%, #4a463d 0%, #2a2722 45%, #161410 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,.06) 0 2px, transparent 2px 5px);
}
.hero .wrap { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 60px; }
.hero .eyebrow { color: #ccc4b3; }
.hero h1 { font-size: clamp(46px, 9vw, 104px); max-width: 16ch; }
.hero p { max-width: 46ch; margin: 26px 0 38px; font-size: clamp(16px, 2vw, 19px); color: #ded8cb; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.65); }
.hero .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: #cfc8b9;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint span { width: 1px; height: 36px; background: linear-gradient(#cfc8b9, transparent); }

/* ============================================================
   MANIFESTO / INTRO STRIP
   ============================================================ */
.manifesto { text-align: center; }
.manifesto h2 { font-size: clamp(28px, 4.5vw, 48px); max-width: 18ch; margin: 0 auto; }
.manifesto p { max-width: 60ch; margin: 26px auto 0; }
.stat-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(28px, 6vw, 80px);
  margin-top: 56px; border-top: 1px solid var(--line); padding-top: 44px;
}
.stat { text-align: center; }
.stat b { font-family: var(--serif); font-size: 40px; font-weight: 500; display: block; }
.stat span { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.sec-head h2 { font-size: clamp(30px, 4.5vw, 52px); }
.sec-head .link { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; border-bottom: 1px solid var(--ink); padding-bottom: 3px; }

/* ============================================================
   IMAGE PLACEHOLDERS (premium tiles)
   ============================================================ */
.ph {
  position: relative; background: var(--tile); overflow: hidden; isolation: isolate;
  background-image:
    radial-gradient(120% 120% at 25% 15%, rgba(255,255,255,.55), transparent 55%),
    linear-gradient(150deg, var(--tile) 0%, var(--tile-2) 100%);
}
.ph::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: repeating-linear-gradient(135deg, rgba(0,0,0,.025) 0 14px, transparent 14px 28px);
}
.ph-label {
  position: absolute; left: 16px; bottom: 14px; font-size: 10.5px; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(27,26,24,.45); font-weight: 600;
}
/* themed tints so collections feel distinct */
.ph--green  { --tile:#dfe3d3; --tile-2:#c4cdb0; }
.ph--sand   { --tile:#ece2cf; --tile-2:#dccaa9; }
.ph--stone  { --tile:#e6e2da; --tile-2:#cdc7bb; }
.ph--ink    { --tile:#cfccc6; --tile-2:#a7a39b; }
.ph--clay   { --tile:#e9dcd2; --tile-2:#d4bca9; }

/* real photo tiles */
.ph.photo { background-size: cover; background-position: center; background-repeat: no-repeat; }
.ph.photo::before { display: none; }
.ph.photo .ph-label { display: none; }

/* ============================================================
   COLLECTION GRID (homepage preview + ecosystem)
   ============================================================ */
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.collection-card { position: relative; display: block; overflow: hidden; border-radius: 3px; }
.collection-card .ph { aspect-ratio: 4 / 5; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.collection-card:hover .ph { transform: scale(1.04); }
.collection-card .meta {
  position: absolute; inset: auto 0 0 0; padding: 22px; z-index: 2; color: #fff;
  background: linear-gradient(0deg, rgba(15,14,12,.72) 0%, rgba(15,14,12,0) 100%);
}
.collection-card .meta .k { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; opacity: .8; }
.collection-card .meta h3 { font-size: 26px; margin-top: 4px; }
.collection-card .meta .c { font-size: 12px; opacity: .85; margin-top: 4px; letter-spacing: .04em; }
.collection-card.is-locked { pointer-events: none; }
.collection-card .badge {
  position: absolute; top: 16px; left: 16px; z-index: 3; font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 600; background: rgba(255,255,255,.92); color: var(--ink);
  padding: 6px 11px; border-radius: 999px;
}

/* ============================================================
   ECOSYSTEM EXPLAINER BAND
   ============================================================ */
.band { background: var(--ink); color: #ece7dc; }
.band .eyebrow { color: var(--gold); }
.band h2 { color: #fff; font-size: clamp(30px, 4.5vw, 52px); max-width: 20ch; }
.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.flow .step { border-top: 1px solid rgba(255,255,255,.18); padding-top: 22px; }
.flow .step .n { font-family: var(--serif); font-size: 30px; color: var(--gold); }
.flow .step h4 { color: #fff; font-size: 21px; margin: 10px 0 8px; }
.flow .step p { color: #b7b1a4; font-size: 15px; }

/* ============================================================
   COMMUNITY / MEMBERSHIP
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split .ph { aspect-ratio: 5 / 6; border-radius: 3px; }
.feature-list { margin-top: 26px; display: grid; gap: 2px; }
.feature-list li { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); }
.feature-list li .fi { font-family: var(--serif); color: var(--gold); font-size: 18px; }
.feature-list li b { display: block; font-weight: 600; font-size: 15px; }
.feature-list li span { color: var(--muted); font-size: 14.5px; }

/* ============================================================
   EVENTS / DROPS
   ============================================================ */
.drops { display: grid; gap: 0; }
.drop-row {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 24px; align-items: center;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.drop-row:last-child { border-bottom: 1px solid var(--line); }
.drop-row .date { font-family: var(--serif); font-size: 20px; }
.drop-row .date small { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.drop-row h4 { font-size: 22px; }
.drop-row p { color: var(--muted); font-size: 14px; margin-top: 2px; }
.tag { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--gold); }

/* ============================================================
   EMAIL SIGNUP
   ============================================================ */
.signup { text-align: center; }
.signup h2 { font-size: clamp(30px, 4.5vw, 52px); max-width: 16ch; margin: 0 auto; }
.signup p { max-width: 48ch; margin: 18px auto 32px; }
.signup-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.signup-form input {
  flex: 1; padding: 16px 18px; border: 1px solid var(--line-2); background: #fff; border-radius: 2px;
  font-size: 15px; font-family: inherit; color: var(--ink);
}
.signup-form input:focus { outline: none; border-color: var(--ink); }
.fineprint { font-size: 12px; color: var(--muted); margin-top: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #14130f; color: #b7b1a4; padding-block: 72px 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.site-footer .brand { color: #fff; }
.site-footer p { font-size: 14px; max-width: 32ch; margin-top: 18px; }
.footer-col h5 { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: #fff; margin: 0 0 16px; font-weight: 600; font-family: var(--sans); }
.footer-col a { display: block; font-size: 14px; padding: 6px 0; color: #b7b1a4; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12);
  font-size: 12.5px; color: #88837a;
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero { padding-top: 140px; padding-bottom: 8px; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { font-size: clamp(40px, 7vw, 86px); }
.page-hero p { max-width: 56ch; margin-top: 20px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding-top: 110px; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { opacity: .5; }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.pdp { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; padding-top: 28px; }
.gallery { position: sticky; top: 96px; }
.gallery .main { aspect-ratio: 4 / 5; border-radius: 3px; }
.gallery .thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.gallery .thumbs .ph { aspect-ratio: 1; border-radius: 2px; cursor: pointer; border: 1px solid transparent; }
.gallery .thumbs .ph.active { border-color: var(--ink); }

.pdp-info .brandline { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.pdp-info h1 { font-size: clamp(30px, 4vw, 46px); margin: 10px 0 14px; }
.pdp-price { font-size: 22px; font-family: var(--serif); }
.pdp-price .strike { color: var(--muted); text-decoration: line-through; margin-right: 10px; font-size: 18px; }
.pdp-desc { color: var(--ink-2); margin: 22px 0 28px; }
.opt-group { margin-bottom: 24px; }
.opt-group .opt-head { display: flex; justify-content: space-between; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; font-weight: 600; }
.opt-head .chosen { color: var(--ink); }
.swatches { display: flex; gap: 10px; }
.swatch { width: 34px; height: 34px; border-radius: 999px; border: 1px solid var(--line-2); position: relative; cursor: pointer; }
.swatch.active { box-shadow: 0 0 0 1.5px var(--bg), 0 0 0 3px var(--ink); }
.swatch[data-c="bone"]    { background: #ece6da; }
.swatch[data-c="charcoal"]{ background: #2e2c28; }
.swatch[data-c="moss"]    { background: #6b7257; }
.swatch[data-c="clay"]    { background: #b08968; }
.sizes { display: flex; flex-wrap: wrap; gap: 10px; }
.size {
  min-width: 52px; padding: 12px 6px; text-align: center; border: 1px solid var(--line-2);
  border-radius: 2px; font-size: 13px; font-weight: 600; letter-spacing: .04em; transition: .2s;
}
.size:hover { border-color: var(--ink); }
.size.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.size.soldout { color: var(--muted); text-decoration: line-through; cursor: not-allowed; opacity: .55; }
.size-guide { background: none; font-size: 12px; text-decoration: underline; color: var(--muted); }

.buy-row { display: flex; gap: 12px; margin: 28px 0 18px; }
.qty { display: flex; align-items: center; border: 1px solid var(--line-2); border-radius: 2px; }
.qty button { width: 46px; height: 52px; font-size: 18px; color: var(--ink); }
.qty input { width: 40px; text-align: center; border: none; font-size: 15px; font-weight: 600; background: none; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.buy-row .btn { flex: 1; }
.buynow { width: 100%; margin-bottom: 22px; }
.pay-note { display: flex; align-items: center; gap: 10px; justify-content: center; font-size: 12px; color: var(--muted); margin-bottom: 26px; }
.pay-pills { display: flex; gap: 6px; }
.pay-pill { font-size: 9.5px; letter-spacing: .08em; font-weight: 700; padding: 4px 8px; border: 1px solid var(--line-2); border-radius: 3px; color: var(--ink-2); background: #fff; }

.ship-note { display: flex; gap: 12px; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 3px; margin-bottom: 8px; }
.ship-note .fi { font-family: var(--serif); color: var(--gold); font-size: 20px; }
.ship-note b { font-size: 14px; }
.ship-note span { font-size: 13.5px; color: var(--muted); }

/* accordion */
.accordion { margin-top: 22px; border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--ink); }
.acc-head .plus { font-size: 20px; transition: transform .3s; font-family: var(--serif); }
.acc-item.open .acc-head .plus { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-body p { color: var(--muted); font-size: 14.5px; padding-bottom: 22px; margin: 0; }
.acc-body ul { padding-bottom: 22px; }
.acc-body ul li { color: var(--muted); font-size: 14.5px; padding: 3px 0 3px 16px; position: relative; }
.acc-body ul li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }

/* related products */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card .ph { aspect-ratio: 4 / 5; border-radius: 3px; transition: transform .5s ease; }
.product-card:hover .ph { transform: scale(1.03); }
.product-card .pc-brand { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-top: 14px; font-weight: 600; }
.product-card h4 { font-family: var(--sans); font-size: 15px; font-weight: 600; margin: 5px 0 4px; }
.product-card .pc-price { font-size: 14px; color: var(--ink-2); }

/* ---------- toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 120%);
  background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 3px; z-index: 80;
  font-size: 13px; letter-spacing: .04em; transition: transform .4s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.toast.show { transform: translate(-50%, 0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: 1fr; gap: 0; }
  .flow .step { padding-block: 22px; }
  .split { grid-template-columns: 1fr; }
  .split .ph { aspect-ratio: 16/11; }
  .pdp { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .collection-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .signup-form { flex-direction: column; }
  .drop-row { grid-template-columns: 1fr; gap: 6px; }
  .drop-row .btn { justify-self: start; margin-top: 8px; }
  .stat-row { gap: 28px; }
  .buy-row { flex-wrap: wrap; }
}

/* ============================================================
   ABOUT / HAPPY CRUSH
   ============================================================ */
.story { max-width: 62ch; margin: 0 auto; }
.story p { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.75; color: var(--ink-2); margin: 0 0 26px; }
.story .big {
  font-family: var(--serif); font-size: clamp(26px, 4vw, 44px); line-height: 1.12;
  color: var(--ink); margin: 0 0 6px; letter-spacing: -0.01em;
}
.story .big.gap { margin-bottom: 30px; }

.mascot-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.mascot {
  --face: #f0ead8; width: min(330px, 78%); aspect-ratio: 1; margin: 0 auto; position: relative;
  background: radial-gradient(120% 120% at 30% 25%, #fffef9, var(--face));
  border-radius: 50%; border: 2px solid var(--line-2);
  box-shadow: inset 0 -14px 34px rgba(0,0,0,.06), 0 20px 50px rgba(0,0,0,.06);
}
.mascot .eye {
  position: absolute; top: 36%; font-weight: 800; font-size: clamp(30px, 6vw, 52px);
  color: var(--ink); line-height: 1;
}
.mascot .eye.l { left: 26%; }
.mascot .eye.r { right: 26%; }
.mascot .smile {
  position: absolute; left: 50%; top: 50%; transform: translateX(-50%);
  width: 36%; height: 26%; border-bottom: 6px solid var(--ink); border-radius: 0 0 220px 220px;
}
.mascot .heart { position: absolute; right: 16%; top: 18%; color: #e2574c; font-size: clamp(22px, 3.5vw, 34px); }
.mascot-cap { text-align: center; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 16px; }

.legend { display: grid; gap: 4px; margin-top: 10px; }
.legend li { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--line); }
.legend .sym { font-family: var(--serif); font-size: 26px; color: var(--gold); min-width: 30px; text-align: center; line-height: 1.2; }
.legend b { display: block; font-size: 15px; font-weight: 600; }
.legend span { color: var(--muted); font-size: 14.5px; }

.creed { text-align: center; }
.creed .label { justify-content: center; }
.creed .motto { font-family: var(--serif); font-size: clamp(36px, 6.5vw, 76px); line-height: 1.04; margin: 6px 0 18px; }
.creed .welcome { font-size: clamp(18px, 2vw, 22px); color: var(--ink-2); }
.creed .welcome b { font-weight: 600; color: var(--ink); }

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