:root {
  --ink: #111512;
  --muted: #5e6760;
  --paper: #fbfaf7;
  --mist: #eef5ef;
  --leaf: #315b3c;
  --leaf-dark: #17351f;
  --rose: #b97880;
  --gold: #c4a45b;
  --line: rgba(17, 21, 18, 0.12);
  --shadow: 0 22px 70px rgba(16, 35, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(23, 53, 31, 0.2);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 30px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  color: var(--leaf-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  min-height: 68vh;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(320px, 1.18fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  padding: 98px clamp(20px, 5vw, 76px) 50px;
  background:
    radial-gradient(circle at 87% 18%, rgba(185, 120, 128, 0.12), transparent 28%),
    linear-gradient(140deg, #f9f6ef 0%, #eef5ef 52%, #ffffff 100%);
}

.hero-media {
  position: relative;
  overflow: clip;
  border-radius: 28px;
}

.hero-media img {
  position: relative;
  width: min(310px, 78vw);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-content {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--leaf-dark);
  line-height: 0.95;
}

h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
}

h3 {
  margin: 0;
  color: var(--leaf-dark);
  font-size: 1.05rem;
}

.lead {
  max-width: 540px;
  margin: 18px 0 0;
  color: #354039;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.6;
}

.hero-note {
  max-width: 590px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.hero-tagline {
  margin: 16px 0 0;
  color: var(--leaf-dark);
  font-weight: 800;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--leaf);
  box-shadow: 0 14px 30px rgba(49, 91, 60, 0.24);
}

.button.secondary {
  color: var(--leaf-dark);
  background: #fff;
  border: 1px solid var(--line);
}

.button.paypal {
  color: #17351f;
  background: #ffc439;
  box-shadow: 0 14px 30px rgba(196, 164, 91, 0.26);
}

.button.payflex {
  color: #fff;
  background: #6b4eff;
  box-shadow: 0 14px 30px rgba(107, 78, 255, 0.22);
}

.button.whatsapp {
  color: #fff;
  background: #25d366;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.24);
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.32);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(37, 211, 102, 0.38);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.72;
}

.section {
  padding: clamp(42px, 6vw, 76px) clamp(20px, 5vw, 76px);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.strip-item {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 28px;
  background: #fff;
}

.strip-item strong {
  color: var(--leaf-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.strip-item span {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.section-heading.compact {
  max-width: 440px;
  margin: 0;
}

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

.service-card {
  min-height: 178px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(17, 21, 18, 0.06);
}

.service-card span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 800;
}

.service-card p,
.product-row p,
.experience p,
.client-quote p,
.feature-list p,
.contact-panel p,
.contact-details {
  color: var(--muted);
  line-height: 1.65;
}

.treatment-menu-section {
  background: #fbfaf7;
}

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

.treatment-menu-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(17, 21, 18, 0.05);
}

.treatment-menu-card h3 {
  color: var(--leaf-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.treatment-menu-card h4 {
  margin: 10px 0 0;
  color: var(--leaf);
  font-size: 0.96rem;
  text-transform: uppercase;
}

.menu-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.treatment-list {
  display: grid;
  gap: 14px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.treatment-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(17, 21, 18, 0.1);
}

.treatment-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.treatment-list strong,
.treatment-list > li > span {
  display: block;
  color: var(--ink);
  font-weight: 800;
}

.treatment-list span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.treatment-list b {
  color: var(--leaf-dark);
  font-size: 1rem;
  white-space: nowrap;
}

.treatment-list small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.35;
  white-space: normal;
}

.simple-list span {
  margin-top: 0;
}

.wide-card {
  grid-column: span 2;
}

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

.brands-section {
  background: #fff;
}

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

.brand-tile {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  min-height: 132px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(17, 21, 18, 0.05);
}

.brand-tile img {
  width: auto;
  max-width: min(210px, 88%);
  max-height: 70px;
  object-fit: contain;
}

.brand-tile img[src$=".svg"] {
  max-width: min(235px, 90%);
  max-height: 82px;
}

.brand-tile img[alt="mesoestetic logo"] {
  max-height: 84px;
}

.brand-tile img[alt="Epilfree logo"] {
  max-width: min(240px, 92%);
  max-height: 76px;
}

.brand-tile small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: clamp(28px, 6vw, 80px);
  background: var(--mist);
}

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

.product-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(17, 21, 18, 0.13);
}

.product-row a {
  color: var(--rose);
  font-weight: 800;
  text-decoration: none;
}

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

.home-choice {
  display: grid;
  align-content: space-between;
  gap: 20px;
  min-height: 190px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.home-choice p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.home-choice .button {
  justify-self: start;
}

.about-section {
  background: #fff;
}

.about-section .section-heading {
  max-width: 720px;
  margin-bottom: 0;
}

.shop-hero {
  min-height: 58vh;
  display: grid;
  align-items: end;
  padding: 128px clamp(20px, 5vw, 76px) 64px;
  background:
    linear-gradient(rgba(11, 25, 15, 0.66), rgba(11, 25, 15, 0.66)),
    url("lullubelle-logo.jpg") center/cover;
}

.shop-hero .section-heading {
  max-width: 820px;
  margin-bottom: 0;
}

.shop-hero h1,
.shop-hero .lead,
.shop-hero .section-heading p:not(.eyebrow) {
  color: #fff;
}

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

.shop-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(17, 21, 18, 0.06);
}

.product-visual {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 26px;
  background:
    radial-gradient(circle at 25% 18%, rgba(196, 164, 91, 0.28), transparent 24%),
    linear-gradient(145deg, #f5faf5, #fbfaf7);
}

.product-visual img {
  width: min(210px, 78%);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(23, 53, 31, 0.14);
}

.shop-card-content {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
}

.shop-card-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-price {
  color: var(--leaf-dark);
  font-size: 1.08rem;
  font-weight: 900;
}

.shop-card-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.product-price-section {
  background: #fff;
}

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

.kalahari-item {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.kalahari-item img {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1;
  object-fit: contain;
  justify-self: center;
  margin-bottom: 6px;
}

.kalahari-item strong {
  color: var(--leaf);
  font-size: 1.25rem;
}

.kalahari-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.stock-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 22px;
  background: var(--mist);
  border-radius: 8px;
}

.stock-note p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  padding-top: 128px;
}

.product-detail-media {
  position: sticky;
  top: 110px;
}

.product-detail-media .product-visual {
  min-height: clamp(340px, 42vw, 560px);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-detail-media .product-visual img {
  width: min(310px, 72%);
}

.product-detail-copy h1 {
  color: var(--leaf-dark);
  font-size: clamp(3.1rem, 8vw, 7.2rem);
}

.product-detail-copy .lead {
  max-width: 680px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.product-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--leaf-dark);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 800;
}

.product-buy-panel {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-buy-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.kalahari-table-wrap {
  overflow-x: auto;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.kalahari-table {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
}

.kalahari-table th,
.kalahari-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.kalahari-table th {
  color: var(--leaf-dark);
  background: var(--mist);
}

.kalahari-table td:last-child {
  color: var(--leaf);
  font-weight: 800;
  white-space: nowrap;
}

.product-info-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.product-info-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.65;
}

.voucher-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.voucher-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(196, 164, 91, 0.22), transparent 24%),
    #fff;
}

.voucher-card span {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.voucher-card h2 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.voucher-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.voucher-visual {
  background:
    radial-gradient(circle at 28% 20%, rgba(185, 120, 128, 0.26), transparent 26%),
    linear-gradient(145deg, #fff, #eef5ef);
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--leaf-dark);
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-underline-offset: 6px;
}

.price-section {
  background: #fff;
}

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

.price-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.price-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.price-card ul {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(17, 21, 18, 0.1);
}

.price-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.price-card span {
  color: var(--muted);
}

.price-card strong {
  flex: 0 0 auto;
  color: var(--leaf-dark);
}

.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  padding: clamp(62px, 10vw, 128px) clamp(20px, 5vw, 76px);
  color: #fff;
  background:
    linear-gradient(rgba(11, 25, 15, 0.74), rgba(11, 25, 15, 0.74)),
    url("lullubelle-logo.jpg") center/cover;
}

.experience h2 {
  color: #fff;
}

.experience p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.client-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--paper);
}

