:root {
  --cream: #f6f0e7;
  --cream-deep: #ebe0d1;
  --stone: #d8cbbb;
  --sand: #b89f84;
  --olive: #6f735c;
  --moss: #4f5747;
  --charcoal: #27231f;
  --ink-soft: rgba(39, 35, 31, 0.68);
  --white: #fffaf3;
  --line: rgba(39, 35, 31, 0.12);
  --shadow: 0 28px 80px rgba(39, 35, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--charcoal);
}

p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  min-height: 100vh;
  padding: 28px clamp(20px, 6vw, 86px) 76px;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.9), rgba(216, 203, 187, 0.8)),
    var(--cream);
  position: relative;
  overflow: hidden;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.22'/%3E%3C/svg%3E");
  opacity: 0.18;
  pointer-events: none;
}

.profile-header {
  padding: 28px clamp(20px, 6vw, 86px) 72px;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.92), rgba(216, 203, 187, 0.76)),
    var(--cream);
  overflow: hidden;
}

.booking-header {
  padding: 28px clamp(20px, 6vw, 86px) 72px;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.94), rgba(216, 203, 187, 0.68)),
    var(--cream);
}

.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(54px, 8vw, 98px);
}

.brand {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(39, 35, 31, 0.74);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 180ms ease, opacity 180ms ease;
}

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

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.42);
}

.cart-count {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  margin-left: 5px;
  place-items: center;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.66rem;
  line-height: 1;
  opacity: 0.42;
}

.cart-count.is-visible {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.58);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--charcoal);
  transition: transform 220ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.kicker {
  color: var(--moss);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 920px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 7.8vw, 7.9rem);
  line-height: 0.94;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 15px 25px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease, opacity 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(39, 35, 31, 0.18);
}

.button-dark:hover {
  background: #15120f;
}

.button-light {
  border-color: rgba(39, 35, 31, 0.22);
  background: rgba(255, 250, 243, 0.36);
}

.button-light:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

.button.is-disabled {
  opacity: 0.46;
  pointer-events: none;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 710px;
}

.proof-item {
  border-top: 1px solid rgba(39, 35, 31, 0.16);
  padding-top: 16px;
  color: rgba(39, 35, 31, 0.72);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.proof-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--charcoal);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.hero-portrait {
  position: relative;
  min-height: 520px;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(145deg, rgba(184, 159, 132, 0.28), rgba(111, 115, 92, 0.16)),
    var(--stone);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 20%;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(39, 35, 31, 0.01) 45%, rgba(39, 35, 31, 0.18));
  pointer-events: none;
}

.meet-card {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  width: min(292px, calc(100% - 42px));
  padding: 24px;
  border: 1px solid rgba(255, 250, 243, 0.72);
  border-radius: 28px;
  background: rgba(255, 250, 243, 0.82);
  box-shadow: 0 20px 54px rgba(39, 35, 31, 0.14);
  backdrop-filter: blur(18px);
}

.meet-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1.1;
}

.meet-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.section {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 6vw, 86px);
}

.about {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.7), rgba(235, 224, 209, 0.35)),
    var(--cream);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 18px;
  max-width: 720px;
  padding-top: 42px;
}

.about-link {
  justify-self: start;
  margin-top: 2px;
}

.study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.study-list span {
  color: var(--moss);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.study-list strong {
  padding: 9px 13px;
  border: 1px solid rgba(39, 35, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.58);
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 600;
}

.credential-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.credential-grid div {
  min-height: 142px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 250, 243, 0.58);
  color: rgba(39, 35, 31, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
  box-shadow: 0 18px 48px rgba(39, 35, 31, 0.055);
}

.credential-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--charcoal);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.consults {
  background: var(--cream);
}

.products {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.3), rgba(216, 203, 187, 0.22)),
    var(--cream);
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.booking-page-hero {
  max-width: 850px;
}

.booking-page-hero .kicker {
  margin-bottom: 18px;
}

