/* Body Design Los Angeles — shop + home */

:root {
  --fuchsia: #c71585;
  --fuchsia-dark: #9b0f68;
  --fuchsia-soft: rgba(199, 21, 133, 0.12);
  --black: #0f0f0f;
  --white: #fafafa;
  --muted: #5c5c5c;
  --line: rgba(15, 15, 15, 0.1);
  --bg: #ffffff;
  --bg-elevated: #ffffff;
  --max: 1100px;
  --max-wide: 1200px;
  --radius: 12px;
  --shadow: 0 8px 28px rgba(15, 15, 15, 0.08);
  --font-sans: "Montserrat", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--black);
  background: var(--bg);
}

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

a {
  color: var(--fuchsia-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.logo {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--black);
  text-decoration: none;
}

.logo span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fuchsia);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.nav a {
  color: var(--black);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
}

.nav a:hover {
  color: var(--fuchsia);
  text-decoration: none;
}

.nav a[aria-current="page"] {
  color: var(--fuchsia);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white) !important;
  text-decoration: none !important;
  cursor: pointer;
  font-family: inherit;
}

.nav-cta:hover {
  background: var(--fuchsia);
  border-color: var(--fuchsia);
  color: var(--white) !important;
}

button.nav-cta.snipcart-checkout {
  background: var(--fuchsia);
  border-color: var(--fuchsia);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 2.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fuchsia);
  margin: 0 0 0.5rem;
}

.hero .lead {
  color: var(--muted);
  max-width: 36rem;
  margin: 0 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  font-family: inherit;
}

.btn-primary {
  background: var(--fuchsia);
  color: var(--white);
  border-color: var(--fuchsia);
}

.btn-primary:hover {
  background: var(--fuchsia-dark);
  border-color: var(--fuchsia-dark);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--black);
}

.btn-sms {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--line);
}

.btn-sms:hover {
  border-color: var(--black);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  border-top: 1px solid var(--line);
}

.section h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 0 0 1rem;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.hours-list li {
  margin-bottom: 0.35rem;
}

.site-footer {
  padding: 2rem 1.25rem;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.site-footer a {
  color: var(--fuchsia-dark);
}

/* Store */
.store-hero {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 2.25rem 1.25rem 1rem;
}

.store-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin: 0 0 0.5rem;
}

.store-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fuchsia);
  margin: 0 0 0.35rem;
}

.store-hero .lead {
  margin: 0;
  color: var(--muted);
  max-width: 44rem;
}

.store-note {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 40rem;
  margin-top: 0.75rem;
}

.store-note--admin {
  margin-top: 0.35rem;
}

.store-policy-bar {
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #faf7f8;
  max-width: 40rem;
}

.store-policy-bar p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.store-policy-bar p + p {
  margin-top: 0.35rem;
}

.store-jump {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.store-jump a {
  color: var(--fuchsia-dark);
}

.filter-row {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 1.25rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.filter-btn[aria-pressed="true"] {
  background: var(--fuchsia);
  color: var(--white);
  border-color: var(--fuchsia);
}

.store-section-intro {
  max-width: var(--max-wide);
  margin: 0 auto 1rem;
  padding: 0 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.store-section-intro code {
  font-size: 0.85em;
  background: var(--fuchsia-soft);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.store-grid {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.35rem;
}

#services-catalog-mount {
  display: contents;
}

.store-grid--services {
  padding-top: 0;
}

.store-services-section {
  border-top: 1px solid var(--line);
  padding-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.store-section-head {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 0.5rem;
}

.store-section-head h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 0 0 0.35rem;
}

.store-section-head--shop {
  border-top: 1px solid var(--line);
  margin-top: 1rem;
  padding-top: 2rem;
}

.product-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.product-card[hidden] {
  display: none;
}

.product-visual {
  position: relative;
  aspect-ratio: 1;
  background: var(--fuchsia-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-visual span {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--fuchsia-dark);
}

.product-visual--photo {
  padding: 0;
  overflow: hidden;
}

.product-visual--photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}

.product-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.45rem;
}

.product-meta {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.25;
}

.product-desc {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  flex: 1;
}

.product-price {
  margin: 0.35rem 0 0;
  font-weight: 700;
  font-size: 1.05rem;
}

.product-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  padding: 0.28rem 0.55rem;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
}

/* Corner preorder sash — photo clips both ends evenly; no inner crop box */
.product-badge--preorder {
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #fffaf8;
  text-align: center;
  max-width: none;
  overflow: visible;
  transform: none;
  box-shadow: none;
  pointer-events: none;
  z-index: 3;
}

.product-badge__band {
  position: absolute;
  top: 1.05rem;
  left: -2.35rem;
  width: 9.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  padding: 0.36rem 0.5rem 0.34rem;
  background: var(--fuchsia);
  border-block: 1px solid rgba(255, 250, 248, 0.22);
  box-shadow: 0 5px 14px rgba(155, 15, 104, 0.18);
  transform: rotate(-45deg);
  transform-origin: center center;
  white-space: nowrap;
}

.product-badge--preorder .product-badge__line {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.15;
  opacity: 0.92;
}

.product-badge--preorder .product-badge__line--deal {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.01em;
  text-transform: none;
  margin-top: 0;
  line-height: 1;
  opacity: 1;
}

.product-size-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.65rem 0.9rem 0;
}

