:root {
  --cream: #fffaf7;
  --taupe: #9a7a62;
  --brown: #4b332c;
  --dark-brown: #231916;
  --sage: #687a67;
  --clay: #b97661;
  --gold: #c59a45;
  --plum: #7d5770;
  --rose: #d6a0a9;
  --lilac: #e9def2;
  --lilac-deep: #9b7caf;
  --white: #ffffff;
  --text: #241916;
  --muted: rgba(36, 25, 22, 0.68);
  --border: rgba(75, 51, 44, 0.14);
  --shadow: 0 18px 44px rgba(31, 23, 20, 0.1);
  --nav-logo-size: 40px;
  --hero-logo-size: 88px;
  --hero-logo-margin-inline: 0 auto;
  --logo-fit: cover;
  --logo-position: 50% 50%;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
}

.visual-v1 {
  --cream: #fbf7f1;
  --taupe: #bca892;
  --brown: #6b5444;
  --shadow: 0 16px 45px rgba(61, 53, 48, 0.07);
}

.visual-v2 {
  --cream: #faf8f5;
  --taupe: #c9b5a0;
  --brown: #6b5444;
  --shadow: 0 6px 18px rgba(61, 53, 48, 0.05);
}

.visual-v3 {
  --cream: #fbfaf8;
  --taupe: #b8a892;
  --brown: #5f5048;
  --sage: #a9b7aa;
}

.visual-v4 {
  --cream: #f8f4ee;
  --taupe: #a58c75;
  --brown: #4f382d;
  --dark-brown: #2d211c;
}

.visual-v5 {
  --cream: #fffdf9;
  --taupe: #b6a999;
  --brown: #68584d;
  --shadow: none;
}

.visual-v6 {
  --cream: #f8f8f4;
  --taupe: #9baa94;
  --brown: #645040;
  --sage: #7f927b;
}

.visual-v7 {
  --cream: #faf8f5;
  --taupe: #c9b5a0;
  --brown: #6b5444;
  --white: #ffffff;
  --shadow: none;
}

