:root {
  --bg: #fdfbf7;
  --bg-white: #ffffff;
  --ink: #1c1c19;
  --ink-soft: rgba(0, 0, 0, 0.65);
  --ink-mute: rgba(0, 0, 0, 0.45);
  --line: rgba(0, 0, 0, 0.1);
  --pink: #e6007e;
  --wine: #9d263e;
  --cream: #f4f0e9;
  --white-65: rgba(255, 255, 255, 0.65);
  --page-max: 1440px;
  --pad-x: 84px;
  --font-serif: "Prata", Georgia, serif;
  --font-sans: "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.page {
  width: 100%;
  max-width: none;
  margin: 0;
  background: transparent;
  --side: max(0px, calc((100% - var(--page-max)) / 2));
  --inset-x: calc(var(--side) + var(--pad-x));
  --inset-x-sm: calc(var(--side) + 64px);
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--inset-x-sm);
  background: var(--bg-white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.logo {
  width: 51px;
  height: 48px;
  overflow: clip;
  display: block;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.logo-group:hover .logo img {
  opacity: 0.75;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-item--drop {
  position: relative;
}

.nav-drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 30;
}

.nav-item--drop::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}

.nav-item--drop:hover .nav-drop,
.nav-item--drop:focus-within .nav-drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-drop-panel {
  min-width: 280px;
  padding: 24px 28px 22px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 12px 32px rgba(28, 28, 25, 0.1);
}

.nav-drop-label {
  margin: 0 0 18px;
  color: var(--pink);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 2px;
}

.nav-drop-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.nav-drop-link + .nav-drop-link {
  margin-top: 18px;
}

.nav-drop-link strong {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  transition: color 0.25s ease;
}

.nav-drop-link span {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
}

.nav-drop-link:hover strong {
  color: var(--pink);
}

.nav a {
  transition: color 0.25s ease;
}

.nav a:hover {
  color: var(--pink);
}

.btn:hover {
  filter: brightness(1.08);
}

.btn:active {
  transform: translateY(1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart {
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cart:hover {
  opacity: 0.7;
}

.cart:active {
  transform: scale(0.96);
}

.cart-body {
  position: absolute;
  left: 3px;
  top: 8px;
  width: 18px;
  height: 16px;
  box-sizing: border-box;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  transition: border-color 0.25s ease;
}

.cart-handle {
  position: absolute;
  left: 7px;
  top: 3px;
  width: 10px;
  height: 5.5px;
  box-sizing: border-box;
  border: 1.5px solid var(--ink);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  transition: border-color 0.25s ease;
}

.cart:hover .cart-body,
.cart:hover .cart-handle {
  border-color: var(--pink);
}

.cart-count {
  position: absolute;
  left: 15px;
  top: 0;
  z-index: 1;
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: filter 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-pink {
  background: var(--pink);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  margin: 6px 8px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: var(--side) minmax(0, 840px) minmax(0, 600px) var(--side);
  min-height: 820px;
  background: var(--bg-white);
}

.hero-copy {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 64px;
  padding: 120px 64px 84px 84px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--pink);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 3px;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-lead {
  margin: 0 0 32px;
  max-width: 540px;
  font-size: 18px;
  line-height: 30px;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-media {
  grid-column: 3 / -1;
  position: relative;
  min-height: 520px;
  background: var(--bg);
  overflow: clip;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(230, 0, 126, 0.05);
}

.hero-chip {
  position: absolute;
  left: 0;
  bottom: 48px;
  z-index: 1;
  background: #fff;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
}

/* Sections */
.section {
  padding: 120px var(--inset-x);
}

.section-cream {
  background: var(--bg);
}

.section-white {
  background: var(--bg-white);
}

.section-dark {
  background: var(--ink);
  color: var(--cream);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--pink);
}

.kicker-wine {
  color: var(--wine);
}

.kicker-line {
  width: 24px;
  height: 1px;
  background: var(--line);
}

.kicker-wine + .kicker-line,
.section-dark .kicker-line {
  background: var(--white-65);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.section-head h2,
.section-head h2 {
  margin: 0;
  max-width: 720px;
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  max-width: 380px;
  font-size: 16px;
  line-height: 24px;
  color: var(--ink-soft);
}

.section-dark .section-head p {
  color: var(--white-65);
}

/* Services */
.services-list {
  margin: 64px 0;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
}

.service-main {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 800px;
}

.service-num {
  width: 24px;
  color: var(--pink);
  font-weight: 700;
  font-size: 12px;
}

.service-row h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
}

.service-row p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: var(--ink-soft);
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 48px;
}

.price {
  font-weight: 600;
  font-size: 18px;
  white-space: nowrap;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  place-items: center;
  overflow: clip;
  flex-shrink: 0;
}

.icon-btn img {
  width: 16px;
  height: 16px;
}

.services-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--pink);
}

.services-foot a {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--ink);
  text-decoration: underline;
}

/* Philosophy */
.philosophy {
  display: grid;
  grid-template-columns: var(--side) minmax(0, 840px) minmax(0, 600px) var(--side);
  min-height: 760px;
  overflow: clip;
}

.philosophy-copy {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
  padding: 112px 64px 112px 84px;
}

.philosophy-copy h2 {
  margin: 0;
  max-width: 720px;
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.philosophy-copy > p {
  margin: 0;
  max-width: 580px;
  font-size: 18px;
  line-height: 32px;
  color: var(--white-65);
}

.philosophy-media {
  grid-column: 3 / -1;
  position: relative;
  min-height: 480px;
  overflow: clip;
}

.philosophy-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: absolute;
  inset: 0;
}

.founder-chip {
  position: absolute;
  left: 32px;
  bottom: 32px;
  background: #fff;
  padding: 16px 24px;
}

.founder-chip strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--ink);
}

