/* ==========================================================================
   案 A「灯（ともしび）」 — Lantern variant
   Dark sumi background, vertical typography, dramatic lamp glow
   ========================================================================== */

* { box-sizing: border-box; }

html { overflow-x: clip; }

body {
  background: var(--sumi);
  color: var(--paper);
}

img, svg { max-width: 100%; }

body::before {
  content: "";
  position: fixed; inset: 0;
  background-image: url("assets/washi-texture.svg");
  background-size: 400px 400px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}

#app { position: relative; z-index: 1; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  border-radius: 0;
  cursor: pointer; border: 1px solid transparent;
  transition: all var(--dur-base) var(--ease-ink);
  text-decoration: none; line-height: 1;
  user-select: none; white-space: nowrap;
}
.btn:active { transform: translateY(1px); transition-duration: 60ms; }

.btn-primary {
  background: var(--tomoshi); color: var(--sumi);
  position: relative;
}
.btn-primary:hover { background: #e6a942; color: var(--sumi); }

.btn-outline {
  background: transparent; color: var(--paper);
  border-color: rgba(246, 241, 231, 0.4);
}
.btn-outline:hover { background: var(--paper); color: var(--sumi); border-color: var(--paper); }

.btn-ghost { background: transparent; color: var(--paper); }
.btn-ghost:hover { background: rgba(246, 241, 231, 0.08); color: var(--paper); }

.btn-accent { background: var(--shu); color: var(--paper); }
.btn-accent:hover { background: #a3382f; color: var(--paper); }

.btn-sm { padding: 9px 16px; font-size: 12px; }
.btn-lg { padding: 18px 30px; font-size: 15px; }

/* --- Site nav ------------------------------------------------------------- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(26, 22, 19, 0.78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(246, 241, 231, 0.12);
}
.site-nav .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--paper); }
.site-nav .brand img { filter: invert(1) brightness(1.4); }
.brand-text {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  letter-spacing: 0.04em; line-height: 1;
}
.brand-text small {
  display: block; font-family: var(--font-body); font-weight: 400;
  font-size: 9px; letter-spacing: 0.26em; color: rgba(246, 241, 231, 0.5);
  margin-top: 4px; text-transform: lowercase;
}
.nav-links { display: flex; gap: 32px; }
.nav-link {
  font-family: var(--font-body); font-size: 12px; letter-spacing: 0.08em;
  color: rgba(246, 241, 231, 0.7); text-decoration: none;
  position: relative; padding: 6px 0;
  transition: color var(--dur-base) var(--ease-ink);
}
.nav-link:hover { color: var(--paper); text-decoration: none; }
.nav-link.is-active { color: var(--tomoshi); }
.nav-link.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--tomoshi);
}

/* --- Section wrappers ---------------------------------------------------- */
.section {
  position: relative;
  padding: var(--space-9) 0;
}
.section-inner {
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 40px;
}
.section-inner.narrow { max-width: 880px; }

.section-head { margin-bottom: var(--space-7); max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-3xl); line-height: 1.1;
  letter-spacing: -0.01em; margin: 6px 0 12px;
  color: var(--paper);
}
.section-title small {
  display: block; font-family: var(--font-body); font-weight: 400;
  font-size: 12px; letter-spacing: 0.22em;
  color: rgba(246, 241, 231, 0.5); margin-top: 8px; text-transform: lowercase;
}
.section-sub {
  font-family: var(--font-body); font-size: var(--fs-md);
  color: rgba(246, 241, 231, 0.7); margin: 0; line-height: 1.85;
}
.eyebrow { color: var(--tomoshi); }

/* --- HERO — vertical-text dramatic ---------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex; align-items: stretch;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(212, 154, 60, 0.20), transparent 60%),
    var(--sumi);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 110px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
/* Decorative paper used as left-side art */
.hero-paper {
  position: absolute; left: 6%; top: 14%; bottom: 14%; width: 38%;
  background:
    radial-gradient(ellipse at center, rgba(246, 241, 231, 0.04), transparent 60%);
  z-index: 0;
}
.hero-enso {
  position: absolute; left: 12%; top: 22%; z-index: 1;
  animation: drawIn var(--dur-draw) var(--ease-ink) both;
  opacity: 0.5;
}
.hero-enso svg path { stroke: var(--tomoshi) !important; }

/* Vertical title takes the LEFT column */
.hero-vertical {
  position: relative; z-index: 2;
  grid-column: 1;
  writing-mode: vertical-rl;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 1.4; letter-spacing: 0.12em;
  color: var(--paper);
  justify-self: center;
  align-self: center;
  max-height: 70vh;
}
.hero-vertical em { font-style: normal; color: var(--tomoshi); }

.hero-title {
  display: none; /* hide horizontal default; we use vertical instead */
}

.hero .eyebrow { margin-bottom: 24px; }

.hero-lead {
  font-family: var(--font-body); font-size: var(--fs-md);
  line-height: 2; color: rgba(246, 241, 231, 0.82);
  max-width: 38ch; margin: 0 0 40px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-meta {
  display: flex; align-items: center; gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(246, 241, 231, 0.18);
  max-width: 640px;
}
.hero-meta-num {
  font-family: var(--font-display); font-weight: 700; font-size: 28px;
  line-height: 1.1; color: var(--tomoshi);
}
.hero-meta-num.signature-num { font-family: var(--font-hand); font-weight: 600; }
.hero-meta-lbl {
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.18em; color: rgba(246, 241, 231, 0.55);
  margin-top: 6px; text-transform: lowercase;
}
.hero-meta-rule { width: 1px; height: 36px; background: rgba(246, 241, 231, 0.2); }

@keyframes drawIn { from { opacity: 0; transform: rotate(-6deg) scale(0.92); } to { opacity: 0.5; transform: rotate(0) scale(1); } }

/* --- ABOUT ---------------------------------------------------------------- */
.about {
  background: var(--paper);
  color: var(--fg-1);
}
.about .section-title, .about .section-title small { color: var(--fg-1); }
.about .section-title small { color: var(--fg-3); }
.about .eyebrow { color: var(--shu); }

.about-grid {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 80px; align-items: center; margin-top: 32px;
}
.about-copy p { font-size: var(--fs-md); line-height: 1.95; color: var(--fg-1); margin: 0 0 18px; }
.about-copy .lead { color: var(--fg-1); font-weight: 500; }
.about-copy em { font-style: normal; color: var(--shu); font-weight: 600; }
.about-copy .signature { font-family: var(--font-hand); font-size: 22px; color: var(--fg-2); margin-top: 28px; }

.about-aside { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.vertical-quote {
  writing-mode: vertical-lr;
  font-family: var(--font-display); font-weight: 600;
  font-size: 26px; letter-spacing: 0.4em;
  color: var(--fg-1);
  padding: 22px 14px; border-left: 2px solid rgba(246, 241, 231, 0.3);
  display: flex; flex-direction: column;
}
.vertical-quote span { line-height: 1.5; }

/* --- CLASSES — on dark, gold accents -------------------------------------- */
.classes-section { background: var(--sumi); }

.class-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 24px;
  border-top: 1px solid rgba(246, 241, 231, 0.14);
  border-left: 1px solid rgba(246, 241, 231, 0.14);
}
.class-card {
  position: relative;
  background: transparent; color: var(--paper);
  border-radius: 0;
  padding: 40px 32px 32px;
  box-shadow: none;
  display: flex; flex-direction: column; gap: 16px;
  border-right: 1px solid rgba(246, 241, 231, 0.14);
  border-bottom: 1px solid rgba(246, 241, 231, 0.14);
  transition: background var(--dur-base) var(--ease-ink);
}
.class-card:hover { background: rgba(212, 154, 60, 0.06); transform: none; box-shadow: none; }
.class-card.is-featured { transform: none; background: rgba(212, 154, 60, 0.08); }
.class-card.is-featured:hover { transform: none; background: rgba(212, 154, 60, 0.12); }
.class-card.is-featured::after { display: none; }

.class-flag {
  position: absolute; top: -1px; left: -1px;
  background: var(--tomoshi); color: var(--sumi);
  padding: 6px 12px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; border-radius: 0; white-space: nowrap;
}
.class-tag {
  display: inline-block; align-self: flex-start;
  font-family: var(--font-body); font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; color: var(--tomoshi);
  padding: 0; border: none; border-radius: 0;
  text-transform: lowercase; white-space: nowrap;
}
.class-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 32px; margin: 0; color: var(--paper);
  line-height: 1.15;
}
.class-title .romaji { font-family: var(--font-body); font-weight: 400; font-size: 10px; letter-spacing: 0.24em; color: rgba(246, 241, 231, 0.45); }
.class-desc { font-size: 13px; line-height: 1.85; color: rgba(246, 241, 231, 0.72); margin: 0; flex-grow: 1; }
.class-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.class-list li { font-size: 12px; color: rgba(246, 241, 231, 0.72); padding-left: 18px; position: relative; }
.class-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 10px; height: 1px; background: var(--tomoshi);
}
.class-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid rgba(246, 241, 231, 0.14);
  margin-top: 8px;
}
.class-price { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--tomoshi); line-height: 1; }
.class-duration { font-size: 11px; color: rgba(246, 241, 231, 0.45); margin-top: 4px; letter-spacing: 0.1em; }