.dark {
  --cream: #191019;
  --white: #261828;
  --text: #fff7f1;
  --brown: #f1d5c8;
  --dark-brown: #fffaf7;
  --taupe: #d5b8ca;
  --sage: #c7d0b8;
  --plum: #d7acd0;
  --lilac: #382739;
  --lilac-deep: #e0bbdf;
  --muted: rgba(255, 247, 241, 0.76);
  --border: rgba(241, 213, 200, 0.2);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

h1, h2, h3,
.brand span,
.drawer-head span,
.section-title,
.service-top h4,
.featured-card h3,
.prep-card h3,
.referral-card h2,
.process-card h3,
.guide-copy h2,
.portfolio-tile h3,
.version-intro h2,
.hour-card h4,
.product-card h3,
.product-card h4,
.product-shelf-intro h2,
.recommended-product-card h4,
.policy-box h2,
.contact-card h2,
.payment-summary-panel h2,
.payment-option-card h3,
.modal-head h2,
.advisory-box h3,
.footer h3 {
  font-family: var(--font-display);
}

.announcement {
  background: linear-gradient(90deg, var(--dark-brown), var(--plum), var(--lilac-deep));
  color: white;
  text-align: center;
  padding: 12px 16px;
  font-weight: 600;
}

.dark .announcement {
  background: linear-gradient(90deg, #3b2036, #7d5770, #b995c8);
  color: #fffaf7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--white) 94%, transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav {
  max-width: 1280px;
  height: 80px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-wrap, .brand, .nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  color: var(--brown);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

.brand img {
  width: var(--nav-logo-size);
  height: var(--nav-logo-size);
  border-radius: 999px;
  object-fit: var(--logo-fit);
  object-position: var(--logo-position);
}

.icon-button, .theme-toggle {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  color: var(--brown);
  background: rgba(154, 122, 90, 0.12);
}

.theme-toggle {
  width: auto;
  min-width: 48px;
  padding: 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
}

.icon-button {
  display: grid;
  place-content: center;
  gap: 4px;
}

.icon-button span {
  width: 22px;
  height: 2px;
  background: currentColor;
  display: block;
}

.nav-link {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-link:hover { color: var(--brown); }

.text-button {
  min-height: 40px;
  border: 1px solid var(--brown);
  border-radius: 10px;
  background: var(--brown);
  color: white;
  font-weight: 700;
  padding: 8px 16px;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  background: transparent;
  transition: background 0.2s ease;
}

.drawer.open {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.5);
}

.drawer-panel {
  width: 288px;
  height: 100%;
  background: var(--cream);
  border-right: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
}

.drawer.open .drawer-panel { transform: translateX(0); }

.drawer-head {
  height: 73px;
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--brown);
  font-size: 1.5rem;
  font-weight: 700;
}

.drawer-head button {
  border: 0;
  background: transparent;
  color: var(--brown);
  font-size: 20px;
}

.drawer a, .drawer-login {
  margin: 2px 16px;
  padding: 10px 16px;
  border-radius: 14px;
  color: var(--brown);
  font-weight: 500;
  text-align: left;
  border: 0;
  background: transparent;
}

.drawer a:hover, .drawer-login:hover { background: rgba(201, 181, 160, 0.12); }
.drawer-label {
  margin: 24px 32px 8px;
  color: var(--taupe);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}
.top-gap { margin-top: 28px; }
.drawer-login { margin-top: auto; border-top: 1px solid var(--border); border-radius: 0; padding-top: 18px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 20px 76px;
  background:
    radial-gradient(circle at 88% 12%, rgba(233, 222, 242, 0.92), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,250,247,0.95)),
    var(--cream);
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 22%, rgba(125,87,112,0.08) 22% 31%, transparent 31% 100%),
    linear-gradient(25deg, transparent 0 64%, rgba(185,118,97,0.09) 64% 72%, transparent 72% 100%);
  mask-image: linear-gradient(180deg, black, transparent 82%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.hero-copy { text-align: left; }

.hero-logo {
  width: var(--hero-logo-size);
  height: var(--hero-logo-size);
  margin: 0 0 24px;
  margin-inline: var(--hero-logo-margin-inline);
  border-radius: 999px;
  border: 2px solid rgba(214, 168, 79, 0.52);
  background: rgba(214, 168, 79, 0.16);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-logo img { width: 100%; height: 100%; object-fit: var(--logo-fit); object-position: var(--logo-position); }

.hero h1 {
  margin: 0 0 24px;
  max-width: 720px;
  font-size: 5.15rem;
  font-weight: 700;
  line-height: 0.92;
  color: var(--dark-brown);
}

.hero .subtitle {
  max-width: 680px;
  color: var(--brown);
  font-size: 1.38rem;
  font-weight: 650;
  margin: 0 0 28px;
}

.intro-copy {
  max-width: 680px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy p { margin: 14px 0; }
.intro-copy .strong { color: var(--brown); font-weight: 600; }

.hero-proof {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.proof-card,
.proof-card {
  background: linear-gradient(180deg, var(--white), rgba(233, 222, 242, 0.28));
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.main-proof {
  padding: 28px;
  border-top: 5px solid var(--lilac-deep);
}

.main-proof span {
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.main-proof strong {
  display: block;
  color: var(--dark-brown);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.12;
  margin: 12px 0;
}

.main-proof p {
  color: var(--muted);
  margin: 0;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px auto 0;
}

.trust-row span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--white) 74%, transparent);
  color: var(--brown);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 12px;
}

.button-row {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.center .button-row { justify-content: center; }

.primary-btn, .outline-btn {
  min-height: 52px;
  border-radius: 10px;
  padding: 13px 28px;
  border: 1px solid var(--brown);
  font-size: 1.05rem;
  transition: 0.2s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--plum), var(--brown));
  color: white;
  box-shadow: 0 14px 30px rgba(109, 61, 76, 0.22);
}
.primary-btn:hover { background: var(--dark-brown); transform: translateY(-1px); }

.outline-btn {
  color: var(--brown);
  background: transparent;
}
.outline-btn:hover { background: var(--plum); color: white; border-color: var(--plum); }

.section { padding: 64px 20px; }
.section.white { background: var(--white); }
.section.tint { background: linear-gradient(180deg, transparent, rgba(201, 181, 160, 0.05)); }
.container { width: min(100%, 1280px); margin: 0 auto; }
.narrow { width: min(100%, 900px); margin: 0 auto; }

.section-title {
  text-align: center;
  color: var(--brown);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 12px;
}

.section-title.left { text-align: left; }

.eyebrow {
  margin: 0 0 8px;
  color: var(--taupe);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.split-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.split-heading > p {
  max-width: 560px;
  color: var(--muted);
  margin: 0 0 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--taupe);
  margin: 0 auto 48px;
  max-width: 640px;
}

.services-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 32px;
  align-items: start;
}

.category-nav {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 8px;
}

.category-nav button {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--brown);
  border-radius: 14px;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}

.category-nav button.active {
  background: var(--brown);
  color: white;
  border-color: var(--brown);
}

.service-group { margin-bottom: 48px; scroll-margin-top: 120px; }
.group-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.group-title h3 {
  color: var(--brown);
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0;
}
.group-title span { font-size: 1.5rem; }
.group-title:after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 218px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  border-color: rgba(107, 84, 68, 0.3);
  box-shadow: 0 16px 42px rgba(61, 53, 48, 0.08);
}

.service-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.service-top h4 {
  margin: 0;
  color: var(--dark-brown);
  font-size: 0.98rem;
  line-height: 1.25;
  font-weight: 750;
}
.price {
  color: var(--brown);
  font-size: 1.18rem;
  font-weight: 800;
  white-space: nowrap;
}
.duration { color: var(--taupe); font-size: 0.8rem; }
.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-meta span,
.detail-chips span {
  border-radius: 999px;
  background: rgba(111, 138, 114, 0.11);
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 8px;
}