.product-size-picker--single {
  padding-top: 0.55rem;
}

.product-size-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.product-size-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--black);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
}

.product-size-btn:hover {
  border-color: var(--fuchsia);
  color: var(--fuchsia);
}

.product-size-btn.is-active {
  border-color: var(--fuchsia);
  background: var(--fuchsia-soft);
  color: var(--fuchsia-dark);
}

.product-badge--soldout,
.product-badge--coming {
  background: #5c5c5c;
}

.product-stock {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
}

.product-stock--preorder {
  color: var(--fuchsia-dark);
}

.product-stock--out {
  color: var(--muted);
}

.price-was {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 500;
  margin-right: 0.35rem;
}

.price-save {
  margin-left: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--fuchsia);
}

.product-card--soldout .product-visual--photo img,
.product-card--coming .product-visual--photo img {
  opacity: 0.55;
}

.snipcart-add-item:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.product-actions .btn {
  flex: 1;
  min-width: 6rem;
}

.product-gallery-thumbs {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.product-gallery-thumb {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 0;
  width: 42px;
  height: 42px;
  overflow: hidden;
  cursor: pointer;
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-gallery-thumb.is-active {
  border-color: var(--fuchsia);
  box-shadow: 0 0 0 1px var(--fuchsia) inset;
}

.product-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.gallery-nav {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  border-radius: 999px;
  width: 30px;
  height: 30px;
  line-height: 1;
  cursor: pointer;
}

.gallery-nav:hover {
  border-color: var(--fuchsia);
  color: var(--fuchsia);
}

.gallery-count {
  font-size: 0.75rem;
  color: var(--muted);
  min-width: 52px;
  text-align: center;
}

.disclaimer {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
  font-size: 0.72rem;
  color: rgba(15, 15, 15, 0.5);
}

.disclaimer code {
  font-size: 0.85em;
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
  }
}

/* Home page */
.hero--home {
  padding-bottom: 3rem;
  background: linear-gradient(180deg, var(--fuchsia-soft) 0%, transparent 55%);
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-intro {
  color: var(--muted);
  max-width: 40rem;
  margin: 0;
}

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

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.teaser-card {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.teaser-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.teaser-card p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.teaser-card a {
  font-weight: 600;
  font-size: 0.88rem;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}

.section--about {
  background: #faf8f9;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 280px);
  gap: 2rem;
  align-items: start;
}

.about-grid p {
  color: var(--muted);
  max-width: 38rem;
}

.about-grid p strong {
  color: var(--black);
}

.philosophy-list {
  list-style: none;
  margin: 0;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.philosophy-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.92rem;
}

.philosophy-list li:last-child {
  border-bottom: none;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.visit-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fuchsia);
  margin: 0 0 0.35rem;
}

.visit-grid p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.hours-note {
  font-weight: 600;
  color: var(--black) !important;
  margin-bottom: 0.5rem !important;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.hours-table th {
  text-align: left;
  font-weight: 600;
  padding: 0.35rem 1rem 0.35rem 0;
  color: var(--black);
  width: 38%;
}

.hours-table td {
  padding: 0.35rem 0;
  color: var(--muted);
}

.cta-band {
  max-width: var(--max);
  margin: 0 auto 2rem;
  padding: 2.5rem 1.25rem;
  text-align: center;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
}

.cta-band h2 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  color: var(--white);
}

.cta-band p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.75);
}

