/* =========================================================
   Variant A — "Soft Linen Studio"
   Editorial. Light cream, generous white
   space, serif-forward, gallery-like.
   ========================================================= */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,400&family=Inter+Tight:wght@300;400;500&family=Caveat:wght@500&display=swap');

.opn-app { min-height: 100vh; display: flex; flex-direction: column; }
.opn-app main { flex: 1; }

/* The HTML hidden attribute must always win — several display: rules
   (.btn, .modal-scrim, …) would otherwise override it and leak hidden
   wizard controls / modals onto the page. */
[hidden] { display: none !important; }

/* Clip the off-canvas mobile menu so it can't create horizontal scroll.
   `clip` (not `hidden`) doesn't establish a scroll container, so it leaves
   the sticky header working. */
html, body { overflow-x: clip; }

/* ---------- Header ---------- */
.opn-header {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-2) var(--ease);
}
/* The blurred backdrop lives on a pseudo-element, NOT on .opn-header itself:
   backdrop-filter on the header would create a containing block that traps the
   fixed-position mobile nav panel (clamping it to the header height). */
.opn-header::before {
  content: "";
  position: absolute; inset: 0;
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  backdrop-filter: blur(14px);
  z-index: -1;
}
.opn-header.scrolled { border-color: var(--line); }
.opn-header-inner {
  width: min(1600px, 100% - 48px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 0;
  gap: 20px;
}
.opn-logo {
  justify-self: start;
  background: transparent; border: 0; cursor: pointer;
  display: flex; flex-direction: column; align-items: flex-start;
  font-family: var(--font-serif);
  color: var(--ink);
  padding: 0;
}
.opn-logo .logo-line1 { font-size: 20px; font-style: italic; letter-spacing: 0.02em; line-height: 1; }
.opn-logo .logo-line2 { font-size: 11px; font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.35em; margin-top: 3px; color: var(--ink-mute); }

.opn-nav { display: flex; gap: 28px; }
.opn-navlink {
  background: transparent; border: 0; cursor: pointer;
  font-family: var(--font-sans);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 0;
  position: relative;
  transition: color var(--dur-1);
}
.opn-navlink::after {
  content: ''; position: absolute; bottom: 2px; left: 50%;
  width: 0; height: 1px; background: var(--ink);
  transition: width var(--dur-2) var(--ease), left var(--dur-2) var(--ease);
}
.opn-navlink:hover, .opn-navlink.active { color: var(--ink); }
.opn-navlink.active::after { width: 100%; left: 0; }

.opn-header-end {
  justify-self: end;
  display: flex; align-items: center; gap: 18px;
}
.opn-langswitch {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; font-family: var(--font-sans);
  letter-spacing: 0.1em;
}
.opn-langswitch button,
.opn-langswitch a {
  background: transparent; border: 0; cursor: pointer;
  color: var(--ink-mute);
  /* ≥40px tap target */
  display: inline-flex; align-items: center;
  min-height: 40px; padding: 4px 8px;
  text-decoration: none;
  transition: color var(--dur-1);
}
.opn-langswitch a { text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 3px; }
.opn-langswitch button.on,
.opn-langswitch a.on {
  color: var(--ink);
  font-weight: 600;
  text-decoration-color: var(--ink);
}
.opn-langswitch span { color: var(--line); }

.opn-cart-btn {
  background: transparent; border: 0; cursor: pointer;
  position: relative; color: var(--ink);
  /* ≥40px tap target */
  min-width: 40px; min-height: 40px;
  display: inline-grid; place-items: center;
}
.cart-dot {
  position: absolute; top: -2px; right: -2px;
  background: var(--accent); color: var(--bg);
  font-size: 10px; font-family: var(--font-sans);
  min-width: 16px; height: 16px; border-radius: 10px;
  display: grid; place-items: center; padding: 0 4px;
  font-weight: 500;
}

/* ---------- Hero ---------- */
.hero { padding: clamp(32px, 6vw, 80px) 0 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  min-height: 72vh;
}
.hero-left { padding: 20px 0; }
.hero-left .eyebrow { margin-bottom: 28px; }
.hero-title {
  font-size: clamp(3.5rem, 8.5vw, 8rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0 0 36px;
  font-style: italic;
}
.hero-title .hero-line { display: block; }
.hero-title .hero-line:nth-child(2) { padding-left: 1.5em; font-style: normal; font-family: var(--font-serif); font-weight: 400; }
.hero-lede {
  max-width: 440px;
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-right {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 72vh;
  min-height: 560px;
  position: relative;
}
.hero-photo { overflow: hidden; border-radius: 2px; }
.hero-photo.big { grid-row: span 2; }
.hero-photo.sm1 { }
.hero-photo.sm2 { }

.hero-marquee {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 28px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--step-1);
  color: var(--ink-soft);
  animation: marquee 30s linear infinite;
}
.marquee-track span { display: inline-block; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 10vw, 140px) 0; }
.section-alt { background: var(--bg-alt); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(32px, 5vw, 60px);
  flex-wrap: wrap;
}
.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-head h2 { margin: 12px 0 10px; max-width: 16ch; }
.section-head .eyebrow { margin-bottom: 8px; }
.section-head p { color: var(--ink-soft); max-width: 48ch; margin: 0; }

.link-arrow {
  background: transparent; border: 0; cursor: pointer;
  font-family: var(--font-sans); font-size: 13px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  transition: color var(--dur-1), border-color var(--dur-1);
  text-decoration: none;
}
.link-arrow:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px 32px;
}
.product-grid-wide { gap: 64px 32px; }
.product-card {
  position: relative;
  transition: transform var(--dur-3) var(--ease);
}
.product-card:hover { transform: translateY(-4px); }
.product-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.product-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  border-radius: 2px;
}
.product-photo > * { transition: transform var(--dur-4) var(--ease); }
.product-card:hover .product-photo > * { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-sans);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
  background: var(--bg);
  padding: 6px 10px;
  border-radius: 999px;
}
.product-meta {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 16px;
}
.product-name {
  font-size: var(--step-1);
  font-style: italic;
  font-weight: 400;
}
.product-price {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}
.product-add {
  margin-top: 4px;
  background: transparent; border: 0;
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--line);
  /* Top cushion lifts the tap target to ~40px (touch guideline) while the
     underline stays tight to the label. */
  padding: 20px 0 8px;
  cursor: pointer;
  transition: color var(--dur-1), border-color var(--dur-1);
}
.product-add:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px 32px;
  counter-reset: step;
}
.process-step { padding-top: 24px; border-top: 1px solid var(--line); }
.process-num {
  font-size: 48px;
  font-weight: 300;
  color: var(--ink-mute);
  line-height: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.process-step h3 {
  font-size: var(--step-2);
  margin: 0 0 12px;
}
.process-step p {
  color: var(--ink-soft);
  margin: 0;
  max-width: 28ch;
}

/* ---------- Lessons teaser ---------- */
.section-lessons-teaser { padding: clamp(64px, 10vw, 140px) 0; }
.lessons-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.teaser-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.teaser-copy h2 { margin: 14px 0 18px; }
.teaser-copy p { color: var(--ink-soft); max-width: 44ch; margin-bottom: 32px; }
.teaser-list { margin: 32px 0 40px; border-top: 1px solid var(--line); }
.teaser-row {
  display: flex; align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--step-1);
}
.teaser-row .serif { font-style: italic; }
.dot-leader {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
  margin: 0 12px;
}
.teaser-row .price {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}

