/* ============================================================
   Pages — Direction A "Guidepost calm"
   Homepage sections (inner-page styles appended per build task)
   ============================================================ */

/* ---------------- HERO ---------------- */
.hero { padding-top: clamp(2.5rem, 5vw, 4.5rem); padding-bottom: clamp(2rem, 4vw, 3rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy .eyebrow { color: var(--peri); }
.hero-sub { font-size: 1.18rem; color: var(--ink-soft); max-width: 46ch; margin-top: 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-lang { margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid var(--ink-line); }

.hero-media { position: relative; }
.hero-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream-deep);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5 / 5.4; }
.hero-stat {
  position: absolute;
  left: -18px; bottom: -22px;
  background: var(--white);
  border: 1px solid var(--ink-line);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.3rem;
  display: flex; flex-direction: column;
  max-width: 190px;
}
.hero-stat-num { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; line-height: 1; color: var(--peri); }
.hero-stat-label { font-size: .86rem; color: var(--ink-soft); margin-top: .3rem; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: .8rem 2rem;
  margin-top: clamp(2.4rem, 5vw, 3.5rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--ink-line);
}
.hero-trust span {
  position: relative;
  font-weight: 600; font-size: .9rem; color: var(--ink-soft);
  padding-left: 1.4rem;
}
.hero-trust span::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--sage);
}

/* ---------------- STATEMENT ---------------- */
.statement { text-align: center; padding-block: clamp(3rem, 6vw, 5rem); }
.statement .h-title { margin: .3rem 0 1.2rem; max-width: 22ch; margin-inline: auto; }
/* let the statement copy breathe across the band instead of hugging the left */
.statement .sec-lede { max-width: 70ch; margin-inline: auto; }

/* ---------------- VALUES ---------------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.value-card {
  background: var(--white);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
}
.value-ico {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px; border-radius: var(--r-sm);
  background: var(--peri-soft); color: var(--peri-deep);
  margin-bottom: 1.2rem;
}
.value-ico svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 1.22rem; margin-bottom: .6rem; }
.value-card p { color: var(--ink-soft); font-size: .98rem; }

/* ---------------- PROGRAMMES ---------------- */
.prog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.prog-card {
  background: var(--white);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.prog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prog-media { position: relative; aspect-ratio: 4 / 3.2; overflow: hidden; }
.prog-media img { width: 100%; height: 100%; object-fit: cover; }
.prog-media--block { display: grid; place-items: center; }
.prog-media--sage { background: var(--sage-soft); }
.prog-media-word {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.5rem; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--sage); text-align: center;
}
.prog-age { position: absolute; top: .8rem; left: .8rem; background: rgba(255,255,255,.94); color: var(--ink); }
.prog-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.prog-body h3 { font-size: 1.18rem; }
.prog-body p { color: var(--ink-soft); font-size: .94rem; flex: 1; }
.prog-body .arrow-link { margin-top: .4rem; }

/* ---------------- FEATURE ---------------- */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.feature-media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.feature-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5 / 4; }
.feature-copy .h-title { margin: .3rem 0 1.1rem; }
.feature-copy > p { color: var(--ink-soft); font-size: 1.05rem; }
.feature-list { margin: 1.4rem 0 1.8rem; display: grid; gap: .7rem; }
.feature-list li { position: relative; padding-left: 1.9rem; color: var(--ink); }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: .34em;
  width: 18px; height: 10px; border-left: 2px solid var(--peri); border-bottom: 2px solid var(--peri);
  transform: rotate(-45deg); border-radius: 1px;
}

/* ---------------- STATS BAND ---------------- */
.stats-band { background: var(--ink); color: #fff; padding-block: clamp(3rem, 6vw, 4.5rem); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat { display: flex; flex-direction: column; gap: .5rem; }
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; color: #fff; }
.stat-num-unit { font-size: .5em; font-weight: 600; margin-left: .1em; color: rgba(255,255,255,.75); }
.stat-label { color: rgba(255,255,255,.72); font-size: .95rem; }
.stat + .stat { position: relative; }
@media (min-width: 741px) {
  .stat + .stat::before { content: ""; position: absolute; left: -1rem; top: 12%; height: 76%; width: 1px; background: rgba(255,255,255,.16); }
}

/* ---------------- GALLERY ---------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1.2rem;
}
.gallery-item { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); margin: 0; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1rem .9rem;
  color: #fff; font-size: .9rem; font-weight: 500;
  background: linear-gradient(to top, rgba(38,39,107,.72), transparent);
}

/* ---------------- VOICES ---------------- */
.voices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.quote-card {
  background: var(--white);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-sm);
  margin: 0;
}
.quote-card blockquote {
  margin: 0 0 1.4rem;
  font-size: 1.16rem; line-height: 1.55; color: var(--ink);
  font-weight: 500;
}
.quote-card blockquote::before { content: "\201C"; font-family: var(--font-display); color: var(--peri); font-size: 2.4rem; line-height: 0; vertical-align: -.35em; margin-right: .1em; }
.quote-card figcaption { display: flex; flex-direction: column; }
.q-name { font-weight: 700; color: var(--ink); }
.q-role { color: var(--ink-soft); font-size: .92rem; }