.founder-chip span {
  font-size: 10px;
  color: var(--ink-mute);
}

/* Education */
.education-grid {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(0, 512px);
  gap: 64px;
  align-items: center;
  margin-top: 80px;
}

.education-grid h3 {
  margin: 0 0 40px;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.15;
}

.edu-row {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.edu-row strong {
  width: 140px;
  flex-shrink: 0;
  color: var(--pink);
  font-weight: 800;
}

.edu-row span {
  color: var(--ink-soft);
}

.education-media {
  position: relative;
  height: 480px;
  overflow: clip;
}

.education-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  left: 24px;
  top: 24px;
  background: var(--ink);
  color: #fff;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1px;
}

/* Franchise */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 80px 0;
}

.stat {
  background: var(--wine);
  color: #fff;
  padding: 32px;
  min-height: 180px;
}

.stat strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
}

.stat span {
  font-size: 12px;
  line-height: 18px;
  color: var(--white-65);
}

.franchise-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.franchise-cta p {
  margin: 0;
  max-width: 720px;
  font-size: 14px;
  line-height: 22px;
  color: var(--cream);
}

/* Shop / blog */
.cards-4,
.cards-3 {
  display: grid;
  gap: 24px;
  margin-top: 64px;
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-photo {
  position: relative;
  height: 380px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: clip;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag {
  position: absolute;
  left: 16px;
  top: 16px;
  background: var(--pink);
  color: #fff;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 1px;
}

.product h3,
.blog-card h3 {
  margin: 20px 0 8px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
}

.product p,
.blog-card p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: var(--ink-mute);
}

.product-buy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.product-buy button {
  border: 0;
  background: none;
  padding: 0;
  color: var(--pink);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease;
}

.product-buy button:hover {
  color: var(--ink);
}

.product-buy span:last-child {
  color: var(--pink);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover img {
  transform: scale(1.03);
}

.blog-card time {
  display: block;
  margin: 20px 0 12px;
  color: var(--pink);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
}

.blog-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  transition: color 0.25s ease;
}

.blog-card:hover h3 {
  color: var(--pink);
}

.blog-card p {
  color: var(--ink-soft);
  line-height: 22px;
}

.blog-card .more {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: underline;
  transition: color 0.25s ease;
}

.blog-card:hover .more {
  color: var(--pink);
}

/* Testimonials */
.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 80px;
}

.quote {
  background: #fff;
  border: 1px solid var(--line);
  padding: 40px;
}

.quote p {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 32px;
}

.quote strong {
  display: block;
  font-size: 14px;
}

.quote span {
  font-size: 12px;
  color: var(--ink-mute);
}

/* Booking */
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(0, 580px);
  gap: 64px;
  margin-top: 64px;
  align-items: start;
}

.booking-copy h3 {
  margin: 0 0 32px;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
}

.booking-copy p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 22px;
  color: var(--white-65);
}

.form-card {
  background: #fff;
  color: var(--ink);
  padding: 48px;
}

.form-card h3 {
  margin: 0 0 32px;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  min-width: 0;
}

.field > span {
  font-weight: 700;
  font-size: 12px;
}

.field label {
  font-weight: 700;
  font-size: 12px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  appearance: none;
  font: inherit;
}

.field input.underline-field,
.field .underline-field {
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: none;
}