/* ---------- IG grid ---------- */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ig-tile {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
  border-radius: 2px;
  position: relative;
}
.ig-tile > * { transition: transform var(--dur-3) var(--ease); }
.ig-tile:hover > * { transform: scale(1.05); }

/* ---------- Newsletter ---------- */
.section-newsletter { background: var(--bg-alt); }
.section-newsletter .wrap-narrow { text-align: center; }
.section-newsletter h2 { margin: 14px 0 16px; }
.section-newsletter p { color: var(--ink-soft); margin-bottom: 36px; }
.newsletter-form {
  display: flex; gap: 12px; max-width: 480px; margin: 0 auto;
  padding-bottom: 8px; border-bottom: 1px solid var(--ink);
}
.newsletter-form input {
  flex: 1; border: 0; background: transparent;
  font-family: var(--font-serif); font-style: italic;
  font-size: var(--step-1);
  color: var(--ink);
  padding: 12px 0;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--ink-mute); }
.newsletter-form .btn { padding: 10px 20px; font-size: 11px; }

/* ---------- Generic page hero ---------- */
.page-hero {
  padding: clamp(60px, 9vw, 120px) 0 clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin: 0 0 20px;
  line-height: 0.95;
}
.page-hero .lede {
  max-width: 560px;
  font-size: var(--step-1);
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Shop toolbar ---------- */
.shop-toolbar {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.shop-filters, .shop-sort { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.filter-pill, .sort-btn {
  background: transparent; border: 0;
  font-family: var(--font-sans);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--dur-1);
}
.filter-pill:hover, .sort-btn:hover { color: var(--ink); }
.filter-pill.active, .sort-btn.active { background: var(--ink); color: var(--bg); }
.shop-sort .small { margin-right: 8px; }

/* ---------- Lessons ---------- */
.lessons-list { padding: clamp(40px, 6vw, 80px) 0; display: flex; flex-direction: column; gap: clamp(40px, 6vw, 80px); }
.lesson-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  padding-bottom: clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}
.lesson-card:last-of-type { border-bottom: 0; }
.lesson-card:nth-child(even) { grid-template-columns: 1.3fr 1fr; }
.lesson-card:nth-child(even) .lesson-photo { order: 2; }
.lesson-photo {
  aspect-ratio: 5/4;
  overflow: hidden;
  border-radius: 2px;
}
.lesson-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 20px; margin-bottom: 16px;
}
.lesson-head h2 { font-style: italic; font-size: var(--step-3); margin: 0; }
.lesson-price { font-size: var(--step-2); color: var(--ink-soft); white-space: nowrap; }
.lesson-body p { color: var(--ink-soft); max-width: 48ch; margin: 0 0 24px; }
.lesson-specs {
  display: grid; grid-template-columns: repeat(3, auto); gap: 24px 40px;
  margin: 0 0 28px; padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lesson-specs dt {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 6px;
}
.lesson-specs dd { margin: 0; font-family: var(--font-serif); font-size: var(--step-1); font-style: italic; }
.lesson-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Sumup embed ---------- */
.sumup-embed-section { padding: clamp(40px, 6vw, 80px) 0; border-top: 1px solid var(--line); }
.sumup-embed-section h3 { margin: 10px 0 8px; font-style: italic; }
.sumup-embed-section .muted { margin-bottom: 40px; max-width: 56ch; }
.sumup-embed { margin-top: 20px; }

.mock-cal {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  max-width: 560px;
}
.mock-cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mock-cal-head h4 { font-size: var(--step-2); font-style: italic; margin: 6px 0 0; }
.mock-cal-nav { display: flex; gap: 4px; }
.mock-cal-nav button {
  width: 34px; height: 34px;
  border: 1px solid var(--line); background: transparent;
  border-radius: 50%; cursor: pointer;
  color: var(--ink);
}
.mock-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.mock-dow {
  text-align: center; font-size: 11px; color: var(--ink-mute);
  padding: 8px 0;
  font-family: var(--font-sans);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.mock-day {
  aspect-ratio: 1;
  border: 0; background: transparent;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--ink-mute);
  cursor: not-allowed;
  position: relative;
  border-radius: 50%;
}
.mock-day.available { color: var(--ink); cursor: pointer; background: var(--bg); transition: background var(--dur-1); }
.mock-day.available:hover { background: var(--ink); color: var(--bg); }
.mock-day.today { outline: 1px solid var(--accent); }
.mock-dot {
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
}
.mock-cal-foot {
  display: flex; justify-content: space-between;
  align-items: center; margin-top: 20px;
  padding-top: 20px; border-top: 1px solid var(--line);
  gap: 16px; flex-wrap: wrap;
}
.legend { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-mute); }
.legend .mock-dot { position: static; transform: none; }