.description {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.38;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.detail-chips span {
  background: rgba(214, 168, 79, 0.14);
  color: var(--dark-brown);
  font-size: 0.68rem;
}

.book-small {
  margin-top: auto;
  min-height: 38px;
  border: 0;
  border-radius: 10px;
  color: white;
  background: var(--brown);
  font-weight: 800;
}

.book-small.added { background: var(--sage); }
.book-small:disabled {
  background: var(--taupe);
  cursor: not-allowed;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.featured-card {
  min-height: 270px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.featured-card span {
  color: var(--taupe);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.featured-card h3 {
  color: var(--brown);
  margin: 12px 0;
  font-size: 1.2rem;
}

.featured-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.92rem;
}

.featured-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.featured-foot strong {
  color: var(--brown);
  font-size: 1.35rem;
  font-weight: 400;
}

.featured-foot button {
  border: 0;
  border-radius: 10px;
  background: #6b5444;
  color: white;
  padding: 10px 16px;
  font-weight: 700;
}

.guide-section {
  background:
    linear-gradient(180deg, rgba(168, 181, 163, 0.1), rgba(201, 181, 160, 0.04));
}

.service-guide {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
}

.guide-options {
  display: grid;
  gap: 10px;
}

.guide-options button {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  color: var(--brown);
  padding: 16px;
  text-align: left;
  font-weight: 800;
}

.guide-options button.active {
  background: var(--brown);
  border-color: var(--brown);
  color: white;
}

.guide-quiz-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 250, 247, 0.78);
  padding: 16px;
}

.quiz-question + .quiz-question {
  margin-top: 14px;
}

.quiz-question strong {
  color: var(--dark-brown);
  display: block;
  margin-bottom: 8px;
}

.quiz-options {
  display: grid;
  gap: 8px;
}

.guide-options .quiz-options button {
  min-height: 42px;
  padding: 10px 12px;
}

.guide-result {
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
}

.guide-result span {
  color: var(--taupe);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.guide-result p {
  color: var(--brown);
  font-size: 1.45rem;
  line-height: 1.35;
  margin: 14px 0 24px;
}

.guide-service-list {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.guide-service-list article {
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 12px;
}

.guide-service-list strong {
  color: var(--dark-brown);
}

.guide-service-list span {
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: none;
}

.guide-service-list button {
  border: 0;
  border-radius: 999px;
  background: var(--plum);
  color: white;
  font-weight: 850;
  padding: 10px 14px;
  grid-row: span 2;
}

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

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

.prep-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--cream), rgba(233, 222, 242, 0.36));
  padding: 18px;
}

.prep-card span {
  align-items: center;
  background: var(--brown);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  margin-bottom: 12px;
  width: 30px;
}

.prep-card h3 {
  color: var(--dark-brown);
  font-size: 1rem;
  margin: 0 0 8px;
}

.prep-card p {
  color: var(--muted);
  margin: 0;
}

.referral-section {
  background:
    linear-gradient(135deg, rgba(233, 222, 242, 0.42), rgba(255, 250, 247, 0.95));
}

.referral-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: center;
}

.referral-card h2 {
  color: var(--dark-brown);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.04;
  margin: 0 0 12px;
}

.referral-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.referral-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.share-icon-btn {
  width: 52px;
  height: 52px;
  border: 1px solid var(--brown);
  border-radius: 14px;
  background: var(--brown);
  color: var(--cream);
  display: inline-grid;
  place-items: center;
  transition: 0.2s ease;
}

.share-icon-btn:hover {
  background: var(--dark-brown);
  transform: translateY(-1px);
}

.ios-share-icon {
  position: relative;
  width: 25px;
  height: 27px;
  display: block;
}

.ios-share-icon:before {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 0;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 4px;
}

.ios-share-icon:after {
  content: "";
  position: absolute;
  left: 11px;
  top: 3px;
  width: 2px;
  height: 15px;
  background: currentColor;
  box-shadow: 0 0 0 currentColor;
}

.share-icon-btn .ios-share-icon {
  background:
    linear-gradient(135deg, transparent 47%, currentColor 48% 56%, transparent 57%) 6px 0 / 9px 9px no-repeat,
    linear-gradient(45deg, transparent 47%, currentColor 48% 56%, transparent 57%) 11px 0 / 9px 9px no-repeat;
}

.share-status {
  width: 100%;
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: right;
}

.about-box, .studio-box, .policy-box, .cart-panel, .modal-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(24px, 5vw, 40px);
}

.about-box { background: var(--cream); }
.studio-box { background: rgba(168, 181, 163, 0.1); }
.about-box p, .studio-box p { color: var(--muted); font-size: 1.05rem; }
.contact-line { color: var(--brown); margin-top: 28px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--cream);
  padding: 22px;
}

.process-card span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brown);
  color: white;
  font-weight: 800;
  margin-bottom: 18px;
}

.process-card h3 {
  color: var(--brown);
  margin: 0 0 8px;
}

.process-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.94rem;
}

.client-guide {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.guide-copy {
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brown), var(--dark-brown));
  color: white;
  padding: clamp(28px, 5vw, 44px);
}