.btn--light {
  background: var(--white);
  color: var(--black) !important;
  border-color: var(--white);
}

.btn--light:hover {
  background: var(--fuchsia);
  border-color: var(--fuchsia);
  color: var(--white) !important;
}

@media (max-width: 720px) {
  .about-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Interior pages (Services, About, Contact, etc.) ——— */
.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 1.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  font-weight: 600;
}

.page-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fuchsia);
  margin: 0 0 0.5rem;
}

.page-hero .lead {
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 1.5rem;
}

.page-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3.5rem;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding-top: 0;
}

.popular-card {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.popular-card__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #eee;
}

.popular-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.popular-card__media--ba {
  aspect-ratio: 16 / 9;
  background: #f3f3f3;
}

.popular-card__media--ba img {
  object-fit: contain;
}

.popular-card__body {
  padding: 1.25rem 0 0.5rem;
}

.popular-card h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  line-height: 1.2;
}

.popular-card__tag {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fuchsia);
}

.popular-card p {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.popular-card .note,
.note {
  font-size: 0.88rem;
  color: var(--muted);
}

.menu-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 1.75rem;
  font-weight: 600;
}

.menu-block {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.menu-group {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fuchsia);
  font-weight: 700;
}

.menu-note {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.menu-list--compact {
  gap: 0.75rem;
}

.menu-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  align-items: baseline;
}

.menu-name {
  font-weight: 600;
  font-size: 1.02rem;
}

.menu-price {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--fuchsia-dark);
  white-space: nowrap;
}

.menu-desc {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.menu-results {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7a7a7a;
}

.menu-cta-line {
  margin: 1rem 0 0;
}

.menu-learn {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--fuchsia-dark);
  text-decoration: none;
  white-space: nowrap;
}

.menu-learn:hover {
  text-decoration: underline;
}

.menu-package {
  margin-top: 0.35rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--line);
}

.menu-package .menu-name {
  color: var(--fuchsia-dark);
}

.ba-section {
  margin: 2.5rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.ba-section .menu-heading {
  margin-bottom: 0.5rem;
}

.ba-note {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 40rem;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .ba-grid {
    grid-template-columns: 1fr;
  }
}

.ba-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.ba-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  background: #f3f3f3;
  display: block;
}

.ba-card figcaption {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu-book {
  text-align: center;
  padding: 2rem 1rem 0;
}

.menu-book p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.prose {
  max-width: 40rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
}

.prose p {
  margin: 0 0 1rem;
  color: #3a3a3a;
}

.prose-list {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: #3a3a3a;
}

.prose-list li {
  margin-bottom: 0.4rem;
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(11rem, 15rem) minmax(0, 22rem);
  justify-content: center;
  align-items: center;
  column-gap: clamp(2rem, 5vw, 3.75rem);
  row-gap: 1.75rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 4.25rem) 1.25rem 2.25rem;
  isolation: isolate;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 42% 70% at 28% 48%, rgba(199, 21, 133, 0.08), transparent 72%),
    linear-gradient(180deg, #f8f4f6 0%, #ffffff 78%);
  pointer-events: none;
}

.about-hero__photo {
  margin: 0;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 15, 15, 0.1);
  outline: 1px solid rgba(199, 21, 133, 0.12);
  outline-offset: 6px;
}

.about-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 12%;
  display: block;
}

.about-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 22rem;
  padding-top: 0.15rem;
}

.about-hero__copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fuchsia);
  margin: 0 0 0.65rem;
}

.about-hero__copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.about-hero__copy .lead {
  margin: 0;
  max-width: 20rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted);
}

.about-hero__copy .lead::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--fuchsia);
  margin: 0 0 1rem;
}