/* ---------- Booking modal ---------- */
.modal-scrim {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(30, 20, 10, 0.4);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  padding: 20px;
  animation: fadeIn var(--dur-2) var(--ease);
}
.modal-scrim[hidden] { display: none; }

/* ---------- Cart qty stepper ---------- */
.cart-qty { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin: 6px 0 4px; }
.cart-qty .qty-value { min-width: 48px; text-align: center; color: var(--ink-mute); font-size: 13px; }
.qty-step {
  width: 26px; height: 26px; padding: 0;
  border: 1px solid var(--line); border-radius: 999px;
  background: transparent; cursor: pointer; color: var(--ink);
  font-size: 14px; line-height: 1; display: inline-flex; align-items: center; justify-content: center;
}
.qty-step:hover:not(:disabled) { border-color: var(--ink); }
.qty-step:disabled { opacity: 0.35; cursor: not-allowed; }

/* ---------- Flash messages (storefront) ---------- */
.flash {
  position: fixed;
  top: 88px; /* clear the sticky header so the toast never covers the nav */
  left: 50%;
  transform: translateX(-50%);
  max-width: min(520px, calc(100% - 32px));
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.4;
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 10px 24px rgba(30, 20, 10, 0.12);
  z-index: 1000;
  animation: flashIn 0.25s var(--ease);
}
.flash-alert  { background: #b55a4c; color: #fff; }
.flash-notice { background: #6f7f5a; color: #fff; }
@keyframes flashIn {
  from { opacity: 0; transform: translate(-50%, -8px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-panel {
  background: var(--bg);
  border-radius: var(--r-lg);
  width: min(640px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-2);
  animation: modalIn var(--dur-3) var(--ease);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.modal-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.modal-head h3 { margin: 4px 0 0; font-style: italic; }
.icon-btn {
  background: transparent; border: 0; cursor: pointer;
  color: var(--ink-mute); font-size: 18px;
  /* ≥40px tap target */
  min-width: 40px; min-height: 40px;
  display: inline-grid; place-items: center;
}
.icon-btn:hover { color: var(--ink); }

.modal-steps {
  display: flex; padding: 16px 32px;
  border-bottom: 1px solid var(--line);
  gap: 8px;
  flex-wrap: wrap;
}
.msx {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute);
  padding: 6px 10px 6px 6px;
}
.msx-num {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-alt); color: var(--ink-mute);
  font-size: 11px;
}
.msx.on { color: var(--ink); }
.msx.on .msx-num { background: var(--ink); color: var(--bg); }
.msx.done .msx-num { background: var(--sage); color: var(--bg); }

.modal-body { padding: 28px 32px; min-height: 280px; }
.bk-step h4 { margin: 0 0 20px; font-style: italic; }
.bk-dates { display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: 8px; }
.bk-date {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 12px 6px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--r-md); cursor: pointer;
  font-family: var(--font-sans);
  transition: all var(--dur-1);
}
.bk-date:hover { border-color: var(--ink); }
.bk-date.on { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.bk-dow { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: inherit; opacity: 0.7; }
.bk-dnum { font-family: var(--font-serif); font-size: 24px; font-style: italic; line-height: 1; }
.bk-dmon { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }

.bk-times { display: flex; gap: 8px; flex-wrap: wrap; }
.bk-time {
  padding: 10px 18px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 999px; cursor: pointer;
  font-family: var(--font-sans); font-size: 13px;
  color: var(--ink);
  transition: all var(--dur-1);
}
.bk-time:hover { border-color: var(--ink); }
.bk-time.on { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.bk-counter { display: flex; align-items: center; gap: 32px; padding: 20px 0; }
.bk-counter button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--ink); background: transparent;
  color: var(--ink); font-size: 18px; cursor: pointer;
}
.bk-counter button:hover { background: var(--ink); color: var(--bg); }
.bk-big { font-size: 48px; font-style: italic; }

.bk-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bk-form label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; color: var(--ink-mute); letter-spacing: 0.1em; text-transform: uppercase; }
.bk-form label.full { grid-column: 1 / -1; }
.bk-form input, .bk-form textarea {
  padding: 12px;
  border: 1px solid var(--line); background: var(--bg-card);
  border-radius: var(--r-md);
  font-family: var(--font-serif); font-size: 15px;
  color: var(--ink);
  outline: none;
}
.bk-form input:focus, .bk-form textarea:focus { border-color: var(--ink); }

.bk-summary { display: grid; gap: 12px; margin: 0; }
.bk-summary > div { display: flex; justify-content: space-between; gap: 20px; font-size: 14px; }
.bk-summary dt { color: var(--ink-soft); margin: 0; }
.bk-summary dd { margin: 0; font-family: var(--font-serif); }
.bk-summary hr { margin: 8px 0; }
.bk-row-total dd { font-size: var(--step-2); }

.modal-foot {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 20px 32px; border-top: 1px solid var(--line);
}
.modal-foot .btn:disabled { opacity: 0.35; pointer-events: none; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- About ---------- */
.about-hero { padding: clamp(60px, 9vw, 120px) 0; }
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.about-copy h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-style: italic;
  margin: 16px 0 32px;
  line-height: 0.95;
}
.about-body p {
  font-size: var(--step-1);
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 1em;
  max-width: 48ch;
}
.about-grid {
  padding: clamp(40px, 6vw, 80px) 0 clamp(80px, 12vw, 140px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.about-grid > * {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
}

/* ---------- Contact ---------- */
.contact-grid {
  padding: clamp(60px, 9vw, 100px) 0 clamp(80px, 12vw, 140px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 40px; }
.info-row .eyebrow { margin-bottom: 10px; }
.info-row .big {
  font-size: var(--step-2);
  font-style: italic;
  text-decoration: none;
  display: inline-block;
}
.info-row .big:hover { color: var(--accent-deep); }
.info-row p { margin: 8px 0 0; color: var(--ink-mute); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); }
.contact-form input, .contact-form textarea {
  border: 1px solid var(--line);
  background: var(--bg-card);
  border-radius: var(--r-md);
  font-family: var(--font-serif); font-size: 15px;
  color: var(--ink);
  padding: 12px;
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--ink); }
.contact-form .btn { align-self: flex-start; margin-top: 8px; }

/* ---------- Cart drawer ---------- */
.cart-scrim {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(30, 20, 10, 0.3);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-2);
}
.cart-scrim.on { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 70;
  width: min(440px, 100%);
  background: var(--bg);
  transform: translateX(100%);
  transition: transform var(--dur-3) var(--ease);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-2);
}
.cart-drawer.on { transform: translateX(0); }
.cart-head {
  display: flex; justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 { margin: 0; font-style: italic; }
.cart-list { list-style: none; padding: 0; margin: 0; overflow-y: auto; flex: 1; }
.cart-list li {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 16px; padding: 20px 28px; align-items: center;
  border-bottom: 1px solid var(--line);
}
.cart-thumb { aspect-ratio: 1; overflow: hidden; border-radius: 2px; }
.cart-info .serif { font-style: italic; font-size: 16px; }
.cart-info .small { font-size: 12px; margin-top: 2px; }
.cart-info .link-quiet { background: transparent; border: 0; color: var(--ink-mute); padding: 4px 0; cursor: pointer; font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px; display: block; }
.cart-info .link-quiet:hover { color: var(--ink); }
.cart-price { font-family: var(--font-serif); font-size: 15px; }
.cart-foot { padding: 24px 28px; border-top: 1px solid var(--line); }
.cart-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-family: var(--font-serif); font-size: var(--step-1); }
.cart-empty { padding: 40px 28px; text-align: center; }

/* ---------- Footer ---------- */
.opn-footer { padding: clamp(60px, 9vw, 100px) 0 40px; border-top: 1px solid var(--line); background: var(--bg-alt); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand h3 { font-style: italic; font-size: var(--step-3); margin: 0 0 16px; line-height: 0.95; }
.footer-brand h3 em { font-family: var(--font-serif); font-size: 0.7em; color: var(--ink-mute); }
.footer-brand p { max-width: 28ch; color: var(--ink-mute); margin: 0; font-size: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col .eyebrow { margin-bottom: 8px; }
.footer-col button, .footer-col a, .footer-col span {
  background: transparent; border: 0; cursor: pointer;
  text-align: left; padding: 0;
  font-family: var(--font-serif); font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color var(--dur-1);
}
.footer-col button:hover, .footer-col a:hover { color: var(--ink); }
.footer-col span { cursor: default; }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 12px; color: var(--ink-mute);
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
  flex-wrap: wrap; gap: 16px;
}

/* ---------- utilities ---------- */
.muted { color: var(--ink-mute); }
.small { font-size: 12px; }
.center { text-align: center; }

/* ---------- Tweaks panel ---------- */
.tweaks-panel {
  position: fixed; bottom: 20px; right: 20px; z-index: 200;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  padding: 18px 20px;
  min-width: 260px;
  font-family: var(--font-sans);
  font-size: 13px;
}
.tweaks-panel h5 {
  margin: 0 0 14px;
  font-family: var(--font-serif); font-style: italic;
  font-size: 16px;
}
.tweaks-row { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.tweaks-row label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--ink-mute); width: 100%; }
.tweaks-btn {
  border: 1px solid var(--line); background: transparent;
  color: var(--ink); padding: 6px 12px; border-radius: 999px;
  font-size: 12px; cursor: pointer;
  transition: all var(--dur-1);
}
.tweaks-btn.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.tweaks-btn:hover { border-color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { height: 60vh; }
  .lessons-teaser-grid { grid-template-columns: 1fr; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .lesson-card, .lesson-card:nth-child(even) { grid-template-columns: 1fr; }
  .lesson-card:nth-child(even) .lesson-photo { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .opn-nav { display: none; }
  .opn-header-inner { grid-template-columns: auto 1fr; }
  .bk-form { grid-template-columns: 1fr; }
}

/* ---------- Clay photo (procedural SVG / uploaded photo) ---------- */
/* Sizing lives here rather than inline so the strict CSP can drop
   'unsafe-inline' for style-src. The bg1→bg2 gradient is baked into the SVG. */
.clay-photo { width: 100%; height: 100%; overflow: hidden; position: relative; }
.clay-photo__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.clay-photo__svg { display: block; width: 100%; height: 100%; }

/* button_to renders a <form>; keep the cart +/-/remove controls inline. */
.inline-form { display: inline; }

/* ---------- Cart page ---------- */
.cart-page { padding: 40px 0 120px; max-width: 680px; }
.cart-empty { padding: 40px 0; }
.cart-stock-note { margin-left: 8px; }

/* ---------- Shop empty state ---------- */
.shop-empty { padding: 80px 0; }

/* ---------- Lessons availability list ---------- */
.lesson-slots { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.lesson-slot-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--line);
}

/* ---------- Order / booking confirmation pages ---------- */
.confirm-page { padding: 120px 0 160px; max-width: 640px; text-align: center; }
.confirm-page .eyebrow { margin-bottom: 12px; }
.confirm-title { font-size: clamp(3rem, 7vw, 6rem); font-style: italic; line-height: 1; }
.confirm-lede { margin: 32px auto 40px; max-width: 48ch; }
.confirm-actions { margin-top: 40px; }
.order-summary-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  text-align: left;
  margin: 40px 0;
}
.order-summary-row {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--line);
  font-family: var(--font-serif);
}
.order-summary-row .item-name { font-style: italic; }
.order-summary-total {
  display: flex; justify-content: space-between;
  padding: 16px 0 0; font-family: var(--font-serif);
  font-size: var(--step-1);
}
.booking-summary__lesson {
  font-family: var(--font-serif); font-style: italic;
  font-size: var(--step-2); margin: 0 0 8px;
}
.payment-lesson-name {
  font-family: var(--font-serif); font-style: italic; margin-bottom: 4px;
}