.client-quote {
  position: sticky;
  top: 96px;
  padding-left: 24px;
  border-left: 4px solid var(--gold);
}

.client-quote p {
  margin: 0;
  color: var(--leaf-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.1;
}

.client-quote span {
  display: block;
  margin-top: 18px;
  color: var(--rose);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

.feature-list article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list article:first-child {
  padding-top: 0;
}

.feature-list p {
  margin-bottom: 0;
}

.visit-section {
  background: #fff;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.925fr 0.925fr;
  gap: 16px;
}

.visit-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(150deg, #ffffff, #f5faf5);
}

.visit-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}

.visit-card p {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.hours-card dl {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(17, 21, 18, 0.1);
}

.hours-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hours-card dt {
  color: var(--leaf-dark);
  font-weight: 800;
}

.hours-card dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin-top: 28px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--leaf-dark);
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.65;
}

.payments-section {
  background: var(--mist);
}

.payments-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(17, 21, 18, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 247, 0.94)),
    url("lullubelle-logo.jpg") right center/auto 145% no-repeat;
}

.payments-panel h2 {
  font-size: clamp(2.25rem, 5vw, 4.2rem);
}

.payments-panel p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.payment-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.reviews-section {
  background: #fff;
}

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

.review-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.review-card strong {
  color: var(--leaf-dark);
}