@media (max-width: 720px) {
  .about-hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding-bottom: 1.75rem;
  }

  .about-hero__photo {
    width: min(12.5rem, 58vw);
    outline-offset: 5px;
  }

  .about-hero__copy {
    align-items: center;
  }

  .about-hero__copy .lead::before {
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero__copy .lead {
    max-width: 18rem;
  }
}

.about-signoff {
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  font-style: italic;
}

.book-callout {
  margin: 2.75rem 0 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line);
  max-width: 36rem;
}

.book-callout__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fuchsia);
}

.book-callout__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
}

.book-callout__text {
  margin: 0 0 1.25rem;
  color: #3a3a3a;
}

.book-callout__link {
  margin-bottom: 0.5rem;
}

.book-callout__link[aria-disabled="true"] {
  opacity: 0.75;
  pointer-events: none;
}

.book-callout__note {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info h2,
.contact-form h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.contact-preferred {
  margin: 0 0 2rem;
  padding: 1.35rem 1.35rem 1.45rem;
  border: 1px solid rgba(199, 21, 133, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 80% 90% at 0% 0%, rgba(199, 21, 133, 0.08), transparent 65%),
    #fff;
}

.contact-preferred__label {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fuchsia);
}

.contact-preferred h2 {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  margin: 0 0 0.75rem;
}

.contact-preferred h2 a {
  color: var(--black);
  text-decoration: none;
}

.contact-preferred h2 a:hover {
  color: var(--fuchsia);
}

.contact-preferred__text {
  margin: 0 0 1.15rem;
  color: var(--muted);
  max-width: 28rem;
  font-size: 0.95rem;
}

.contact-preferred__btn {
  display: inline-flex;
  margin: 0 0 0.85rem;
  text-decoration: none !important;
}

.contact-preferred__alt {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-preferred__alt a {
  font-weight: 600;
}

.contact-form__note {
  margin: -0.25rem 0 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.contact-phone {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}

.contact-phone a {
  color: var(--black);
  text-decoration: none;
}

.contact-phone a:hover {
  color: var(--fuchsia);
}

.hours-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(199, 21, 133, 0.35);
  border-color: var(--fuchsia);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
  max-width: 720px;
}

.gift-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none !important;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.gift-amount:hover {
  border-color: var(--fuchsia);
  color: var(--fuchsia);
  background: var(--fuchsia-soft);
}

.gift-amount--other {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 600;
}

@media (max-width: 800px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .menu-price {
    white-space: normal;
  }
}

/* ——— Education / training ——— */
.edu-hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 4rem) 1.25rem 2rem;
  isolation: isolate;
}

.edu-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 70% at 12% 20%, rgba(199, 21, 133, 0.08), transparent 70%),
    linear-gradient(180deg, #f8f4f6 0%, #ffffff 78%);
  pointer-events: none;
}

.edu-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  font-weight: 600;
  max-width: 18ch;
}

.edu-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.edu-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem 1.25rem;
  margin: 0 0 1.75rem;
  max-width: 46rem;
}

.edu-fact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
}

.edu-fact__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fuchsia);
}

.edu-fact__value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
}

.edu-hero__note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 36rem;
}

.edu-section {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}

.edu-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 1rem;
  font-weight: 600;
}

.edu-prose {
  margin: 0 0 1rem;
  max-width: 40rem;
  color: var(--muted);
}

.edu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 40rem;
  display: grid;
  gap: 0.75rem;
}

.edu-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--black);
  font-size: 0.98rem;
  line-height: 1.5;
}

.edu-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--fuchsia);
}

.edu-enroll {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.edu-enroll__card {
  max-width: 36rem;
  padding: 1.75rem 1.5rem 1.85rem;
  border: 1px solid rgba(199, 21, 133, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 80% 90% at 0% 0%, rgba(199, 21, 133, 0.07), transparent 65%),
    #fff;
}

.edu-enroll__card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin: 0 0 0.5rem;
}

.edu-enroll__price {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}

.edu-enroll__meta {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 800px) {
  .edu-facts {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .edu-facts {
    grid-template-columns: 1fr;
  }
}