.class-card .btn-outline { color: var(--paper); border-color: rgba(246, 241, 231, 0.4); }
.class-card .btn-outline:hover { background: var(--paper); color: var(--sumi); border-color: var(--paper); }
.class-card .btn-primary { background: var(--tomoshi); color: var(--sumi); }

.classes-note { color: rgba(246, 241, 231, 0.5); margin-top: 36px; text-align: center; font-size: 12px; }

/* --- SHOP — on washi background ------------------------------------------ */
.shop-section {
  background: var(--paper);
  color: var(--fg-1);
}
.shop-section .section-title, .shop-section .section-title small { color: var(--fg-1); }
.shop-section .section-title small { color: var(--fg-3); }
.shop-section .section-sub { color: var(--fg-2); }
.shop-section .eyebrow { color: var(--shu); }

.shop-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 24px;
}
.product-card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: transform var(--dur-base) var(--ease-ink);
}
.product-card:hover { transform: translateY(-4px); box-shadow: none; }
.product-thumb {
  position: relative; height: 280px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 1px solid var(--paper-edge);
}
.product-char {
  font-family: var(--font-display); font-weight: 700;
  font-size: 180px; line-height: 1; color: var(--sumi);
  opacity: 0.92; transform: rotate(-2deg);
}
.product-stamp { position: absolute; bottom: 16px; right: 16px; }
.product-body { padding: 18px 0 0; }
.product-meta { margin-bottom: 8px; }
.product-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--fg-1); }
.product-meta .romaji { font-size: 10px; color: var(--fg-3); margin-left: 6px; display: block; margin-top: 4px; letter-spacing: 0.2em; text-transform: lowercase; }
.product-desc { font-size: 12.5px; line-height: 1.85; color: var(--fg-2); margin: 0 0 14px; }
.product-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--paper-edge); }
.product-price { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--shu); }
.product-link { font-size: 12px; color: var(--fg-1); text-decoration: none; font-weight: 500; }
.product-link:hover { color: var(--shu); }