.guide-copy .eyebrow,
.guide-copy p { color: #ead4b2; }

.guide-copy h2 {
  margin: 0 0 16px;
  font-size: 3rem;
  line-height: 1.04;
  font-weight: 700;
}

.guide-copy .primary-btn {
  margin-top: 20px;
  background: var(--cream);
  color: var(--brown);
}

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

.guide-list div {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  padding: 22px;
}

.guide-list strong {
  display: block;
  color: var(--brown);
  margin-bottom: 6px;
}

.guide-list span {
  display: block;
  color: var(--muted);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.portfolio-tile {
  min-height: 280px;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  align-items: end;
  background: linear-gradient(135deg, rgba(91,57,41,0.9), rgba(47,33,26,0.96));
  color: white;
  overflow: hidden;
}

.portfolio-tile.sage { background: linear-gradient(135deg, var(--sage), var(--brown)); }
.portfolio-tile.cream { background: linear-gradient(135deg, var(--taupe), var(--dark-brown)); }
.portfolio-tile.gold { background: linear-gradient(135deg, var(--gold), var(--brown)); }

.portfolio-tile span {
  color: rgba(250, 248, 245, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.portfolio-tile h3 {
  margin: 8px 0 0;
  font-size: 1.35rem;
}

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

.testimonial-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  padding: 24px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  color: var(--muted);
  font-size: 1.03rem;
  margin: 0;
}

.testimonial-card strong {
  display: block;
  color: var(--brown);
  margin-bottom: 2px;
}

.testimonial-card span {
  color: var(--taupe);
  font-size: 0.85rem;
  font-weight: 700;
}

.versions-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
}

.version-intro {
  position: sticky;
  top: 120px;
  align-self: start;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brown), var(--dark-brown));
  color: white;
  padding: clamp(28px, 5vw, 44px);
}

.version-intro h2 {
  margin: 0 0 14px;
  font-weight: 700;
  font-size: 3rem;
}

.version-intro p,
.version-intro .eyebrow { color: #ead4b2; }

.version-intro .primary-btn {
  margin-top: 18px;
  background: var(--cream);
  color: var(--brown);
}

.version-list {
  display: grid;
  gap: 12px;
}

.version-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.version-card.active {
  border-color: var(--brown);
  box-shadow: var(--shadow);
}

.version-card span {
  color: var(--taupe);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.version-card h3 {
  margin: 6px 0 0;
  color: var(--brown);
  font-size: 1rem;
}

.version-card button {
  border: 0;
  border-radius: 10px;
  background: var(--brown);
  color: white;
  padding: 10px 14px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-settings-box {
  overflow: hidden;
}

.brand-preview {
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(233, 222, 242, 0.5), rgba(255, 250, 247, 0.95)),
    var(--cream);
  display: flex;
  justify-content: center;
  min-height: 170px;
  margin: 18px 0;
  padding: 22px;
}

.admin-logo-preview {
  margin: 0;
}

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

.brand-settings-form label {
  color: var(--brown);
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.brand-settings-form .full {
  grid-column: 1 / -1;
}

.brand-settings-form input[type="password"],
.brand-settings-form input[type="text"],
.brand-settings-form input[type="email"],
.brand-settings-form input[type="tel"],
.brand-settings-form input[type="number"],
.brand-settings-form input[type="date"],
.brand-settings-form select,
.brand-settings-form input:not([type]) {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  min-height: 44px;
  padding: 10px 12px;
}

.toggle-line {
  align-items: center;
  display: flex !important;
  flex-direction: row;
  gap: 10px !important;
}

.brand-settings-form input[type="range"] {
  accent-color: var(--plum);
}

.brand-settings-form [data-logo-value] {
  color: var(--muted);
  font-size: 0.86rem;
}

.readiness-list {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.readiness-line {
  border: 1px solid var(--border);
  border-left: 5px solid #b42318;
  border-radius: 8px;
  background: var(--white);
  display: grid;
  gap: 4px;
  padding: 12px;
}

.readiness-line.ready {
  border-left-color: #267a46;
}

.readiness-line strong {
  color: var(--brown);
}

.readiness-line span {
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: none;
}

.readiness-line.ready span {
  color: #267a46;
}

.readiness-line p {
  color: var(--muted);
  margin: 0;
}

.brand-segment {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-segment span {
  color: var(--brown);
  font-weight: 850;
  margin-right: 4px;
}

.brand-segment button {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--brown);
  font-weight: 850;
  min-height: 38px;
  padding: 8px 12px;
}

.brand-segment button.active {
  background: var(--brown);
  border-color: var(--brown);
  color: white;
}

.dark .brand-preview {
  background:
    linear-gradient(135deg, rgba(125, 87, 112, 0.2), rgba(38, 24, 40, 0.94)),
    var(--cream);
}

.visual-v5 .card,
.visual-v5 .featured-card,
.visual-v5 .testimonial-card,
.visual-v5 .policy-box,
.visual-v5 .about-box,
.visual-v7 .card,
.visual-v7 .featured-card,
.visual-v7 .testimonial-card,
.visual-v7 .policy-box,
.visual-v7 .about-box {
  border-radius: 10px;
}

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

.hour-card h4, .product-card h3, .product-card h4 {
  margin: 0 0 8px;
  color: var(--brown);
}
.hour-card p, .product-card p { margin: 0; color: var(--muted); }
.product-shelf-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.3), rgba(233, 222, 242, 0.25)),
    var(--cream);
}
.product-shelf-intro {
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brown), var(--dark-brown));
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 24px;
  padding: clamp(26px, 5vw, 46px);
  margin-bottom: 42px;
}
.product-shelf-intro h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.04;
  margin: 0 0 14px;
}
.product-shelf-intro p {
  color: rgba(255, 250, 247, 0.78);
  margin: 0;
}
.product-shelf-intro .eyebrow {
  color: #ead4b2;
}
.product-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -16px 0 30px;
}