.field input.boxed-field,
.field textarea.boxed-field,
.field .boxed-field {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.field-select {
  position: relative;
}

.field-select img {
  position: absolute;
  right: 16px;
  top: 65%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  pointer-events: none;
}

.form-note {
  margin: 16px 0 0;
  font-size: 11px;
  line-height: 16px;
  color: var(--ink-mute);
  text-align: center;
}

.form-ok {
  display: none;
  margin-top: 16px;
  color: var(--pink);
  font-weight: 700;
  font-size: 14px;
}

.form-ok.is-visible {
  display: block;
}

/* Footer */
.footer {
  background: var(--ink);
  color: var(--white-65);
  padding: 80px var(--inset-x) 40px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  width: 400px;
}

.footer-brand h2 {
  margin: 0 0 24px;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.footer-brand p {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
}

.footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 160px;
}

.footer-col a {
  transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-col a:hover {
  color: #fff;
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 11px;
  opacity: 0.6;
}

.footer-bottom a {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  :root {
    --pad-x: 32px;
  }

  .header {
    padding: 16px 24px;
  }

  .nav {
    display: none;
  }

  .header.is-open .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    padding: 24px;
    border-bottom: 1px solid var(--line);
  }

  .header.is-open .nav-item--drop {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .header.is-open .nav-item--drop::after {
    display: none;
  }

  .nav a.is-active::after {
    display: none;
  }

  .header.is-open .nav-drop {
    position: static;
    left: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0 0 0 16px;
    margin: 0;
    border-left: 1px solid var(--line);
  }

  .header.is-open .nav-drop-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    width: 100%;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .header.is-open .nav-drop-label {
    display: none;
  }

  .header.is-open .nav-drop-link {
    gap: 0;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .header.is-open .nav-drop-link + .nav-drop-link {
    margin-top: 0;
  }

  .header.is-open .nav-drop-link strong {
    font-family: var(--font-sans);
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: 1.3;
  }

  .header.is-open .nav-drop-link span {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .philosophy,
  .education-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-media,
  .philosophy-copy,
  .philosophy-media {
    grid-column: auto;
  }

  .hero-copy,
  .philosophy-copy {
    padding: 64px 24px;
  }

  .section,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .stats,
  .cards-4,
  .cards-3,
  .quotes {
    grid-template-columns: 1fr 1fr;
  }

  .hero-media,
  .philosophy-media,
  .education-media {
    min-height: 420px;
    height: 420px;
  }
}

@media (max-width: 720px) {
  .stats,
  .cards-4,
  .cards-3,
  .quotes {
    grid-template-columns: 1fr;
  }

  .service-row,
  .service-main,
  .franchise-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-card {
    padding: 24px 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

.logo-group {
  display: flex;
  align-items: center;
  color: var(--ink);
}

.nav a.is-active {
  color: var(--pink);
  position: relative;
}

.nav a.is-active::after {
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  margin: 4px auto 0;
  background: var(--pink);
  border-radius: 1px;
}

.page-hero {
  display: grid;
  grid-template-columns: var(--side) minmax(0, 840px) minmax(0, 600px) var(--side);
  min-height: 520px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.page-hero-copy {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 80px 64px 80px 84px;
}

.page-hero > :last-child {
  grid-column: 3 / -1;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.06;
}

.page-hero p {
  margin: 0;
  max-width: 580px;
  font-size: 18px;
  line-height: 30px;
  color: var(--ink-soft);
}

.crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 3px;
}

.crumb-line {
  width: 32px;
  height: 1px;
  background: var(--line);
}

.tag-pill {
  display: inline-flex;
  padding: 4px 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1px;
}

.price-layout {
  display: grid;
  grid-template-columns: 600px minmax(0, 1fr);
  background: #fff;
}

.price-photo {
  position: relative;
  min-height: 640px;
  background: var(--ink);
  overflow: clip;
}

.price-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.price-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.price-badge {
  position: absolute;
  z-index: 1;
  left: 32px;
  top: 32px;
  background: var(--pink);
  color: #fff;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 1.5px;
}

.price-panel {
  padding: 64px;
}

.price-panel h2 {
  margin: 12px 0;
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
}

.accent-bar {
  width: 60px;
  height: 2px;
  background: var(--pink);
  margin-bottom: 48px;
}

.price-group {
  margin-bottom: 40px;
}

.price-group h3 {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
}

.price-rule {
  height: 1px;
  background: var(--pink);
  opacity: 0.5;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.price-row strong {
  white-space: nowrap;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 40px;
}

.review-card p {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 28px;
}

.review-card strong {
  display: block;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.review-card span {
  color: var(--pink);
  font-size: 12px;
  letter-spacing: 0.5px;
}

.carousel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

.round-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: #fff;
  cursor: pointer;
}

.round-btn.is-dark {
  background: var(--ink);
  border-color: var(--ink);
}

.round-btn img {
  width: 16px;
  height: 16px;
}

.social-split {
  display: grid;
  grid-template-columns: var(--side) minmax(0, 840px) minmax(0, 600px) var(--side);
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.social-col {
  grid-column: 2;
  padding: 80px 64px 80px 84px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.social-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
}

.social-card strong {
  display: block;
  margin-top: 12px;
  font-size: 13px;
}

.social-card span {
  color: var(--pink);
  font-size: 12px;
}

.materials-col {
  grid-column: 3;
  padding: 80px 84px 80px 64px;
  border-left: 1px solid var(--line);
}

.materials-col h2,
.social-col h2 {
  margin: 16px 0 0;
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 64px;
}

.filters {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
}

.filter-title {
  margin: 0 0 24px;
  color: var(--pink);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 2px;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group h3 {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.filter-group label {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
}

.price-track {
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  margin: 10px 0;
}

.price-inputs {
  display: flex;
  gap: 12px;
}

.price-inputs input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
}

.catalog-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.sort-box {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
}

.catalog-card img,
.catalog-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--bg);
}

.catalog-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
}

.catalog-card p {
  margin: 0;
  font-size: 13px;
  line-height: 18px;
  color: var(--ink-mute);
}

/* Arrow icons: one source (arrow-left), next = rotate 180° */
.icon-arrow {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.icon-arrow--sm {
  width: 14px;
  height: 14px;
}

.icon-arrow--next {
  /* rotate + slight optical nudge (right arrows look heavy toward the tip) */
  transform: rotate(180deg) translateX(1px);
}

.icon-arrow--on-dark {
  filter: brightness(0) invert(1);
}

.pager {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.page-dot {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: #fff;
  font-weight: 700;
  font-size: 13px;
}

.page-dot.is-on {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 40px;
}

.chip {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
}

.chip.is-on {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.article-hero {
  padding: 64px var(--inset-x) 40px;
  text-align: center;
}

.article-hero h1 {
  max-width: 860px;
  margin: 16px auto;
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
}

.article-cover {
  width: auto;
  max-width: none;
  height: 420px;
  margin: 0 var(--inset-x) 64px;
  object-fit: cover;
  display: block;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  padding: 0 84px 80px;
}

.article-body p {
  font-size: 16px;
  line-height: 28px;
  color: var(--ink-soft);
}

.pullquote {
  margin: 32px 0;
  padding: 24px;
  border-left: 2px solid var(--pink);
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 32px;
  color: var(--ink);
}

.steps {
  counter-reset: step;
}

.steps li {
  list-style: none;
  margin: 16px 0;
  padding-left: 48px;
  position: relative;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink);
  font-family: var(--font-serif);
  font-size: 28px;
}

.side-card {
  background: var(--ink);
  color: var(--cream);
  padding: 32px;
  margin-top: 32px;
}

.side-card h3 {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
}

.course-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 40px;
  margin-bottom: 24px;
}

.course-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
}

.course-list {
  margin: 16px 0 24px;
  padding-left: 18px;
  color: var(--ink-soft);
}

.online-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.online-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.modal-root {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

.modal-root.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 25, 0.5);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
  max-height: min(100dvh - 48px, calc(100vh - 48px));
  max-width: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.modal-product {
  display: grid;
  grid-template-columns: 432px minmax(0, 528px);
  width: min(960px, 100%);
  height: min(680px, 100%);
  max-height: inherit;
}

.modal-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: linear-gradient(#fdfbf7, #fdfbf7), rgba(230, 0, 126, 0.04);
  min-width: 0;
}

.modal-photo img {
  width: min(340px, 100%);
  height: auto;
  aspect-ratio: 340 / 440;
  max-height: 440px;
  object-fit: cover;
  border-radius: 8px;
}

.modal-body {
  padding: 40px;
  min-width: 0;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.modal-head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  line-height: 1.15;
  min-width: 0;
}

.close-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.close-btn:hover {
  border-color: var(--ink);
}

.close-btn:active {
  transform: scale(0.94);
}

.close-btn img {
  width: 14px;
  height: 14px;
  display: block;
}

.close-btn--sm img {
  width: 16px;
  height: 16px;
}

.qty {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  gap: 4px;
}

.qty button {
  width: 32px;
  height: 32px;
  border: 0;
  background: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  flex-shrink: 0;
  transition: opacity 0.25s ease, transform 0.2s ease;
}

.qty button:hover {
  opacity: 0.65;
}

.qty button img {
  width: 16px;
  height: 16px;
  display: block;
}

.qty strong {
  min-width: 20px;
  text-align: center;
  font-size: 14px;
}

.qty--sm {
  height: 36px;
  padding: 0 4px;
  border-radius: 6px;
}

.qty--sm button {
  width: 28px;
  height: 28px;
}

.qty--sm button img {
  width: 14px;
  height: 14px;
}

.spec {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0;
  font-size: 12px;
}

.spec span:first-child {
  color: var(--ink-mute);
}

.modal-cart,
.modal-feedback {
  width: min(560px, 100%);
  padding: 36px;
}

.modal-feedback {
  width: min(480px, 100%);
}

.cart-item {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}

.cart-item > div:nth-child(2) {
  min-width: 0;
}

.cart-item > div:nth-child(2) p {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item > div:nth-child(2) strong {
  font-size: 13px;
}

.cart-item > img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 4px;
  flex-shrink: 0;
}

.underline-field {
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
}

.boxed-field {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.check-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--ink-soft);
}

.check-row input {
  accent-color: var(--pink);
  width: 18px;
  height: 18px;
}

.total-line {
  text-align: right;
  font-weight: 800;
  font-size: 18px;
}

@media (max-width: 1100px) {
  .page-hero,
  .price-layout,
  .social-split,
  .shop-layout,
  .article-layout,
  .modal-product {
    grid-template-columns: 1fr;
  }

  .page-hero-copy,
  .page-hero > :last-child,
  .social-col,
  .materials-col {
    grid-column: auto;
  }

  .article-cover,
  .page-hero-copy,
  .article-hero,
  .article-layout {
    width: auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  .product-grid,
  .review-grid,
  .social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .modal-product {
    width: min(560px, 100%);
    height: auto;
    max-height: inherit;
  }

  .modal-photo {
    padding: 24px;
  }

  .modal-photo img {
    width: min(280px, 100%);
    max-height: 280px;
  }

  .modal-body {
    padding: 28px 24px 32px;
  }

  .header .btn {
    padding: 12px 16px;
  }

  .materials-col h2,
  .social-col h2 {
    font-size: 36px;
  }
}

@media (max-width: 720px) {
  .modal-root {
    padding: 0;
    align-items: stretch;
  }
  .nav a.is-active::after {
    content: none;
  }

  .modal-card {
    width: 100%;
    max-width: 100%;
    max-height: 100dvh;
    max-height: 100vh;
    border-radius: 0;
    min-height: 0;
  }

  .modal-cart,
  .modal-feedback,
  .modal-product {
    width: 100%;
    padding: 20px 16px 28px;
  }

  .modal-product {
    height: auto;
  }

  .modal-head h2 {
    font-size: 24px;
  }

  .modal-photo {
    padding: 16px 16px 0;
  }

  .modal-photo img {
    width: min(220px, 70vw);
    max-height: 220px;
  }

  .modal-body {
    padding: 20px 16px 28px;
  }

  .cart-item {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    grid-template-areas:
      "img info remove"
      "img qty qty";
    gap: 8px 10px;
    padding: 14px 0;
  }

  .cart-item > img {
    grid-area: img;
    width: 48px;
    height: 48px;
  }

  .cart-item > div:nth-child(2) {
    grid-area: info;
  }

  .cart-item .qty {
    grid-area: qty;
    justify-self: start;
  }

  .cart-item .close-btn {
    grid-area: remove;
    justify-self: end;
  }

  .field {
    margin-bottom: 14px;
  }

  .check-row {
    gap: 10px;
    font-size: 11px;
  }

  .total-line {
    font-size: 16px;
  }

  .btn {
    padding: 14px 20px;
    white-space: normal;
    text-align: center;
  }

  .header {
    padding: 12px 16px;
    gap: 12px;
  }

  .header-actions {
    gap: 12px;
  }

  .header .btn {
    padding: 10px 12px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .logo {
    width: 42px;
    height: 40px;
  }

  .hero h1 {
    font-size: clamp(28px, 9vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 24px;
  }

  .section-head h2 {
    font-size: clamp(26px, 8vw, 32px);
    line-height: 1.12;
  }

  .hero-copy,
  .philosophy-copy {
    padding: 48px 16px;
  }

  .section,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-brand h2 {
    font-size: 28px;
  }

  .product-grid,
  .review-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .materials-col h2,
  .social-col h2 {
    font-size: 28px;
  }
}