.featured-review {
  background: linear-gradient(145deg, #17351f, #315b3c);
}

.featured-review p,
.featured-review strong {
  color: #fff;
}

.stars {
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.review-cta {
  background: #f5faf5;
}

.review-cta h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.contact-section {
  background: #fff;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f4f8f4);
}

.contact-panel h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.booking-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 8px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--leaf-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.booking-form label:last-of-type {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 21, 18, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--rose);
  font-weight: 800;
}

.form-status:empty {
  display: none;
}

.contact-details {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 12px 0 0;
}

.contact-details div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-details dt {
  color: var(--leaf-dark);
  font-weight: 800;
}

.contact-details dd {
  margin: 6px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 76px);
  color: #fff;
  background: var(--leaf-dark);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero,
  .split-section,
  .experience,
  .payments-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 98px;
  }

  .hero-media {
    order: -1;
  }

  .service-grid,
  .brand-grid,
  .treatment-menu-grid,
  .peel-grid,
  .price-grid,
  .client-section,
  .visit-grid,
  .shop-grid,
  .home-choice-grid,
  .kalahari-grid,
  .reviews-grid,
  .intro-strip,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-column: auto;
  }

  .client-quote {
    position: static;
  }

  .product-detail {
    grid-template-columns: 1fr;
    padding-top: 104px;
  }

  .product-detail-media {
    position: static;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .payment-actions {
    justify-items: start;
  }
}

@media (max-width: 520px) {
  .brand span {
    font-size: 1.28rem;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 88px;
    padding-bottom: 36px;
    gap: 20px;
  }

  .hero-media img {
    width: min(165px, 58vw);
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 2.8rem);
  }

  h2 {
    font-size: 2rem;
  }

  .lead {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-actions,
  .contact-actions,
  .product-buy-actions,
  .payment-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .product-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .price-card li,
  .hours-card div,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .hours-card div {
    display: grid;
    gap: 4px;
  }

  .hours-card dd {
    text-align: left;
  }

  .site-footer {
    display: grid;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }

  .floating-whatsapp svg {
    width: 29px;
    height: 29px;
  }

  .kalahari-table {
    min-width: 0;
    font-size: 0.92rem;
  }

  .kalahari-table th,
  .kalahari-table td {
    padding: 12px 10px;
  }
}