.product-filter-row button {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--brown);
  font-weight: 850;
  min-height: 42px;
  padding: 10px 16px;
}

.product-filter-row button.active {
  background: var(--brown);
  border-color: var(--brown);
  color: white;
}
.stock-shortlist {
  margin: 0 0 42px;
}
.stock-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.stock-card {
  display: grid;
  gap: 12px;
  min-height: 320px;
}
.stock-card > span {
  align-self: start;
  background: rgba(125, 87, 112, 0.1);
  border: 1px solid rgba(125, 87, 112, 0.18);
  border-radius: 999px;
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 900;
  justify-self: start;
  padding: 6px 10px;
}
.stock-card h3 {
  color: var(--dark-brown);
  font-size: 1.38rem;
  line-height: 1.1;
  margin: 0;
}
.stock-card p {
  color: var(--muted);
  margin: 0;
}
.stock-role {
  color: var(--brown) !important;
  font-weight: 800;
}
.stock-card strong {
  color: var(--brown);
  display: block;
  font-size: 0.86rem;
  margin-bottom: 4px;
}
.product-principles {
  align-self: stretch;
  display: grid;
  gap: 10px;
}
.product-principles span {
  border: 1px solid rgba(255, 250, 247, 0.18);
  border-radius: 14px;
  background: rgba(255, 250, 247, 0.08);
  color: var(--cream);
  display: block;
  font-weight: 750;
  line-height: 1.35;
  padding: 13px 14px;
}
.product-shelf-stack {
  display: grid;
  gap: 42px;
}
.product-shelf-group {
  scroll-margin-top: 120px;
}
.product-group-title {
  margin-bottom: 8px;
}
.product-group-title span {
  color: var(--plum);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
}
.product-group-summary {
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 760px;
}
.recommended-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.recommended-product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 330px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.recommended-product-card:hover {
  border-color: rgba(125, 87, 112, 0.28);
  box-shadow: 0 16px 42px rgba(61, 53, 48, 0.08);
  transform: translateY(-1px);
}
.product-visual {
  align-items: end;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(168, 181, 163, 0.64), rgba(233, 222, 242, 0.78)),
    var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  padding: 14px;
}

.product-visual span {
  color: var(--dark-brown);
  font-size: 2.05rem;
  font-weight: 900;
}

.product-visual small {
  background: rgba(255, 250, 247, 0.88);
  border-radius: 999px;
  color: var(--brown);
  font-weight: 850;
  padding: 6px 10px;
}

.product-visual.hydrate {
  background:
    linear-gradient(135deg, rgba(125, 87, 112, 0.22), rgba(168, 181, 163, 0.5)),
    var(--cream);
}

.product-visual.retwist {
  background:
    linear-gradient(135deg, rgba(91, 57, 41, 0.24), rgba(214, 160, 169, 0.48)),
    var(--cream);
}