.booking-page-hero h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.96;
}

.booking-page-hero p {
  max-width: 650px;
  font-size: 1.02rem;
}

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

.booking-page-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.booking-review,
.details-form {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 250, 243, 0.64);
  box-shadow: 0 22px 64px rgba(39, 35, 31, 0.075);
}

.booking-review {
  position: sticky;
  top: 24px;
  padding: clamp(24px, 4vw, 34px);
}

.booking-review .kicker {
  margin-bottom: 14px;
}

.booking-review h2 {
  margin-bottom: 22px;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.booking-review dl {
  display: grid;
  gap: 0;
  margin: 0 0 22px;
}

.booking-review dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.booking-review dl div:last-child {
  border-bottom: 1px solid var(--line);
}

.booking-review dt {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.booking-review dd {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: right;
}

.booking-review > a {
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.details-form {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 38px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.details-form label {
  display: grid;
  gap: 9px;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.details-form input,
.details-form select,
.details-form textarea {
  width: 100%;
  border: 1px solid rgba(39, 35, 31, 0.14);
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.78);
  color: var(--charcoal);
  font-size: 0.98rem;
  letter-spacing: 0;
  line-height: 1.5;
  outline: none;
  padding: 15px 16px;
  text-transform: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.details-form textarea {
  resize: vertical;
}

.details-form input:focus,
.details-form select:focus,
.details-form textarea:focus {
  border-color: rgba(79, 87, 71, 0.62);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(111, 115, 92, 0.11);
}

.payment-panel {
  display: grid;
  gap: 14px;
  margin-top: 4px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.payment-panel .button {
  width: 100%;
}

.stripe-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.stripe-note span {
  color: #635bff;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.stripe-note small {
  font-size: 0.82rem;
}

.profile-hero-copy {
  max-width: 860px;
}

.profile-hero-copy .kicker {
  margin-bottom: 20px;
}

.profile-hero h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.96;
}

.profile-hero p {
  max-width: 690px;
  font-size: 1.02rem;
}

.profile-portrait {
  min-height: 480px;
  border-radius: 36px;
  overflow: hidden;
  background: var(--stone);
  box-shadow: var(--shadow);
}

.profile-portrait img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center 18%;
}

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

.profile-grid {
  display: grid;
  grid-template-columns: minmax(250px, 330px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.profile-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 14px;
}

.profile-badge,
.profile-contact,
.profile-panel {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 250, 243, 0.62);
  box-shadow: 0 20px 58px rgba(39, 35, 31, 0.065);
}

.profile-badge,
.profile-contact {
  padding: 22px;
  color: rgba(39, 35, 31, 0.72);
  font-size: 0.86rem;
  line-height: 1.55;
}

.profile-badge span {
  display: block;
  margin-bottom: 12px;
  color: var(--charcoal);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.profile-contact {
  display: grid;
  gap: 10px;
}

.profile-contact .kicker {
  margin-bottom: 2px;
}

.profile-contact a,
.profile-contact span,
.profile-contact strong {
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 600;
}

.profile-main {
  display: grid;
  gap: 22px;
}

.profile-panel {
  padding: clamp(24px, 4vw, 36px);
}

.profile-panel-header {
  margin-bottom: 22px;
}

.profile-panel-header .kicker {
  margin-bottom: 12px;
}

.profile-panel h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.education-list {
  display: grid;
  gap: 14px;
}

.education-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(248, 241, 231, 0.68);
}

.education-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.education-list h3,
.timeline h3 {
  margin-bottom: 6px;
  font-size: 1.42rem;
  line-height: 1.15;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.expertise-tags span {
  padding: 10px 13px;
  border: 1px solid rgba(39, 35, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.58);
  color: var(--charcoal);
  font-size: 0.84rem;
  font-weight: 600;
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline article {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 0 0 24px 28px;
  border-left: 1px solid var(--line);
}

.timeline article:last-child {
  padding-bottom: 0;
}

.timeline article::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 6px rgba(111, 115, 92, 0.12);
}

.timeline article > span {
  margin-bottom: 6px;
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.timeline small {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.6;
}

.section-header {
  max-width: 830px;
  margin-bottom: 44px;
}

.section-header .kicker {
  margin-bottom: 16px;
}

.section-header h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5.2vw, 4.8rem);
  line-height: 1;
}

.section-header p {
  max-width: 760px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.84fr) minmax(0, 1.16fr);
  gap: 26px;
  align-items: stretch;
}

.booking-card,
.calendar-card,
.product-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 250, 243, 0.62);
  box-shadow: 0 22px 64px rgba(39, 35, 31, 0.075);
}

.booking-card,
.calendar-card {
  padding: clamp(24px, 4vw, 36px);
}

.booking-card h3,
.calendar-topline h3 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.consult-options {
  display: grid;
  gap: 14px;
  margin: 28px 0 24px;
  padding: 0;
  border: 0;
}

.consult-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(39, 35, 31, 0.11);
  border-radius: 22px;
  background: rgba(248, 241, 231, 0.84);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.consult-option:hover,
.consult-option.is-selected {
  transform: translateY(-1px);
  border-color: rgba(79, 87, 71, 0.42);
  background: rgba(255, 250, 243, 0.92);
}

.consult-option input {
  accent-color: var(--moss);
  margin-top: 4px;
}

.consult-option strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
}