/* ---------------- SHOP TEASER ---------------- */
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.teaser-card {
  background: var(--white);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
}
.teaser-art {
  width: 100%; aspect-ratio: 4 / 3;
  border-radius: var(--r); margin-bottom: .6rem;
  display: grid; place-items: center; overflow: hidden;
  background: var(--cream-deep);
}
.teaser-art .goodie-svg { width: 100%; height: 100%; }
.teaser-card h3 { font-size: 1.05rem; }
.teaser-card .price { font-size: 1.05rem; }
.teaser-card .btn { margin-top: .3rem; }

/* ---------------- ADMISSIONS CTA ---------------- */
.admissions-cta { background: var(--peri); color: #fff; padding-block: clamp(3.5rem, 7vw, 5.5rem); }
.eyebrow--light { color: rgba(255,255,255,.82); }
.admissions-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.admissions-copy .h-title { color: #fff; margin: .3rem 0 1rem; }
.admissions-copy p { color: rgba(255,255,255,.9); max-width: 44ch; margin-bottom: 1.8rem; }
.steps { display: grid; gap: 1.1rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; }
.step-n {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1.5px solid rgba(255,255,255,.5);
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: #fff; flex: none;
}
.step h3 { color: #fff; font-size: 1.1rem; margin-bottom: .2rem; }
.step p { color: rgba(255,255,255,.85); font-size: .95rem; }

/* ---------------- FIND US ---------------- */
.find-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.find-card {
  background: var(--white);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.find-head { padding: 1.5rem 1.6rem 1.2rem; }
.find-head h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.find-head p { color: var(--ink-soft); font-size: .95rem; }
.map-frame { aspect-ratio: 16 / 10; }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; border-top: 1px solid var(--ink-line); }

/* ---------------- Responsive ---------------- */
@media (max-width: 1000px) {
  .prog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.2rem; }
  .stat + .stat::before { display: none; }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 520px; }
  .feature-grid, .admissions-inner, .find-grid, .voices-grid { grid-template-columns: 1fr; }
  .feature-media { order: -1; }
  .values-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .gallery-grid { grid-auto-rows: 200px; }
}
@media (max-width: 620px) {
  .teaser-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   INNER PAGES — shared building blocks (Direction A)
   ============================================================ */

/* Page hero band */
.page-hero { background: var(--cream-deep); padding-block: clamp(3rem, 6vw, 4.6rem); text-align: center; }
.page-hero .eyebrow { color: var(--peri); }
.page-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin: .2rem 0 1rem; }
.page-hero .sec-lede { margin-inline: auto; }

/* Reusable CTA band */
.cta-band { background: var(--peri); color: #fff; text-align: center; padding-block: clamp(3rem, 6vw, 4.6rem); }
.cta-band .eyebrow { color: rgba(255,255,255,.82); }
.cta-band h2 { color: #fff; margin-bottom: .7rem; }
.cta-band p { color: rgba(255,255,255,.9); margin: 0 auto 1.7rem; max-width: 48ch; }
.cta-band .cta-hours { font-size: .95rem; color: rgba(255,255,255,.8); margin-bottom: 1.4rem; }

/* Alternating programme detail rows */
.prog-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
  padding-block: clamp(2.6rem, 5vw, 4rem);
  border-bottom: 1px solid var(--ink-line);
}
.prog-detail:last-of-type { border-bottom: none; }
.prog-detail--rev .prog-detail-media { order: 2; }
.prog-detail-media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow); object-fit: cover; }
.prog-detail-media--block {
  aspect-ratio: 5 / 4; border-radius: var(--r-lg);
  display: grid; place-items: center; text-align: center; padding: 2rem;
}
.prog-detail-media--sage { background: var(--sage-soft); color: var(--sage); }
.prog-detail-block-word { font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; line-height: 1.1; letter-spacing: -0.02em; }
.prog-detail h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: .7rem 0 .3rem; }
.schedule { color: var(--peri-deep); font-weight: 600; font-size: .92rem; margin-bottom: 1rem; }