.product-visual.scalp-style-support {
  background:
    linear-gradient(135deg, rgba(201, 181, 160, 0.62), rgba(233, 222, 242, 0.66)),
    var(--cream);
}
.recommended-product-card h4 {
  color: var(--dark-brown);
  font-size: 1.03rem;
  line-height: 1.25;
}
.product-card-head {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.product-type {
  align-self: flex-start;
  border: 1px solid rgba(125, 87, 112, 0.22);
  border-radius: 999px;
  color: var(--plum) !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  padding: 6px 10px;
  text-transform: none;
}
.product-detail {
  border-top: 1px solid var(--border);
  display: grid;
  gap: 5px;
  padding-top: 10px;
}
.product-detail strong {
  color: var(--brown);
  font-size: 0.82rem;
}
.product-detail span {
  color: var(--muted);
  line-height: 1.45;
}
.review-proof span { color: var(--text); }
.source-link {
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: underline;
  white-space: nowrap;
}
.product-consult-strip {
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding: clamp(20px, 4vw, 28px);
}
.product-consult-strip p {
  color: var(--muted);
  margin: 0;
}
.product-consult-strip strong {
  color: var(--brown);
}
.product-disclaimer {
  color: var(--muted);
  margin: 18px auto 0;
  max-width: 780px;
  text-align: center;
}
.accessories-section {
  background: var(--white);
}
.accessory-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.closed { opacity: 0.65; }

.policy-stack { display: grid; gap: 28px; }
.legal-stack { display: grid; gap: 18px; }
.policy-box h2 { color: var(--brown); font-weight: 700; margin-top: 0; }
.policy-box p { color: var(--muted); }
.policy-box a {
  color: var(--plum);
  font-weight: 800;
  text-decoration: underline;
}
.policy-standard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.policy-standard-grid div {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--cream), rgba(233, 222, 242, 0.45));
  padding: 16px;
}
.policy-standard-grid strong {
  display: block;
  color: var(--plum);
  margin-bottom: 6px;
}
.policy-standard-grid p {
  margin: 0;
}
.quote {
  border-left: 4px solid var(--brown);
  background: rgba(91, 57, 41, 0.05);
  border-radius: 10px;
  padding: 20px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin: 8px 0;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--brown);
  padding: 16px;
  text-align: left;
  font-weight: 600;
}
.faq-answer { display: none; color: var(--muted); padding: 0 16px 16px; }
.faq-item.open .faq-answer { display: block; }

.contact-card {
  background:
    linear-gradient(135deg, rgba(233, 222, 242, 0.9), rgba(255, 250, 247, 0.98) 48%, rgba(214, 160, 169, 0.26)),
    var(--white);
  color: var(--text);
  border-radius: 18px;
  padding: clamp(28px, 6vw, 44px);
  text-align: left;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-card h2 {
  color: var(--dark-brown);
  font-weight: 700;
  font-size: 3.15rem;
  line-height: 1.04;
  margin: 0 0 16px;
  max-width: 720px;
}
.contact-card p {
  color: var(--muted);
  max-width: 660px;
}
.contact-card .eyebrow {
  color: var(--plum);
}
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0 18px;
}
.contact-pill {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--brown);
  color: var(--cream);
  font-weight: 850;
}
.contact-pill:nth-child(2) {
  background: var(--plum);
  color: white;
}
.contact-foot {
  margin: 0;
  color: var(--brown);
  font-weight: 750;
}

.payment-options-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.4), rgba(168, 181, 163, 0.12)),
    var(--cream);
}

.payment-summary-panel {
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  margin-bottom: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.payment-summary-panel h2 {
  color: var(--dark-brown);
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.payment-summary-panel p {
  color: var(--muted);
  margin: 0;
}

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

.payment-option-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  padding: 20px;
}

.payment-option-card span {
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.payment-option-card h3 {
  color: var(--dark-brown);
  font-size: 1.05rem;
  margin: 12px 0;
  overflow-wrap: anywhere;
}

.payment-option-card p,
.payment-proof-box p {
  color: var(--muted);
  margin: 0;
}

.payment-proof-box {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 250, 247, 0.82);
  margin-top: 18px;
  padding: 18px;
}

.payment-proof-box strong {
  color: var(--brown);
  display: block;
  margin-bottom: 8px;
}

.time-slot-field {
  display: grid;
  gap: 10px;
}

.slot-label {
  color: var(--brown);
  font-weight: 800;
}

.time-slot-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.time-slot-legend span {
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  padding: 6px 10px;
}

.legend-open {
  border: 1px solid var(--plum);
  color: var(--plum);
}

.legend-emergency {
  border: 1px solid var(--brown);
  color: var(--brown);
}

.legend-booked {
  border: 1px solid rgba(92, 84, 88, 0.32);
  color: var(--muted);
}

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

.time-slot-placeholder {
  border: 1px dashed var(--border);
  border-radius: 12px;
  color: var(--muted);
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px;
}

.time-slot {
  border: 2px solid var(--plum);
  border-radius: 12px;
  background: var(--white);
  color: var(--text);
  display: grid;
  gap: 4px;
  min-height: 68px;
  padding: 10px;
  text-align: left;
}

.time-slot strong {
  color: var(--dark-brown);
}

.time-slot span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.time-slot.emergency {
  border-color: var(--brown);
  background: rgba(75, 51, 44, 0.06);
}

.time-slot.booked {
  border-color: rgba(92, 84, 88, 0.26);
  background: rgba(92, 84, 88, 0.12);
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.68;
}

.time-slot.selected {
  box-shadow: 0 0 0 4px rgba(125, 87, 112, 0.16);
}

.time-slot.emergency.selected {
  box-shadow: 0 0 0 4px rgba(75, 51, 44, 0.16);
}

.time-slot-note {
  color: var(--muted);
  margin: 0;
}

.dark .legend-open,
.dark .time-slot {
  border-color: #e7bddc;
}

.dark .legend-open {
  color: #e7bddc;
}

.dark .legend-emergency,
.dark .time-slot.emergency {
  border-color: #e8c5ae;
}

.dark .legend-emergency {
  color: #e8c5ae;
}

.dark .time-slot {
  background: rgba(38, 24, 40, 0.92);
}

.dark .time-slot.emergency {
  background: rgba(101, 70, 55, 0.26);
}

.dark .time-slot.booked {
  border-color: rgba(255, 247, 241, 0.2);
  background: rgba(255, 247, 241, 0.08);
}

.dark .hero {
  background:
    linear-gradient(110deg, rgba(25, 16, 25, 0.94), rgba(64, 40, 64, 0.72) 58%, rgba(125, 87, 112, 0.22)),
    var(--cream);
}

.dark .hero:before {
  opacity: 0.16;
}

.dark .payment-options-section {
  background:
    linear-gradient(180deg, rgba(125, 87, 112, 0.18), rgba(25, 16, 25, 0.96)),
    var(--cream);
}

.dark .payment-summary-panel,
.dark .payment-option-card,
.dark .payment-proof-box,
.dark .modal-summary,
.dark .confirmation-panel {
  background: rgba(38, 24, 40, 0.96);
  border-color: rgba(233, 222, 242, 0.24);
}

.dark .payment-proof-box {
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.dark .payment-summary-panel p,
.dark .payment-option-card p,
.dark .payment-proof-box p,
.dark .modal-summary p {
  color: rgba(255, 247, 241, 0.84);
}

.dark .payment-option-card span,
.dark .payment-proof-box strong {
  color: #e7bddc;
}

.contact-hero {
  min-height: 430px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(255,250,247,0.95), rgba(233,222,242,0.72) 58%, rgba(154,122,98,0.2)),
    var(--cream);
}

.contact-hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  margin: 0 auto;
  text-align: center;
}