.shop-section .classes-note { color: var(--fg-3); font-size: 12px; }

/* --- TEACHER — on dark ---------------------------------------------------- */
.teacher-section {
  background: var(--sumi);
  padding: var(--space-9) 0;
}
.teacher-grid {
  display: grid; grid-template-columns: 360px 1fr;
  gap: 80px; align-items: center;
}
.portrait-frame {
  position: relative;
  background: linear-gradient(180deg, #2d2723, var(--sumi));
  border-radius: 0;
  border: 1px solid rgba(246, 241, 231, 0.12);
  aspect-ratio: 3 / 4;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.portrait-vertical {
  writing-mode: vertical-rl;
  font-family: var(--font-display); font-weight: 700;
  font-size: 64px; letter-spacing: 0.18em;
  color: var(--tomoshi);
  display: flex; flex-direction: column;
}
.portrait-vertical span { line-height: 1.2; }
.portrait-caption {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  font-family: var(--font-body); font-size: 9px;
  letter-spacing: 0.2em; color: rgba(246, 241, 231, 0.35);
  text-transform: lowercase; text-align: center;
}
.portrait-hanko { position: absolute; top: 18px; right: 18px; }

.teacher-copy h2 { margin-bottom: 12px; color: var(--paper); }
.teacher-copy .romaji { display: inline; font-size: 0.32em; margin-left: 12px; vertical-align: middle; color: rgba(246, 241, 231, 0.55); }
.teacher-copy .lead { font-size: var(--fs-md); margin: 0 0 18px; color: var(--paper); font-weight: 500; }
.teacher-copy p { line-height: 1.95; color: rgba(246, 241, 231, 0.78); margin: 0 0 14px; }

.teacher-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.social-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: transparent; border: 1px solid rgba(246, 241, 231, 0.2);
  border-radius: 0; font-size: 12px;
  color: var(--paper); text-decoration: none;
  transition: all var(--dur-base) var(--ease-ink);
}
.social-pill:hover { border-color: var(--tomoshi); color: var(--tomoshi); transform: translateY(-1px); text-decoration: none; }
.social-pill .rom { font-family: var(--font-mono); font-size: 11px; color: rgba(246, 241, 231, 0.55); }
.social-pill:hover .rom { color: var(--tomoshi); }

/* --- CONTACT -------------------------------------------------------------- */
.contact-section {
  background: var(--paper);
  color: var(--fg-1);
  padding: var(--space-9) 0;
}
.contact-section .section-title, .contact-section .section-title small, .contact-section .section-sub { color: var(--fg-1); }
.contact-section .section-title small { color: var(--fg-3); }
.contact-section .section-sub { color: var(--fg-2); }
.contact-section .eyebrow { color: var(--shu); }

.contact-form {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px 28px; margin-top: 32px;
}
.field { display: block; }
.field-full { grid-column: 1 / -1; }
.field-lbl {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  color: var(--fg-2); margin-bottom: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
}
.field-lbl .opt { font-weight: 400; color: var(--fg-3); margin-left: 4px; text-transform: none; letter-spacing: 0; }
.input, .textarea, .select {
  width: 100%; box-sizing: border-box;
  padding: 14px 0;
  font-family: var(--font-body); font-size: 14px;
  background: transparent; color: var(--fg-1);
  border: none; border-bottom: 1px solid var(--paper-edge);
  border-radius: 0;
  transition: border-color var(--dur-fast) var(--ease-ink);
}
.input:focus, .textarea:focus, .select:focus { outline: none; border-bottom-color: var(--sumi); }
.textarea { resize: vertical; min-height: 80px; line-height: 1.7; }

.radio-row { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-chip {
  display: inline-flex; align-items: center;
  padding: 10px 18px; cursor: pointer;
  font-family: var(--font-body); font-size: 13px;
  border: 1px solid var(--paper-edge);
  background: transparent;
  border-radius: 0; white-space: nowrap;
  transition: all var(--dur-fast) var(--ease-ink);
  color: var(--fg-2);
}
.radio-chip input { display: none; }
.radio-chip:hover { border-color: var(--sumi); color: var(--fg-1); }
.radio-chip.is-on { background: var(--sumi); color: var(--paper); border-color: var(--sumi); }

.contact-actions {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 24px;
  margin-top: 12px;
}
.contact-actions .caption { margin: 0; color: var(--fg-3); }

.contact-thanks {
  text-align: center; padding: 56px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.contact-thanks .hanko { transform: rotate(-4deg); margin-bottom: 6px; }

/* --- FOOTER -------------------------------------------------------------- */
.site-footer {
  background: var(--sumi); color: var(--paper);
  padding: var(--space-8) 40px var(--space-5);
  border-top: 1px solid rgba(246, 241, 231, 0.12);
}
.footer-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 2fr; gap: 56px;
  padding-bottom: var(--space-7);
  border-bottom: 1px solid rgba(246, 241, 231, 0.12);
}
.footer-brand { display: flex; gap: 18px; align-items: flex-start; }
.footer-brand img { filter: invert(1) brightness(1.4); opacity: 0.95; }
.footer-name {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  line-height: 1.2; margin-bottom: 4px;
}
.footer-rom {
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: 0.24em; color: rgba(246, 241, 231, 0.5);
  text-transform: lowercase;
}
.footer-org {
  font-family: var(--font-body); font-size: 12px;
  color: rgba(246, 241, 231, 0.55); margin-top: 10px;
}
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-cols > div { display: flex; flex-direction: column; gap: 10px; }
.footer-h {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  margin-bottom: 8px; color: var(--tomoshi); letter-spacing: 0.08em;
}
.footer-cols a {
  font-family: var(--font-body); font-size: 13px;
  color: rgba(246, 241, 231, 0.7); text-decoration: none;
  transition: color var(--dur-fast) var(--ease-ink);
}
.footer-cols a:hover { color: var(--paper); text-decoration: none; }

.footer-bottom {
  max-width: var(--container); margin: 0 auto;
  padding-top: var(--space-5);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: 11px;
  color: rgba(246, 241, 231, 0.45); letter-spacing: 0.08em;
}
.footer-mini { font-family: var(--font-hand); font-size: 13px; letter-spacing: 0; color: var(--tomoshi); }

/* --- Hamburger menu ------------------------------------------------------- */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 40px; height: 40px;
  background: transparent; border: none; cursor: pointer; padding: 0;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--paper);
  transition: all 0.25s var(--ease-ink);
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-cta-mobile { display: none; }

/* --- Responsive: tablet (≤900px) ----------------------------------------- */
@media (max-width: 900px) {
  .site-nav { padding: 0 20px; }
  .nav-hamburger { display: flex; }
  .nav-cta-desktop { display: none; }

  .nav-links {
    display: none;
    position: fixed; inset: var(--nav-h) 0 0 0;
    background: rgba(26, 22, 19, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column; align-items: stretch;
    padding: 32px 24px 40px;
    gap: 4px;
    overflow-y: auto;
    z-index: 49;
  }
  .nav-links.is-open { display: flex; }
  .nav-link {
    font-size: 18px; padding: 14px 0;
    border-bottom: 1px solid rgba(246, 241, 231, 0.12);
  }
  .nav-cta-mobile { display: inline-flex; align-self: flex-start; margin-top: 20px; }

  .section { padding: var(--space-7) 0; }
  .section-inner { padding: 0 20px; }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 80px 20px 56px; }
  .hero-vertical { font-size: 56px; max-height: 50vh; }
  .hero-paper { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-aside { flex-direction: row; }

  .class-grid { grid-template-columns: 1fr 1fr; }
  .class-card { padding: 28px 20px 20px; }
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .teacher-grid { grid-template-columns: 1fr; gap: 32px; }
  .portrait-frame { max-width: 280px; margin: 0 auto; }

  .contact-form { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 20px var(--space-6); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: var(--space-7) 0 var(--space-5); }
  .footer-bottom { padding: var(--space-5) 20px 0; flex-direction: column; gap: 8px; text-align: center; }
}

/* --- Responsive: phone (≤480px) ------------------------------------------ */
@media (max-width: 480px) {
  .site-nav { padding: 0 16px; }
  .brand-text { font-size: 16px; }

  .section-inner { padding: 0 16px; }
  .hero-inner { padding: 60px 16px 48px; }
  .hero-vertical { display: none; }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }

  .class-grid, .shop-grid { grid-template-columns: 1fr; }
  .product-thumb { height: 200px; }
  .product-char { font-size: 140px; }

  .teacher-links { gap: 8px; }
  .social-pill { padding: 8px 14px; font-size: 12px; }

  .footer-cols { grid-template-columns: 1fr; }
  .footer-inner { padding: 0 16px var(--space-5); }
  .footer-bottom { padding: var(--space-4) 16px 0; }
}