/* tick list */
.tick { display: grid; gap: .75rem; margin: 1.2rem 0 1.7rem; }
.tick li { position: relative; padding-left: 1.9rem; color: var(--ink); }
.tick li::before {
  content: ""; position: absolute; left: 0; top: .32em;
  width: 18px; height: 10px; border-left: 2px solid var(--peri); border-bottom: 2px solid var(--peri);
  transform: rotate(-45deg); border-radius: 1px;
}

/* chip row */
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }

/* How-we-teach block */
.teach-block { text-align: center; }
.teach-block .h-title { margin: .3rem 0 2.2rem; }
.five-elements { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; text-align: left; margin-bottom: 3rem; }
.five-elements > div { padding: 1.4rem 1.3rem; background: var(--white); border: 1px solid var(--ink-line); border-radius: var(--r); }
.five-elements dt { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); margin-bottom: .35rem; }
.five-elements dd { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.teach-extra { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 5vw, 3.5rem); text-align: left; align-items: center; }
.teach-extra .h-sub { margin-bottom: .5rem; }
.teach-extra figure { margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.teach-extra figure img { width: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

@media (max-width: 900px) {
  .prog-detail { grid-template-columns: 1fr; }
  .prog-detail--rev .prog-detail-media { order: -1; }
  .prog-detail-media { max-width: 520px; }
  .five-elements { grid-template-columns: repeat(2, 1fr); }
  .teach-extra { grid-template-columns: 1fr; }
  .teach-extra figure { order: -1; max-width: 520px; }
}
@media (max-width: 520px) { .five-elements { grid-template-columns: 1fr; } }

/* ---- About page ---- */
.about-lead { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-lead-media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 5 / 4; }
.about-lead .h-title { margin-bottom: 1rem; }
.about-lead p { color: var(--ink-soft); }
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.4rem; }
.letter-card { max-width: 760px; margin-inline: auto; background: var(--white); border: 1px solid var(--ink-line); border-radius: var(--r-lg); padding: 2.6rem clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow-sm); }
.letter-card p { font-size: 1.16rem; line-height: 1.7; color: var(--ink); }
.letter-card p::first-letter { }
.letter-sign { margin-top: 1.4rem; color: var(--peri-deep); font-weight: 600; font-size: 1rem; }
.mission-line { text-align: center; max-width: 24ch; margin-inline: auto; }
.pillar { background: var(--white); border: 1px solid var(--ink-line); border-radius: var(--r-lg); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); }
.pillar h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.pillar p { color: var(--ink-soft); font-size: .95rem; }
.signoff { text-align: center; color: var(--ink-soft); margin-top: 2rem; font-style: italic; }
@media (max-width: 860px) {
  .about-lead { grid-template-columns: 1fr; }
  .about-lead-media { order: -1; max-width: 520px; }
  .about-values { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}

/* ---- Admissions page ---- */
.spine { max-width: 760px; margin-inline: auto; display: grid; gap: 1.4rem; }
.spine-step { display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; align-items: start; background: var(--white); border: 1px solid var(--ink-line); border-radius: var(--r-lg); padding: 1.6rem 1.8rem; box-shadow: var(--shadow-sm); }
.spine-step .step-n { background: var(--peri-soft); color: var(--peri-deep); border: none; }
.spine-step h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.spine-step p { color: var(--ink-soft); font-size: .96rem; }
.fees-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.fee-card { background: var(--white); border: 1px solid var(--ink-line); border-radius: var(--r-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); text-align: center; }
.fee-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.fee-price { font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; color: var(--peri); }
.fee-card p { color: var(--ink-soft); font-size: .9rem; margin-top: .3rem; }
.accordion { max-width: 760px; margin-inline: auto; }
.acc-item { border-bottom: 1px solid var(--ink-line); }
.acc-btn { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem .2rem; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--ink); }
.acc-btn::after { content: "+"; color: var(--peri); font-weight: 700; font-size: 1.4rem; transition: transform .25s var(--ease); }
.acc-btn[aria-expanded="true"]::after { transform: rotate(45deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.acc-panel-inner { padding: 0 .2rem 1.2rem; color: var(--ink-soft); }
@media (max-width: 780px) { .fees-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; } }

/* ---- Contact page ---- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 3.5rem); }
.contact-card { background: var(--white); border: 1px solid var(--ink-line); border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.contact-card h3 { font-size: 1.15rem; margin: 1.2rem 0 .4rem; }
.contact-card h3:first-child { margin-top: 0; }
.contact-card p, .contact-card a { color: var(--ink-soft); }
.contact-card a:hover { color: var(--peri-deep); }
.contact-maps { display: grid; gap: 1.4rem; }
.contact-maps .map-frame { border: 1px solid var(--ink-line); border-radius: var(--r-lg); overflow: hidden; }
.contact-maps .map-frame iframe { border-top: none; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---- Shop ---- */
.filter-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.filter-pill { padding: .5rem 1.15rem; border-radius: var(--r-pill); border: 1px solid var(--ink-line); background: var(--white); font-family: var(--font-body); font-weight: 600; font-size: .9rem; color: var(--ink-soft); transition: background .18s ease, color .18s ease, border-color .18s ease; }
.filter-pill:hover { border-color: var(--peri); color: var(--peri-deep); }
.filter-pill[aria-pressed="true"] { background: var(--peri); color: #fff; border-color: var(--peri); }
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.shop-card { background: var(--white); border: 1px solid var(--ink-line); border-radius: var(--r-lg); padding: 1.1rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .45rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-link { display: block; color: inherit; }
.shop-card-media, .product-media { position: relative; display: grid; place-items: center; overflow: hidden; }
.shop-card-media { aspect-ratio: 4 / 3; border-radius: var(--r); margin-bottom: .3rem; }
.shop-card-media--peri, .product-media--peri { background: var(--peri-soft); color: var(--peri-deep); }
.shop-card-media--sage, .product-media--sage { background: var(--sage-soft); color: var(--sage); }
.shop-card-media--sand, .product-media--sand { background: var(--sand); color: #A8763E; }
.shop-monogram { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; opacity: .92; }
/* product media: photo fills the frame, illustration sits on the tint */
.shop-card-media img, .product-media img { width: 100%; height: 100%; object-fit: cover; }
.shop-card-media .goodie-svg, .product-media .goodie-svg { width: 100%; height: 100%; }
.shop-badge, .product-badge { position: absolute; top: .6rem; left: .6rem; background: var(--ink); color: #fff; font-family: var(--font-body); font-size: .7rem; font-weight: 600; letter-spacing: .04em; padding: .26rem .62rem; border-radius: var(--r-pill); }
.shop-badge--new, .product-badge--new { background: var(--sage); }
.shop-card h3 { font-size: 1.02rem; margin-top: .3rem; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.shop-card .btn { margin-top: .3rem; }

/* ---- Product detail ---- */
.crumbs { margin-bottom: 1.4rem; }
.crumbs .arrow-link .arw { display: inline-block; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.product-media { aspect-ratio: 1 / 1; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.product-badge { top: 1rem; left: 1rem; font-size: .78rem; padding: .3rem .8rem; }
.product-monogram { font-family: var(--font-display); font-weight: 700; font-size: clamp(4rem, 12vw, 6.5rem); opacity: .92; }
.product-info h1 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 1rem; }
.product-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.product-price { font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; color: var(--peri); margin-bottom: 1.2rem; }
.product-details { color: var(--ink-soft); margin-bottom: 1.2rem; }
.product-details p { margin-bottom: .8rem; }
.product-note { font-size: .9rem; color: var(--ink-soft); background: var(--cream-deep); padding: .8rem 1rem; border-radius: var(--r-sm); margin-bottom: 1.4rem; }
.qty-stepper { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.qbox { display: inline-flex; align-items: center; gap: .6rem; border: 1px solid var(--ink-line); border-radius: var(--r-pill); padding: .3rem .6rem; }
.product-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.related-row { margin-top: clamp(3rem, 6vw, 4.5rem); }
.empty-state { text-align: center; max-width: 520px; margin-inline: auto; padding-block: 2rem; }
.empty-state p { color: var(--ink-soft); margin: .6rem 0 1.4rem; }
@media (max-width: 1000px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .product-layout { grid-template-columns: 1fr; } .product-media { max-width: 460px; } }
@media (max-width: 480px) { .shop-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; } }

/* ---- Success page ---- */
.success-wrap { max-width: 560px; margin-inline: auto; text-align: center; }
.success-check { width: 82px; height: 82px; margin: 0 auto 1.4rem; fill: none; stroke: var(--sage); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }
.success-check circle { opacity: .5; }
.success-wrap .h-hero { font-size: clamp(2rem, 4vw, 2.8rem); }
.success-ref { display: inline-block; margin: .7rem 0 1.6rem; color: var(--ink-soft); font-size: .9rem; letter-spacing: .04em; }
.order-card { text-align: left; background: var(--white); border: 1px solid var(--ink-line); border-radius: var(--r-lg); padding: 1.4rem 1.6rem; box-shadow: var(--shadow-sm); margin-bottom: 1.6rem; }
.order-line { display: flex; justify-content: space-between; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid var(--ink-line); }
.order-line:last-of-type { border-bottom: none; }
.order-total { display: flex; justify-content: space-between; padding-top: .9rem; margin-top: .3rem; border-top: 1px solid var(--ink-line); font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.success-note { color: var(--ink-soft); margin-bottom: 1.6rem; }
.success-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