.contact-hero h1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
}

.contact-hero .subtitle {
  margin-left: auto;
  margin-right: auto;
}

.dark .contact-card {
  background:
    linear-gradient(135deg, rgba(56, 39, 57, 0.94), rgba(35, 24, 24, 0.98) 58%, rgba(75, 51, 44, 0.82)),
    var(--white);
}
.dark .contact-pill {
  background: var(--lilac-deep);
  color: #241916;
}
.dark .contact-pill:nth-child(2) {
  background: #fff7f1;
  color: #241916;
}
.dark .contact-hero {
  background:
    linear-gradient(115deg, rgba(24,17,17,0.98), rgba(56,39,57,0.82) 58%, rgba(95,70,55,0.5)),
    var(--cream);
}

.cart-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  border: 0;
  border-radius: 999px;
  background: var(--brown);
  color: white;
  min-width: 58px;
  min-height: 58px;
  box-shadow: var(--shadow);
}

.cart {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
}
.cart.open { pointer-events: auto; }
.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.cart.open .cart-backdrop { opacity: 1; }
.cart-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(420px, 92vw);
  border-radius: 0;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.cart.open .cart-panel { transform: translateX(0); }
.cart-head {
  display: flex;
  justify-content: space-between;
  color: var(--brown);
  font-size: 1.25rem;
  font-weight: 600;
}
.cart-head button, .modal-close {
  border: 0;
  background: transparent;
  color: var(--taupe);
  font-size: 20px;
}
.cart-items {
  flex: 1;
  overflow: auto;
  padding: 24px 0;
  display: grid;
  gap: 12px;
}
.cart-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.cart-item strong { color: var(--brown); }

.cart-advisory,
.advisory-copy {
  border: 1px solid rgba(173, 98, 65, 0.24);
  border-radius: 12px;
  background: rgba(173, 98, 65, 0.08);
  color: var(--brown);
}

.cart-advisory {
  padding: 14px;
}

.cart-advisory strong {
  display: block;
  margin-bottom: 4px;
}

.cart-advisory p,
.advisory-copy {
  margin: 0;
  font-size: 0.9rem;
}

.advisory-copy {
  padding: 12px;
}

.cart-total {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: grid;
  gap: 16px;
}

.promo-box {
  border-top: 1px solid var(--border);
  display: grid;
  gap: 10px;
  padding-top: 16px;
}

.promo-box label {
  color: var(--brown);
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.promo-box input {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  min-height: 42px;
  padding: 10px 12px;
}

.promo-actions,
.promo-email-row {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.promo-actions button,
.promo-email-row button {
  border: 1px solid rgba(122, 82, 142, 0.28);
  border-radius: 10px;
  background: rgba(122, 82, 142, 0.08);
  color: var(--plum);
  font-weight: 850;
  min-height: 42px;
  padding: 10px 12px;
}

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

.promo-status.success,
.discount-total {
  color: var(--plum);
}

.promo-status.error {
  color: var(--brown);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,0.55);
}
.modal.open { display: grid; }
.modal-panel {
  width: min(760px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: var(--white);
}
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 20px;
}
.modal-head h2 {
  color: var(--brown);
  font-weight: 700;
  margin: 0;
  font-size: 1.85rem;
}
.progress {
  height: 8px;
  background: rgba(201, 181, 160, 0.22);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 24px;
}
.progress div {
  width: 75%;
  height: 100%;
  background: var(--brown);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
label { color: var(--brown); font-weight: 600; font-size: 0.9rem; }
input, textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  background: var(--cream);
  color: var(--text);
}
textarea { min-height: 92px; resize: vertical; }

.field-note {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
  margin-top: 4px;
}

.contact-preference {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: color-mix(in srgb, var(--lilac) 46%, var(--white));
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.contact-preference legend {
  color: var(--brown);
  font-weight: 800;
  padding: 0 6px;
}

.contact-preference label {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
}

.contact-preference input {
  width: 16px;
  margin: 0;
  accent-color: var(--plum);
}

.contact-preference p {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.82rem;
  margin: 2px 0 0;
}

.policy-ack {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(233, 222, 242, 0.45);
  padding: 14px;
  color: var(--text);
  line-height: 1.45;
}

.sms-consent {
  background: color-mix(in srgb, var(--lilac) 35%, var(--white));
}

.sms-optin-proof .sms-optin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.sms-optin-proof .primary-btn {
  justify-self: start;
}

.policy-ack input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--plum);
}