.consult-option small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.consult-option em {
  display: block;
  margin-top: 9px;
  color: rgba(39, 35, 31, 0.74);
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.55;
}

.booking-summary {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(39, 35, 31, 0.72);
  font-size: 0.86rem;
}

.booking-summary span:first-child {
  color: var(--charcoal);
  font-weight: 600;
}

.checkout-button {
  width: 100%;
}

.calendar-topline {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.calendar-topline p:last-child {
  max-width: 310px;
  font-size: 0.9rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.calendar-slot {
  min-height: 112px;
  padding: 16px 13px;
  border: 1px solid rgba(39, 35, 31, 0.1);
  border-radius: 21px;
  background: rgba(248, 241, 231, 0.88);
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.calendar-slot:hover,
.calendar-slot.is-selected {
  transform: translateY(-3px);
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

.calendar-slot.is-unavailable {
  opacity: 0.48;
  background: rgba(39, 35, 31, 0.045);
  color: rgba(39, 35, 31, 0.64);
  cursor: not-allowed;
}

.calendar-slot.is-unavailable:hover {
  transform: none;
  border-color: rgba(39, 35, 31, 0.1);
  background: rgba(39, 35, 31, 0.045);
  color: rgba(39, 35, 31, 0.64);
}

.calendar-slot strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.1;
}

.calendar-slot span {
  display: block;
  margin-top: 9px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.product-card {
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 87, 71, 0.34);
  box-shadow: 0 30px 80px rgba(39, 35, 31, 0.13);
}

.product-image {
  aspect-ratio: 1.24 / 1;
  overflow: hidden;
  background: var(--stone);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.045);
}

.product-content {
  padding: 24px;
}

.product-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.product-content h3 {
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  line-height: 1.1;
}

.product-heading span {
  flex: 0 0 auto;
  margin-top: 3px;
  padding: 8px 12px;
  border: 1px solid rgba(39, 35, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.58);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-content p {
  margin-bottom: 20px;
  font-size: 0.91rem;
}

.bundle-toggle {
  width: 100%;
}

.bundle-toggle[aria-expanded="true"] {
  border-color: rgba(79, 87, 71, 0.46);
  background: var(--charcoal);
  color: var(--white);
}

.bundle-details {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 300ms ease, margin-top 260ms ease, opacity 220ms ease;
}

.bundle-details.is-open {
  max-height: 680px;
  margin-top: 18px;
  opacity: 1;
}

.bundle-label {
  margin-bottom: 10px;
  color: var(--moss);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.bundle-details ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.bundle-details li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.bundle-details strong {
  display: block;
  margin-bottom: 4px;
  color: var(--charcoal);
  font-size: 0.9rem;
  line-height: 1.35;
}

.bundle-details span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.add-cart-button {
  width: 100%;
  margin-top: 16px;
}

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

.cart-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.cart-panel {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 250, 243, 0.64);
  box-shadow: 0 22px 64px rgba(39, 35, 31, 0.075);
  padding: clamp(24px, 4vw, 36px);
}

.cart-panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.cart-panel-header .kicker {
  margin-bottom: 12px;
}

.cart-panel-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.cart-panel-header a {
  color: var(--moss);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(248, 241, 231, 0.66);
}

.cart-item img {
  width: 92px;
  height: 92px;
  border-radius: 18px;
  object-fit: cover;
}

.cart-item h3 {
  margin-bottom: 4px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.cart-item p {
  margin-bottom: 10px;
  font-size: 0.86rem;
}

.cart-item > strong {
  color: var(--charcoal);
  font-size: 1rem;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 34px 38px 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.72);
  overflow: hidden;
}

.quantity-control button {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  font-weight: 700;
}

.quantity-control span {
  color: var(--charcoal);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.empty-cart {
  display: none;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(248, 241, 231, 0.66);
  text-align: center;
}

.empty-cart.is-visible {
  display: grid;
  gap: 16px;
}

.cart-total {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-total.is-visible {
  display: flex;
}

.cart-total span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cart-total strong {
  color: var(--charcoal);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(20px, 6vw, 86px);
  border-top: 1px solid var(--line);
  background: var(--charcoal);
  color: var(--white);
}

.site-footer .brand,
.site-footer p {
  color: var(--white);
}

.site-footer p {
  font-size: 0.88rem;
  opacity: 0.7;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 1080px) {
  .hero,
  .booking-layout,
  .booking-page-layout,
  .cart-page-layout,
  .about-layout,
  .profile-hero,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .profile-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-review {
    position: static;
  }

  .about-copy {
    padding-top: 0;
  }

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

  .hero-portrait,
  .hero-portrait img {
    min-height: 500px;
  }

  .meet-card {
    left: 22px;
    bottom: 22px;
  }

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

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 12;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 11;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    background: rgba(246, 240, 231, 0.95);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .nav-links-static {
    display: none;
  }

  .proof-grid,
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .calendar-topline {
    display: block;
  }

  .calendar-topline p:last-child {
    max-width: none;
    margin-top: 10px;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .hero-actions,
  .proof-grid,
  .products-grid,
  .credential-grid,
  .profile-sidebar,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .about-link {
    width: 100%;
  }

  .profile-hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  .booking-page-hero h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .profile-portrait,
  .profile-portrait img {
    min-height: 420px;
  }

  .hero-portrait,
  .hero-portrait img {
    min-height: 420px;
  }

  .hero-portrait {
    border-radius: 32px;
  }

  .meet-card {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
    border-radius: 24px;
  }

  .booking-card,
  .calendar-card,
  .product-card {
    border-radius: 26px;
  }

  .product-heading {
    display: block;
  }

  .product-heading span {
    display: inline-flex;
    margin-top: 12px;
  }

  .cart-panel-header {
    display: block;
  }

  .cart-panel-header a {
    display: inline-block;
    margin-top: 14px;
  }

  .cart-item {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .cart-item img {
    width: 74px;
    height: 74px;
  }

  .cart-item > strong {
    grid-column: 1 / -1;
  }

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

  .calendar-slot {
    min-height: 72px;
    padding: 9px 8px;
    border-radius: 15px;
    font-size: 0.82rem;
  }

  .calendar-slot strong {
    margin-bottom: 3px;
    font-size: 1.08rem;
  }

  .calendar-slot span {
    margin-top: 5px;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .site-footer {
    display: block;
  }

  .site-footer p {
    margin-top: 10px;
  }
}

@media (max-width: 400px) {
  .calendar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