.policy-ack a {
  color: var(--plum);
  font-weight: 900;
  text-decoration: underline;
}

.modal-summary {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  margin: 22px 0;
  color: var(--muted);
}
.modal-actions { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

.confirmation-panel {
  background: linear-gradient(135deg, rgba(199, 208, 184, 0.22), rgba(233, 222, 242, 0.5));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  margin: 22px 0;
  color: var(--text);
}

.confirmation-panel strong {
  display: block;
  color: var(--brown);
  margin-bottom: 8px;
}

.confirmation-panel p {
  color: var(--muted);
}

.confirmation-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 8px;
}

.advisory-panel {
  max-width: 620px;
}

.advisory-box {
  border-radius: 16px;
  background: linear-gradient(180deg, var(--cream), var(--white));
  border: 1px solid var(--border);
  padding: clamp(22px, 5vw, 34px);
}

.advisory-box h3 {
  color: var(--dark-brown);
  font-size: 2.2rem;
  font-weight: 700;
  margin: 6px 0 10px;
}

.advisory-box p {
  color: var(--muted);
}

.advisory-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.form-error {
  min-height: 22px;
  color: #b42318;
  font-weight: 700;
  margin: 10px 0 0;
  white-space: pre-line;
}

.footer {
  margin-top: 80px;
  background: var(--dark-brown);
  color: var(--cream);
  text-align: center;
  padding: 48px 20px;
}
.footer h3 { font-size: 1.8rem; font-weight: 700; margin: 0 0 16px; }
.footer p { color: #ead4b2; margin: 6px 0; }
.footer .small { font-size: 0.9rem; }
.footer .legal-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.footer .legal-links a {
  color: var(--cream);
  font-weight: 800;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero h1 { font-size: 4.25rem; }
  .hero-logo { margin-inline: auto; }
  .hero .button-row { justify-content: center; }
  .services-layout { grid-template-columns: 1fr; }
  .referral-card { grid-template-columns: 1fr; }
  .referral-actions { justify-content: flex-start; }
  .share-status { text-align: left; }
  .category-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .category-nav button { white-space: nowrap; }
  .split-heading { display: block; }
  .service-guide,
  .versions-layout,
  .product-shelf-intro { grid-template-columns: 1fr; }
  .policy-standard-grid { grid-template-columns: 1fr; }
  .version-intro { position: static; }
  .service-grid, .hours-grid, .products-grid, .recommended-products-grid, .stock-grid, .process-grid, .featured-grid, .portfolio-grid, .testimonial-grid, .payment-options-grid, .prep-grid, .time-slot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .payment-summary-panel { grid-template-columns: 1fr; }
  .client-guide { grid-template-columns: 1fr; }
  .product-consult-strip { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .nav { padding: 0 16px; }
  .brand { font-size: 1.5rem; }
  .nav-link { display: none; }
  .text-button { padding: 8px 12px; }
  .hero { padding-top: 56px; }
  .hero h1 { font-size: 3.15rem; }
  .hero .subtitle { font-size: 1.18rem; }
  .main-proof strong,
  .section-title,
  .referral-card h2,
  .guide-copy h2,
  .version-intro h2,
  .product-shelf-intro h2,
  .contact-card h2,
  .payment-summary-panel h2 {
    font-size: 2.18rem;
  }
  .advisory-box h3 { font-size: 1.8rem; }
  .guide-result p { font-size: 1.25rem; }
  .service-grid, .hours-grid, .products-grid, .recommended-products-grid, .stock-grid, .form-grid, .process-grid, .featured-grid, .portfolio-grid, .testimonial-grid, .payment-options-grid, .prep-grid, .time-slot-grid { grid-template-columns: 1fr; }
  .sms-optin-proof .sms-optin-form { grid-template-columns: 1fr; }
  .version-card { display: block; }
  .version-card button { margin-top: 14px; width: 100%; }
  .primary-btn, .outline-btn { width: 100%; }
  .product-card-head { align-items: flex-start; flex-direction: column; }
  .source-link { white-space: normal; }
}
