:root {
  --ink: #2d251f;
  --muted: #77675c;
  --soft: #f8f0e6;
  --warm: #fffaf2;
  --sand: #d8b99c;
  --sand-deep: #b99475;
  --rose: #a86f5e;
  --gold: #c8a45d;
  --cream: #fff4df;
  --line: rgba(80, 62, 48, .16);
  --shadow: 0 26px 70px rgba(91, 67, 49, .14);
  --display: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --body: "Helvetica Neue", Arial, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(200, 164, 93, .16), transparent 28rem),
    linear-gradient(135deg, var(--warm), var(--soft) 48%, #f4e4d4);
  color: var(--ink);
  font-family: var(--body);
  min-height: 100dvh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(45, 37, 31, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(45, 37, 31, .025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 72%);
}

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

p {
  color: var(--muted);
  line-height: 1.75;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--warm);
  padding: .8rem 1rem;
  z-index: 20;
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 999px;
  background: rgba(255, 250, 242, .76);
  box-shadow: 0 18px 50px rgba(75, 55, 39, .1), inset 0 1px 0 rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(255, 250, 242, .92);
}

.brand,
.site-nav,
.site-footer nav,
.hero-actions,
.quality-strip,
.contact-lines {
  display: flex;
  align-items: center;
}

.brand {
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--rose), #cda084);
  color: var(--warm);
  font-size: .78rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
}

.brand-wordmark {
  display: block;
  width: clamp(118px, 11vw, 158px);
  height: 34px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  justify-content: center;
  gap: 8px;
  font-size: .92rem;
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(216, 185, 156, .28);
  color: var(--ink);
}

.header-cta {
  justify-self: end;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--warm);
  font-size: .92rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(45, 37, 31, .18);
}

.nav-toggle { display: none; }

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100dvh - 96px);
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(320px, .82fr);
  gap: 56px;
  align-items: center;
  padding: 72px 0 80px;
}

.eyebrow,
.tiny-label,
.section-kicker {
  color: var(--rose);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: 0;
  line-height: .98;
  margin: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.7rem, 8.2vw, 7.9rem);
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 4.8rem);
}

.hero-intro,
.page-hero p {
  max-width: 620px;
  font-size: 1.15rem;
}

.hero-actions {
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  overflow: hidden;
}

.button:active { transform: scale(.98); }

.button.primary {
  background: var(--rose);
  color: var(--warm);
  box-shadow: 0 16px 32px rgba(168, 111, 94, .24);
}

.button.primary.light {
  background: var(--cream);
  color: var(--ink);
}

.button.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, .34);
}

.hero-visual {
  position: relative;
  min-height: 570px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 54% 38%, rgba(255, 244, 223, .96), transparent 11rem),
    linear-gradient(155deg, rgba(216,185,156,.72), rgba(168,111,94,.22)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='720' height='900' viewBox='0 0 720 900'%3E%3Cpath d='M350 80c88 85 78 212-12 284-77 61-56 198 56 252 65 31 113 74 99 132-18 72-128 101-248 63C103 766 27 657 67 538c31-91 134-99 156-185 19-73-58-137-15-214 29-52 95-86 142-59Z' fill='%23fff6ea'/%3E%3Cpath d='M448 162c81 42 123 136 96 224-37 119-159 102-201 203-29 68 15 125 81 155' fill='none' stroke='%23a86f5e' stroke-opacity='.28' stroke-width='28' stroke-linecap='round'/%3E%3Cpath d='M250 230c43-43 105-54 160-27M192 470c44 35 99 48 165 39M256 690c65 17 128 7 188-31' stroke='%23c8a45d' stroke-opacity='.35' stroke-width='7' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: cover;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.62);
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 250, 242, .62);
  border-radius: 32px;
}

.visual-card {
  position: absolute;
  background: rgba(255, 250, 242, .74);
  border: 1px solid rgba(255,255,255,.58);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(72, 50, 34, .12);
}

.visual-main {
  left: 34px;
  bottom: 36px;
  width: min(390px, calc(100% - 68px));
  padding: 26px;
  border-radius: 28px;
}

.visual-main strong {
  display: block;
  margin-top: 14px;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.08;
}

.visual-note {
  right: 28px;
  top: 56px;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 999px;
}

.visual-note span {
  color: var(--muted);
  font-size: .78rem;
}

.treatment-orbit {
  position: absolute;
  top: 45%;
  right: 24px;
  display: grid;
  gap: 12px;
}

.treatment-orbit span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(45, 37, 31, .82);
  color: var(--warm);
  font-size: .82rem;
  animation: float 5s ease-in-out infinite;
}

.treatment-orbit span:nth-child(2) { animation-delay: .8s; }
.treatment-orbit span:nth-child(3) { animation-delay: 1.6s; }

.intro-grid {
  display: grid;
  grid-template-columns: .5fr 1fr;
  gap: 36px;
  padding: 96px 0;
}

.intro-text p {
  max-width: 690px;
  font-size: 1.08rem;
}

.quality-strip {
  grid-column: 2;
  gap: 10px;
  flex-wrap: wrap;
}

.quality-strip span,
.contact-lines span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--muted);
  background: rgba(255,255,255,.34);
}

.care-intro {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(0, 1.14fr);
  gap: clamp(36px, 7vw, 108px);
  align-items: center;
  padding: 76px 0 122px;
}

.care-intro-image {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border-radius: 170px 170px 24px 24px;
  background: var(--sand);
}

.care-intro-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(45,37,31,.22));
  pointer-events: none;
}

.care-intro-image img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}

.care-intro-image:hover img { transform: scale(1.035); }

.care-intro-badge {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 24px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,250,242,.9);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.care-intro-content { padding: 18px 0; }
.care-intro-content h2 { max-width: 610px; margin-top: 18px; }
.care-intro-lead { max-width: 570px; margin-top: 26px; font-size: 1.08rem; }
.care-points { margin-top: 34px; border-top: 1px solid rgba(80,62,48,.18); }
.care-point { display: grid; grid-template-columns: 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(80,62,48,.18); }
.care-point strong, .care-point small { display: block; }
.care-point strong { font-family: var(--display); font-size: 1.35rem; font-weight: 500; }
.care-point small { color: var(--muted); margin-top: 4px; }
.care-intro-content .text-link { gap: 10px; align-items: center; margin-top: 26px; }
.care-intro-content .text-link span { transition: transform .25s ease; }
.care-intro-content .text-link:hover span { transform: translateX(5px); }

.service-preview {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 34px;
  padding: 30px 0 110px;
}

.service-panel,
.rules-note,
.contact-card {
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 34px;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255,250,242,.58);
  box-shadow: var(--shadow);
}

.rules-note > p {
  max-width: 100%;
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.1vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: -.03em;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--rose);
  font-weight: 800;
}

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

.service-item {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  background: rgba(255,255,255,.36);
  color: var(--ink);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.service-item:hover,
.service-item.is-active {
  transform: translateY(-3px);
  background: rgba(255, 244, 223, .82);
  border-color: rgba(168,111,94,.32);
}

.service-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
}

.service-item small {
  color: var(--muted);
  font-size: .95rem;
}

.appointment-band {
  background: var(--ink);
  color: var(--warm);
}

.appointment-inner {
  min-height: 390px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 72px 0;
}

.appointment-inner h2 {
  max-width: 820px;
}

.appointment-inner .eyebrow { color: var(--sand); }

.page-hero {
  position: relative;
  padding: 104px 0 48px;
}

.page-hero::after {
  display: none;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.75rem, 5.2vw, 5rem);
}

.care-studio {
  display: grid;
  grid-template-columns: minmax(250px, .46fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: 34px 0 92px;
}

.care-menu {
  display: grid;
  align-content: start;
  border-top: 1px solid rgba(80, 62, 48, .18);
}

.care-tab {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  align-items: start;
  border: 0;
  border-bottom: 1px solid rgba(80, 62, 48, .18);
  padding: 24px 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.care-tab strong {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 500;
}

.care-tab small {
  color: var(--muted);
  font: 600 .86rem/1.45 var(--body);
}

.care-tab,
.care-tab small,
.care-tab strong {
  transition: color .3s ease, opacity .3s ease;
}

.care-tab:hover strong,
.care-tab:focus-visible strong,
.care-tab.is-active strong {
  color: var(--rose);
}

.care-tab.is-active small {
  color: var(--ink);
}

.care-panel {
  position: relative;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(80, 62, 48, .16);
  padding: clamp(28px, 5vw, 64px);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, .3), rgba(255, 250, 242, .86)),
    url("pedicure036-hero.jpg") center / cover;
  box-shadow: 0 24px 70px rgba(91, 67, 49, .13);
  isolation: isolate;
  overflow: hidden;
}

.care-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 250, 242, .94) 0%, rgba(255, 250, 242, .82) 48%, rgba(255, 250, 242, .28) 100%);
}

.care-panel::after {
  content: "";
  position: absolute;
  left: clamp(28px, 5vw, 64px);
  right: clamp(28px, 5vw, 64px);
  top: clamp(28px, 5vw, 64px);
  height: 1px;
  background: rgba(80, 62, 48, .2);
}

.care-panel-header span {
  display: block;
  margin-bottom: 14px;
  color: var(--rose);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.care-panel h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: .98;
  text-wrap: balance;
}

.care-panel p {
  max-width: 620px;
  margin: 28px 0 0;
  color: #4f4036;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.care-lines {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 420px;
  margin-top: 34px;
  border-top: 1px solid rgba(80, 62, 48, .18);
}

.care-lines span {
  display: block;
  border-bottom: 1px solid rgba(80, 62, 48, .18);
  padding: 13px 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}

.care-cta {
  width: fit-content;
  margin-top: 34px;
  border-bottom: 1px solid currentColor;
  color: var(--rose);
  font-weight: 900;
}

.split-intro {
  max-width: 620px;
  margin-top: 24px;
}

.process-section {
  align-items: start;
}

.process-section.split-detail {
  grid-template-columns: 1fr;
  gap: 42px;
  padding-top: 54px;
}

.process-section > .reveal:first-child {
  max-width: 760px;
}

.split-detail,
.rules-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 36px;
  padding: 20px 0 110px;
}

body[data-page="regels"] .rules-layout {
  padding-top: 186px;
}

.rules-list {
  display: grid;
  gap: 16px;
}

.rule-item {
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.48);
}

.rule-item h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.rule-item p { max-width: 62ch; margin: 0; line-height: 1.7; }

body[data-page="regels"] .rules-layout { grid-template-columns: 1fr; gap: 54px; }
body[data-page="regels"] .rules-intro { max-width: 680px; }
body[data-page="regels"] .rules-intro h1 { margin: 12px 0 10px; font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: .98; }
body[data-page="regels"] .rule-item { padding: 0 0 26px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
body[data-page="regels"] .rule-item + .rule-item { padding-top: 26px; }

.faq-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
  padding: 0 0 116px;
}

body[data-page="vragen"] .faq-section {
  padding-top: 150px;
}

body[data-page="vragen"] .faq-section::after {
  display: none;
}

.page-hero-head,
.faq-hero-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(150px, 18vw, 230px);
  gap: clamp(24px, 6vw, 74px);
  align-items: center;
}

.page-title-mark,
.faq-title-mark {
  width: 100%;
  justify-self: end;
  opacity: .92;
  filter: drop-shadow(0 18px 34px rgba(185, 145, 79, .18));
}

.faq-intro {
  max-width: 760px;
}

.faq-intro h2 {
  margin: 12px 0 12px;
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
  line-height: 1;
}

.faq-intro p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-accordion {
  background: #fff;
  border-color: rgba(185, 145, 79, .22);
  border-radius: 0;
}

.faq-accordion button {
  min-height: 82px;
  padding-block: 18px;
  text-align: left;
  line-height: 1.25;
}

.faq-accordion .accordion-panel {
  color: var(--muted);
  line-height: 1.72;
}

.faq-accordion .accordion-panel p {
  max-width: 76ch;
  margin: 0;
}

.faq-accordion .accordion-panel p + p {
  margin-top: 12px;
}

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

.price-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(26px, 3vw, 36px);
  background: rgba(255,255,255,.42);
  box-shadow: var(--shadow);
}

.price-card h2 {
  min-height: 2.25em;
  margin-top: 8px;
  max-width: 100%;
  display: flex;
  align-items: flex-start;
  font-size: clamp(1.55rem, 2.15vw, 2.25rem);
  line-height: 1.05;
  text-wrap: balance;
  white-space: nowrap;
}

.price {
  margin: 24px 0 8px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.7rem, 4vw, 4.4rem);
  line-height: .95;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.price-card > p:not(.price) {
  min-height: 5.25em;
  margin-bottom: 0;
}

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

.price-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.price-card .button,
.price-card .text-link {
  margin-top: auto;
}

.featured-price {
  background: linear-gradient(145deg, rgba(255,244,223,.88), rgba(251,240,236,.92));
  border-color: rgba(185, 145, 79, .36);
}

.pricing-notes {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 36px;
  padding: 0 0 110px;
}

.pricing-notes:has(> :only-child) {
  grid-template-columns: 1fr;
}

.price-list {
  display: grid;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
}

.price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.42);
}

.price-list div:last-child {
  border-bottom: 0;
}

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

.price-list strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  white-space: nowrap;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(80, 62, 48, .18);
  border-bottom: 1px solid rgba(80, 62, 48, .18);
}

.timeline div {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid rgba(80, 62, 48, .14);
  padding: 32px 30px;
  background: transparent;
  transition: background .25s ease;
}

.timeline div > p {
  margin-top: 0;
}

.timeline div:last-child {
  border-right: 0;
}

.timeline div:hover {
  background: rgba(255, 250, 242, .42);
}

.timeline p {
  max-width: 24ch;
  margin: 0;
  line-height: 1.7;
  text-wrap: pretty;
}

.timeline strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.24rem;
  line-height: 1.35;
  font-weight: 600;
}

.accordion {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.38);
  overflow: hidden;
}

.accordion button {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 26px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
}

.accordion button:first-child { border-top: 0; }

.accordion button span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--rose);
}

.accordion button[aria-expanded="true"] span {
  background: var(--rose);
}

.accordion-panel {
  padding: 0 26px 24px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255,255,255,.42);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(80, 62, 48, .22);
  border-radius: 16px;
  padding: 15px 16px;
  background: rgba(255,250,242,.82);
  color: var(--ink);
  font: inherit;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(168,111,94,.12);
}

form small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}

.form-privacy {
  margin: 0;
  font-size: .88rem;
  line-height: 1.6;
}

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

.booking-button {
  border-color: #8f0099;
  background: #ab00b6;
  color: #fff;
  box-shadow: 0 16px 34px rgba(171, 0, 182, .18);
}

.booking-button:hover,
.booking-button:focus-visible {
  background: #8f0099;
}

.contact-card {
  align-self: start;
  position: sticky;
  top: 120px;
}

.contact-details {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.contact-detail {
  display: grid;
  gap: 7px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.65;
}

.contact-detail a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--rose);
  text-underline-offset: 4px;
}

.booking-qr-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  gap: 18px;
  align-items: center;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(185, 145, 79, .24);
  background: #fff;
  color: var(--ink);
  transition: border-color .25s ease, transform .25s ease;
}

.booking-qr-card:hover,
.booking-qr-card:focus-visible {
  border-color: rgba(171, 0, 182, .38);
  transform: translateY(-2px);
}

.booking-qr-copy {
  display: grid;
  gap: 6px;
}

.booking-qr-copy strong {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.1;
}

.booking-qr-copy small {
  color: var(--muted);
  line-height: 1.5;
}

.booking-qr-card img {
  width: 128px;
  height: auto;
  display: block;
  background: #fff;
}

.document-download {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .52fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: 0 0 128px;
  scroll-margin-top: 150px;
}

.download-copy {
  max-width: 720px;
}

.download-copy h2 {
  margin: 12px 0 14px;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.6vw, 4.4rem);
  line-height: 1;
}

.download-copy p {
  max-width: 62ch;
  margin: 0;
}

.download-action {
  min-height: 196px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(168, 111, 94, .26);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(168, 111, 94, .96), rgba(200, 164, 93, .92)),
    var(--rose);
  color: var(--warm);
  box-shadow: 0 24px 64px rgba(91, 67, 49, .18);
  transition: transform .25s ease, box-shadow .25s ease;
}

.download-action:hover,
.download-action:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 30px 78px rgba(91, 67, 49, .24);
}

.download-action-label {
  color: inherit;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1;
}

.download-action-meta {
  max-width: 24ch;
  color: rgba(255, 250, 242, .82);
  font-size: .9rem;
  line-height: 1.5;
}

.inline-download-link {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--rose);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.detail-label {
  color: var(--ink);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer {
  margin: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 253, 249, .98) 0%,
      rgba(255, 250, 242, .9) 34%,
      rgba(252, 238, 239, .82) 70%,
      rgba(239, 210, 214, .92) 100%
    ),
    #efd2d6;
  color: var(--ink);
}

.footer-main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 30px;
  display: grid;
  grid-template-columns: 1.1fr .95fr .86fr 1.25fr;
  gap: 24px;
  align-items: start;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  text-decoration: none;
}

.footer-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(185, 145, 79, .16));
}

.footer-wordmark {
  width: 136px;
  max-width: 42vw;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(185, 145, 79, .1));
}

.footer-column p {
  margin: 0;
  color: rgba(70, 52, 45, .7);
  font-size: .88rem;
  line-height: 1.65;
}

.footer-title {
  color: rgba(168, 111, 94, .92);
  font-family: var(--body);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-footer a {
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.footer-nav {
  display: grid;
  gap: 8px;
}

.footer-nav a,
.footer-contact a,
.footer-bottom a {
  color: rgba(70, 52, 45, .74);
  font-size: .88rem;
}

.footer-contact {
  align-content: start;
}

.site-footer a:hover {
  color: var(--rose);
  transform: translateX(3px);
}

.whatsapp-widget {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 30;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.whatsapp-fab {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  border: 1px solid rgba(37, 211, 102, .58);
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 42px rgba(18, 140, 74, .28), 0 8px 18px rgba(36, 28, 24, .12), inset 0 1px 0 rgba(255,255,255,.24);
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
}

.whatsapp-fab-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(18, 140, 74, .12);
}

.whatsapp-fab-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: #128c4a;
}

.whatsapp-panel {
  width: min(330px, calc(100vw - 32px));
  max-height: calc(100dvh - 118px);
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(185, 120, 121, .28);
  background: rgba(255,255,255,.96);
  box-shadow: 0 22px 54px rgba(36, 28, 24, .16);
  backdrop-filter: blur(18px);
  overflow: auto;
}

.whatsapp-panel[hidden] {
  display: none;
}

.whatsapp-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 2px;
}

.whatsapp-panel-head button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(36, 28, 24, .12);
  background: #fff;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-panel label {
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
}

.whatsapp-panel input,
.whatsapp-panel textarea {
  width: 100%;
  border: 1px solid rgba(36, 28, 24, .14);
  background: #fffdf9;
  color: var(--ink);
  font: inherit;
  font-size: .9rem;
  padding: 11px 12px;
  resize: vertical;
}

.whatsapp-panel input:focus,
.whatsapp-panel textarea:focus {
  outline: 2px solid rgba(37, 211, 102, .28);
  outline-offset: 2px;
}

.whatsapp-submit {
  min-height: 44px;
  border: 0;
  background: var(--rose);
  color: #fff;
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
}

.whatsapp-panel p {
  min-height: 1.2em;
  margin: 0;
  color: var(--rose-deep);
  font-size: .78rem;
  line-height: 1.45;
}

.footer-map iframe {
  width: 100%;
  height: 164px;
  border: 1px solid rgba(168, 111, 94, .18);
  filter: saturate(.82) contrast(.96);
}

.footer-partners {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid rgba(168, 111, 94, .16);
  border-bottom: 1px solid rgba(168, 111, 94, .16);
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.partner-logos a {
  height: 54px;
  min-width: 150px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168, 111, 94, .14);
  background: rgba(255, 250, 242, .64);
}

.partner-logos img {
  max-width: 150px;
  max-height: 34px;
  object-fit: contain;
}

.partner-logos a:first-child img {
  max-width: 170px;
  max-height: 68px;
}

.partner-logos a:first-child {
  height: 78px;
  min-width: 180px;
  padding: 0;
  border-color: transparent;
  background: transparent;
}

.partner-logos a:last-child {
  height: 78px;
  min-width: 108px;
  padding: 0;
  border-color: transparent;
  background: transparent;
}

.partner-logos a:last-child img {
  max-width: 92px;
  max-height: 68px;
  filter: brightness(0) saturate(100%);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 24px 0 30px;
  color: rgba(70, 52, 45, .62);
  font-size: .82rem;
  letter-spacing: .04em;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 860px) {
  .whatsapp-widget {
    right: 12px;
    bottom: 12px;
  }

  .whatsapp-fab {
    min-height: 50px;
    padding: 8px 13px 8px 10px;
    font-size: .84rem;
  }

  .whatsapp-fab-icon {
    width: 32px;
    height: 32px;
  }

  .whatsapp-panel {
    max-height: calc(100dvh - 92px);
    padding: 16px;
  }
}

@media (max-width: 380px) {
  .whatsapp-fab > span:last-child {
    display: none;
  }

  .whatsapp-fab {
    min-width: 52px;
    justify-content: center;
    padding: 9px;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 28px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255,255,255,.48);
  }

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

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    padding-top: 8px;
  }

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

  .header-cta { display: none; }

  .hero,
  .intro-grid,
  .service-preview,
  .appointment-inner,
  .treatment-grid,
  .care-studio,
  .split-detail,
  .rules-layout,
  .faq-section,
  .contact-layout,
  .pricing-grid,
  .pricing-notes {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding-bottom: 82px;
  }

  .document-download {
    grid-template-columns: 1fr;
    padding-bottom: 92px;
    scroll-margin-top: 118px;
  }

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

  h1,
  .page-hero h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .hero-visual {
    min-height: 470px;
  }

  .quality-strip {
    grid-column: auto;
  }

  .care-panel {
    min-height: 560px;
  }

  .care-lines {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline div {
    min-height: 160px;
    border-right: 0;
    border-bottom: 1px solid rgba(80, 62, 48, .16);
  }

  .timeline div > p {
    margin-top: 0;
  }

  .timeline div:last-child {
    border-bottom: 0;
  }

  .appointment-inner {
    align-items: start;
  }

  .contact-card {
    position: static;
  }

  .footer-main,
  .footer-partners,
  .footer-bottom {
    width: min(100% - 28px, 560px);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-map iframe {
    height: 220px;
  }

  .footer-partners {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-logos {
    width: 100%;
  }

  .partner-logos a {
    flex: 1 1 180px;
  }

  .footer-bottom {
    justify-content: flex-start;
  }
}

/* Partnerships: keep the mobile footer compact and balanced. */
@media (max-width: 860px) {
  .footer-partners {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    padding: 20px 0 18px;
  }

  .footer-partners > .footer-title {
    margin: 0;
  }

  .partner-logos {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 12px;
  }

  .partner-logos a,
  .partner-logos a:first-child,
  .partner-logos a:last-child {
    width: 100%;
    min-width: 0;
    height: 72px;
    padding: 8px 12px;
    border: 1px solid rgba(31, 26, 23, .1);
    background: rgba(255, 255, 255, .48);
  }

  .partner-logos img,
  .partner-logos a:first-child img,
  .partner-logos a:last-child img {
    max-width: 100%;
    max-height: 50px;
  }
}

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

/* Salon redesign override: softer, photo-led, non-tech visual language. */
:root {
  --ink: #241c18;
  --muted: #6f615c;
  --soft: #fff8f4;
  --warm: #fffdf9;
  --sand: #f3e7de;
  --rose: #b97879;
  --rose-deep: #8f5556;
  --gold: #b9914f;
  --cream: #fff7ec;
  --line: rgba(36, 28, 24, .12);
  --shadow: 0 22px 54px rgba(67, 45, 34, .08);
  --display: "Marcellus", Georgia, serif;
  --body: "Manrope", Arial, system-ui, sans-serif;
}

body {
  background: var(--warm);
  font-family: var(--body);
}

body::before {
  display: none;
}

.site-header {
  position: fixed;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 36px));
  min-height: 66px;
  margin: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 48px rgba(36, 28, 24, .08);
  backdrop-filter: blur(20px);
}

.site-header.is-scrolled {
  background: rgba(255,255,255,.94);
}

.header-promo {
  position: fixed;
  left: 50%;
  top: 83px;
  z-index: 9;
  width: min(1120px, calc(100% - 36px));
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 20px 5px;
  border: 1px solid rgba(185, 120, 121, .34);
  border-top: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255, 244, 244, .88));
  color: var(--rose-deep);
  box-shadow: 0 16px 34px rgba(36, 28, 24, .07), inset 0 1px 0 rgba(255,255,255,.82), inset 0 -1px 0 rgba(185, 120, 121, .12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
}

.brand {
  font-family: var(--body);
  min-width: 0;
  gap: 9px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 0;
  background: transparent;
  font-family: var(--body);
  letter-spacing: .08em;
}

.brand img.brand-mark {
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 7px 14px rgba(185, 145, 79, .14));
}

.brand img.brand-wordmark {
  filter: drop-shadow(0 7px 14px rgba(185, 145, 79, .12));
}

.site-nav {
  gap: 16px;
  font-size: .9rem;
}

.site-nav a {
  padding: 0;
  border-radius: 0;
  color: rgba(36, 28, 24, .72);
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold);
}

.header-cta {
  border-radius: 0;
  background: var(--rose);
  color: #fff;
  box-shadow: none;
  letter-spacing: .02em;
}

.salon-hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: 0;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("pedicure036-hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,253,249,.93) 0%, rgba(255,253,249,.78) 34%, rgba(255,253,249,.16) 72%),
    linear-gradient(0deg, rgba(36,28,24,.16), rgba(36,28,24,0) 44%);
}

.hero-copy {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 150px 0 54px;
}

.eyebrow,
.tiny-label,
.section-kicker {
  color: var(--gold);
  font-family: var(--body);
  font-size: .76rem;
  letter-spacing: .18em;
  font-weight: 700;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--gold);
}

.hero-location svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 6px 12px rgba(160, 107, 54, .18));
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(3.4rem, 7.8vw, 7rem);
  line-height: .98;
}

@media (min-width: 861px) {
  .salon-hero h1 {
    max-width: 640px;
    font-size: clamp(3.4rem, 6vw, 5.8rem);
  }
}

h2 {
  font-size: clamp(2.35rem, 4.8vw, 5.4rem);
  line-height: 1.02;
}

.hero-intro,
.page-hero p {
  max-width: 520px;
  color: rgba(36, 28, 24, .74);
  font-size: 1.05rem;
}

.button {
  min-height: 54px;
  border-radius: 0;
  padding: 0 24px;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.button.primary {
  background: var(--rose);
  color: white;
  box-shadow: 0 16px 34px rgba(143, 85, 86, .18);
}

.button.primary:hover {
  background: var(--rose-deep);
}

.button.secondary {
  border-color: rgba(185, 145, 79, .5);
  background: rgba(255,255,255,.54);
  color: var(--ink);
}

.hero-visual,
.visual-card,
.visual-main,
.visual-note,
.treatment-orbit {
  display: none;
}

.intro-grid {
  grid-template-columns: .42fr 1fr;
  padding: 128px 0 98px;
}

.intro-text h2 {
  max-width: 920px;
}

.intro-text p {
  max-width: 620px;
  margin-top: 24px;
}

.quality-strip {
  grid-column: 2;
  gap: 12px;
}

.quality-strip span,
.contact-lines span {
  border-radius: 0;
  border-color: rgba(185, 145, 79, .25);
  background: #fff;
  color: var(--muted);
}

.service-preview {
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  padding: 0 0 128px;
  align-items: start;
}

.editorial-block::before {
  content: "";
  display: block;
  min-height: 560px;
  background:
    linear-gradient(rgba(255,255,255,.12), rgba(255,255,255,.18)),
    url("pedicure036-hero.jpg");
  background-size: cover;
  background-position: 62% center;
  box-shadow: var(--shadow);
}

.service-panel,
.rules-note,
.contact-card {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.service-panel {
  grid-column: 2;
  grid-row: 1;
  padding-top: 24px;
}

.service-list {
  grid-column: 2;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 22px 0;
  background: transparent;
  cursor: default;
}

.service-item:hover,
.service-item.is-active {
  transform: none;
  background: transparent;
  border-color: var(--line);
}

.service-item span {
  color: var(--gold);
}

.service-item strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.45rem;
}

.service-item small {
  color: var(--muted);
}

.text-link {
  color: var(--rose-deep);
}

.appointment-band {
  background: #fbf0ec;
  color: var(--ink);
}

/* Behandelingen: editorial menu zonder beeld */
.service-preview.editorial-block {
  position: relative;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(42px, 8vw, 112px);
  padding: clamp(74px, 10vw, 132px) 0;
  border-top: 1px solid var(--line);
}

.service-preview.editorial-block::before { display: none; }
.service-preview.editorial-block .service-panel,
.service-preview.editorial-block .service-list { grid-column: auto; grid-row: auto; }
.service-preview.editorial-block .service-panel { padding-top: 0; }
.service-preview.editorial-block .service-panel h2 { max-width: 420px; margin-top: 16px; }
.service-preview.editorial-block .service-panel > p:not(.eyebrow) { max-width: 390px; margin-top: 24px; }
.service-preview.editorial-block .service-list { align-self: center; border-top: 1px solid var(--line); }
.service-preview.editorial-block .service-item {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 22px 8px;
  transition: padding .25s ease, background .25s ease, color .25s ease;
}
.service-preview.editorial-block .service-item:hover { padding-left: 18px; padding-right: 18px; background: rgba(255,244,223,.55); }
.service-preview.editorial-block .service-item::after { content: '↗'; color: var(--rose); font-size: 1.25rem; }
.service-preview.editorial-block .service-item strong { font-size: clamp(1.25rem, 2vw, 1.65rem); }
.service-preview.editorial-block .service-item small { grid-column: 1; margin-top: -10px; }

/* Compacte overgang tussen Waarom en Behandelingen */
.intro-grid {
  padding-bottom: 42px;
}

.service-preview.editorial-block {
  padding-top: 48px;
}

@media (max-width: 760px) {
  .intro-grid { padding-bottom: 34px; }
  .service-preview.editorial-block { grid-template-columns: 1fr; gap: 44px; padding: 46px 0 64px; }
  .service-preview.editorial-block .service-item { grid-template-columns: 1fr auto; gap: 10px; }
  .service-preview.editorial-block .service-item small { grid-column: 1 / 3; }
}

.appointment-inner .eyebrow {
  color: var(--gold);
}

.appointment-inner .button.primary.light {
  background: var(--rose);
  color: white;
}

.review-section {
  padding: 54px 0 70px;
  background: transparent;
  overflow: hidden;
}

.review-proof {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(210px, .72fr) 1.8fr;
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
}

.review-score {
  border-right: 1px solid rgba(185, 145, 79, .32);
  padding: 14px clamp(24px, 4vw, 54px) 14px 0;
}

.review-score strong {
  display: block;
  margin: 12px 0 2px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(4.2rem, 8vw, 6.6rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.06em;
}

.review-score > span {
  display: block;
  max-width: 150px;
  margin-top: 12px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.review-list .review-card {
  min-height: 232px;
  align-items: flex-start;
  text-align: left;
  justify-content: flex-start;
  gap: 18px;
  border: 1px solid rgba(185, 145, 79, .28);
  background: rgba(255,255,255,.48);
  padding: 24px 22px 26px;
  scroll-snap-align: none;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.review-list .review-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.82); border-color: rgba(185, 145, 79, .55); }

.review-list .review-card p {
  margin: 0;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
}

.review-list .review-card span { margin-top: auto; font-size: .8rem; }

.review-list .review-card:nth-child(4) { display: none; }

.review-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.review-header h2 {
  max-width: 560px;
}

.review-lead {
  max-width: 420px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.review-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.review-controls button {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 145, 79, .34);
  background: rgba(255,255,255,.72);
  color: var(--ink);
  font: 400 1.8rem/1 var(--display);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.review-controls button:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(185, 145, 79, .62);
}

.review-carousel {
  width: min(680px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding: 1px;
  scrollbar-width: none;
}

.review-carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-height: 360px;
  align-items: center;
  text-align: center;
  border: 0;
  border-top: 1px solid rgba(185, 145, 79, .35);
  border-bottom: 1px solid rgba(185, 145, 79, .35);
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  padding: clamp(32px, 5vw, 58px);
  box-shadow: none;
  transition: opacity .35s ease;
}

.review-card:hover {
  transform: none;
  background: transparent;
}

.review-stars {
  color: var(--gold);
  letter-spacing: .08em;
  font-size: .9rem;
}

.review-card p {
  max-width: 560px;
  margin: 30px 0 34px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.1vw, 2.15rem);
  line-height: 1.18;
}

.review-card span {
  color: var(--muted);
  font-size: .92rem;
}

.review-dots {
  width: min(680px, calc(100% - 32px));
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.review-dots button {
  width: 32px;
  height: 3px;
  border: 0;
  background: rgba(185, 145, 79, .26);
  padding: 0;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.review-dots button.is-active {
  width: 52px;
  background: var(--rose);
}

.home-pricing {
  display: grid;
  grid-template-columns: .88fr 1fr;
  gap: 76px;
  align-items: center;
  padding: 108px 0;
}

.home-pricing-copy p {
  max-width: 560px;
}

.home-pricing-copy .button {
  margin-top: 18px;
}

.home-price-list {
  border-top: 1px solid var(--line);
}

.home-price-row {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  transition: padding .25s ease, color .25s ease;
}

.home-price-row:hover {
  padding-left: 16px;
  color: var(--rose-deep);
}

.home-price-row span {
  color: var(--muted);
  font-weight: 700;
}

.home-price-row .plus-package-label {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  justify-self: start;
  margin-left: 0;
  text-align: left;
}

.plus-package-label em {
  display: inline-block;
  padding: 7px 11px;
  border: 1px solid rgba(185, 145, 79, .55);
  background: rgba(255, 247, 218, .72);
  color: #9b6d26;
  font-size: .68rem;
  font-style: normal;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.home-price-row strong {
  font-family: var(--display);
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 400;
}

.home-price-row.is-featured {
  position: relative;
  padding-right: 18px;
  background: linear-gradient(90deg, rgba(255, 247, 218, .58), rgba(255,255,255,0));
}

.home-price-row.is-featured::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -2px;
  width: 23px;
  height: 23px;
  background: var(--rose);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  transform: rotate(12deg);
  opacity: .9;
}

.plus-package-label {
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.plus-package-label em {
  padding: 0;
  border: 0;
  background: transparent;
  color: #9b6d26;
  font-size: .62rem;
  letter-spacing: .13em;
}

.home-appointment {
  background:
    linear-gradient(90deg, rgba(36,28,24,.92), rgba(36,28,24,.72)),
    url("pedicure036-hero.jpg");
  background-size: cover;
  background-position: center 62%;
}

.home-appointment .appointment-inner {
  min-height: 470px;
}

.home-appointment h2,
.home-appointment p {
  color: #fffdf9;
}

.home-appointment .eyebrow {
  color: var(--sand);
}

.appointment-actions {
  display: grid;
  justify-items: end;
  gap: 18px;
}

.appointment-actions .text-link {
  margin: 0;
  color: #fffdf9;
}

.page-hero {
  padding-top: 186px;
}

.page-hero h1 {
  font-size: clamp(2.75rem, 5.2vw, 5rem);
}

.pricing-hero {
  padding-bottom: 22px;
}

.pricing-hero h1 {
  max-width: 860px;
}

.pricing-hero p {
  max-width: 560px;
}

.accordion,
.contact-form,
.price-card,
.price-list {
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.pricing-grid {
  gap: 22px;
  padding-top: 0;
}

.pricing-grid .reveal,
.pricing-notes .reveal {
  opacity: 1;
  transform: none;
}

.price-card {
  border-color: rgba(185, 145, 79, .22);
}

.featured-price {
  background: #fbf0ec;
  border-color: rgba(185, 145, 79, .42);
}

.pricing-notes {
  align-items: start;
}

.price-list {
  border-color: var(--line);
}

.price-list div {
  background: rgba(255,255,255,.62);
}

input,
select,
textarea {
  border-radius: 0;
  background: #fffdf9;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 0;
  }

  .brand-wordmark {
    width: clamp(118px, 38vw, 158px);
    height: 34px;
  }

  .nav-toggle {
    border-radius: 0;
    background: white;
  }

  .hero-copy {
    min-height: 100dvh;
    padding: 138px 0 34px;
  }

  .pricing-hero {
    padding-top: 132px;
    padding-bottom: 10px;
  }

  .pricing-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.2rem);
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(255,253,249,.95), rgba(255,253,249,.72) 48%, rgba(255,253,249,.14)),
      linear-gradient(90deg, rgba(255,253,249,.88), rgba(255,253,249,.12));
  }

  .hero-image {
    background-position: 62% center;
  }

  .intro-grid,
  .service-preview,
  .pricing-grid,
  .pricing-notes,
  .home-pricing {
    gap: 28px;
  }

  .quality-strip,
  .service-panel,
  .service-list {
    grid-column: auto;
  }

  .editorial-block::before {
    min-height: 420px;
  }

  .review-section {
    padding: 48px 0 56px;
  }

  .review-proof { width: min(100% - 32px, 620px); grid-template-columns: 1fr; gap: 34px; }
  .review-score { border-right: 0; border-bottom: 1px solid rgba(185, 145, 79, .32); padding: 0 0 28px; }
  .review-score > span { max-width: none; }
  .review-list { grid-template-columns: 1fr; gap: 14px; }
  .review-list .review-card:nth-child(2), .review-list .review-card:nth-child(2):hover { transform: none; }
  .review-list .review-card:nth-child(3) { display: none; }

  .review-header {
    align-items: start;
    flex-direction: column;
  }

  .review-carousel {
    grid-auto-columns: minmax(278px, 86%);
  }

  .review-card {
    min-height: 280px;
  }

  .review-card p {
    font-size: clamp(1.35rem, 7vw, 1.75rem);
  }

  .home-pricing {
    grid-template-columns: 1fr;
    padding: 76px 0;
  }

  .home-price-row {
    min-height: 86px;
  }

  .home-price-row:hover {
    padding-left: 0;
  }

  .home-appointment .appointment-inner {
    min-height: 520px;
    align-items: end;
  }

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

/* Responsive polish pass: desktop, laptop, tablet and phone. */
img,
svg,
iframe {
  max-width: 100%;
}

body {
  overflow-x: hidden;
}

.site-header,
.section-shell,
.hero-copy,
.review-carousel,
.review-dots,
.footer-main,
.footer-partners,
.footer-bottom {
  max-width: calc(100% - 32px);
}

.site-nav a,
.button,
.header-cta,
.footer-contact a,
.home-price-row,
.price-list div {
  overflow-wrap: anywhere;
}

@media (max-width: 1120px) {
  .site-header {
    width: min(100% - 28px, 980px);
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
  }

  .site-nav {
    gap: 10px;
  }

  .site-nav a {
    font-size: .86rem;
  }

  .header-cta {
    padding-inline: 16px;
  }

  .hero-copy,
  .section-shell,
  .review-carousel,
  .review-dots,
  .footer-main,
  .footer-partners,
  .footer-bottom {
    width: min(100% - 40px, 980px);
  }

  .intro-grid {
    grid-template-columns: .32fr 1fr;
    gap: 30px;
  }

  .service-preview,
  .home-pricing,
  .pricing-notes,
  .split-detail,
  .rules-layout,
  .contact-layout {
    gap: 44px;
  }

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

  .pricing-grid .price-card:last-child {
    grid-column: 1 / -1;
    min-height: auto;
  }

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

  .footer-brand,
  .footer-map {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .site-header {
    width: min(100% - 24px, 620px);
    max-width: calc(100% - 24px);
    top: 12px;
    min-height: 62px;
    padding: 8px 10px;
    align-items: center;
  }

  .header-promo {
    left: 50%;
    top: 73px;
    width: min(100% - 24px, 620px);
    min-height: 24px;
    padding: 4px 12px 5px;
    font-size: .7rem;
    line-height: 1.25;
    transform: translateX(-50%);
  }

  body.nav-is-open .header-promo {
    opacity: 0;
    pointer-events: none;
  }

  .brand {
    max-width: calc(100vw - 100px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .brand-wordmark {
    max-width: calc(100vw - 150px);
  }

  .site-nav {
    gap: 0;
    padding: 8px 0 2px;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: .96rem;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero-copy,
  .section-shell,
  .review-carousel,
  .review-dots,
  .footer-main,
  .footer-partners,
  .footer-bottom {
    width: min(100% - 32px, 620px);
    max-width: calc(100% - 32px);
  }

  .salon-hero {
    min-height: 92dvh;
  }

  .hero-copy {
    min-height: 92dvh;
    padding: 122px 0 34px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3rem, 12.4vw, 4.6rem);
    line-height: 1;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 10vw, 3.85rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2.25rem, 9vw, 3.7rem);
    line-height: 1.05;
  }

  .hero-intro,
  .page-hero p,
  .intro-text p,
  .home-pricing-copy p {
    max-width: 100%;
    font-size: 1rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    padding: 78px 0 64px;
  }

  .section-kicker {
    margin-bottom: -4px;
  }

  .quality-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .quality-strip span,
  .contact-lines span {
    display: flex;
    align-items: center;
    min-height: 46px;
  }

  .service-preview {
    display: grid;
    grid-template-columns: 1fr;
    padding-bottom: 78px;
  }

  .editorial-block::before {
    width: 100%;
    min-height: clamp(300px, 62vw, 440px);
    grid-column: auto;
  }

  .service-panel,
  .service-list {
    grid-column: auto;
    grid-row: auto;
  }

  .review-header {
    gap: 18px;
  }

  .review-controls button {
    width: 46px;
    height: 46px;
  }

  .appointment-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 64px 0;
  }

  .home-appointment .appointment-inner {
    min-height: 460px;
  }

  .treatment-grid,
  .care-studio,
  .split-detail,
  .rules-layout,
  .contact-layout,
  .pricing-grid,
  .pricing-notes {
    grid-template-columns: 1fr;
  }

  .pricing-grid .price-card:last-child {
    grid-column: auto;
  }

  .page-hero {
    padding-top: 150px;
  }

  .page-hero::after {
    top: 118px;
    right: 0;
    width: clamp(108px, 31vw, 148px);
    opacity: .24;
    transform: none;
  }

  .page-hero-head,
  .faq-hero-head {
    grid-template-columns: minmax(0, 1fr) clamp(96px, 24vw, 132px);
    gap: 18px;
    align-items: start;
  }

  .page-title-mark,
  .faq-title-mark {
    margin-top: 8px;
  }

  .price-card {
    min-height: auto;
  }

  .price-list div,
  .home-price-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 24px);
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .brand-wordmark {
    width: 132px;
    height: 30px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .hero-copy,
  .section-shell,
  .review-carousel,
  .review-dots,
  .footer-main,
  .footer-partners,
  .footer-bottom {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
  }

  .hero-copy {
    padding-top: 112px;
    padding-bottom: 30px;
  }

  h1 {
    font-size: clamp(2.1rem, 8.7vw, 2.75rem);
    line-height: 1.06;
    overflow-wrap: normal;
  }

  .page-hero h1 {
    font-size: clamp(1.95rem, 8vw, 2.45rem);
    line-height: 1.06;
    overflow-wrap: normal;
  }

  .salon-hero h1 {
    max-width: 300px;
  }

  .salon-hero .hero-intro {
    max-width: 310px;
  }

  h2 {
    font-size: clamp(2rem, 10.4vw, 3rem);
  }

  .eyebrow,
  .tiny-label,
  .section-kicker {
    font-size: .7rem;
    letter-spacing: .16em;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-inline: 16px;
    border-radius: 14px;
  }

  .quality-strip,
  .contact-lines {
    grid-template-columns: 1fr;
  }

  .care-intro {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 62px 0 86px;
  }

  .care-intro-image,
  .care-intro-image img {
    min-height: 390px;
  }

  .care-intro-image { border-radius: 120px 120px 20px 20px; }
  .care-intro-content { padding: 0; }
  .care-intro-content h2 { font-size: clamp(2rem, 10.4vw, 3rem); }

  .service-item {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }

  .service-item strong {
    font-size: 1.3rem;
  }

  .review-section {
    padding: 64px 0 54px;
  }

  .review-carousel {
    grid-auto-columns: minmax(248px, 92%);
  }

  .home-pricing {
    padding: 64px 0;
  }

  .home-price-row,
  .price-list div {
    min-height: 78px;
    gap: 12px;
  }

  .home-price-row strong,
  .price-list strong {
    font-size: clamp(1.7rem, 10vw, 2.75rem);
  }

  .care-panel {
    min-height: 500px;
    padding: 24px;
  }

  .care-panel h2 {
    font-size: clamp(2rem, 10.8vw, 3.1rem);
    line-height: 1.02;
  }

  .care-tab {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .timeline div {
    min-height: 150px;
    padding: 22px 0;
  }

  .faq-section {
    gap: 22px;
    padding-bottom: 72px;
  }

  .faq-intro h2 {
    margin-bottom: 10px;
    font-size: clamp(1.85rem, 8.2vw, 2.45rem);
    line-height: 1.08;
  }

  .page-hero-head,
  .faq-hero-head {
    grid-template-columns: 1fr;
  }

  .page-title-mark,
  .faq-title-mark {
    width: min(132px, 42vw);
    justify-self: end;
    margin-top: -12px;
  }

  .faq-intro p {
    font-size: .98rem;
    line-height: 1.65;
  }

  .accordion button {
    min-height: 64px;
    padding-inline: 18px;
    text-align: left;
  }

  .faq-accordion button {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 22px;
    align-items: start;
    gap: 14px;
    padding: 18px 16px;
    font-size: 1rem;
    line-height: 1.38;
  }

  .faq-accordion button span {
    flex: 0 0 22px;
    margin-top: 2px;
  }

  .accordion-panel {
    padding-inline: 18px;
  }

  .faq-accordion .accordion-panel {
    padding: 0 16px 22px;
  }

  .faq-accordion .accordion-panel p {
    max-width: none;
    font-size: .95rem;
    line-height: 1.72;
  }

  .faq-accordion .accordion-panel p + p {
    margin-top: 14px;
  }

  .contact-form {
    padding: 20px;
  }

  .booking-qr-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .booking-qr-card img {
    width: min(180px, 100%);
  }

  .footer-partners {
    gap: 16px;
  }

  .partner-logos a {
    min-width: 0;
    flex-basis: 100%;
  }
}

/* Mobile header: crisp, minimal menu control aligned to the far right. */
@media (max-width: 860px) {
  .site-header {
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    min-height: 70px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin: 0;
    padding: 10px max(14px, env(safe-area-inset-right)) 10px max(14px, env(safe-area-inset-left));
    border: 0;
    border-bottom: 1px solid rgba(80, 62, 48, .12);
    border-radius: 0;
    background: #fff;
    box-shadow: 0 10px 28px rgba(45, 37, 31, .08);
    backdrop-filter: none;
  }

  .site-header.is-scrolled {
    background: #fff;
  }

  .header-promo {
    top: 70px;
    width: 100%;
    max-width: 100%;
    border-left: 0;
    border-right: 0;
    background: #fff7f4;
    backdrop-filter: none;
  }

  .site-nav {
    background: #fff;
  }

  .brand-wordmark,
  .brand-mark {
    filter: none;
    image-rendering: auto;
  }

  .nav-toggle {
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(36, 28, 24, .16);
    border-radius: 0;
    background: rgba(255, 255, 255, .92);
    box-shadow: none;
  }

  .nav-toggle span {
    display: block;
    width: 21px;
    height: 1px;
    margin: 0;
    background: var(--ink);
    transform: none;
  }

  .nav-toggle:focus-visible {
    outline: 2px solid var(--rose);
    outline-offset: 3px;
  }
}

@media (max-width: 380px) {
  .brand-wordmark {
    width: 118px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2rem, 8.2vw, 2.45rem);
  }

  .salon-hero h1 {
    max-width: 280px;
  }

  .salon-hero .hero-intro {
    max-width: 286px;
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

  .hero-copy,
  .section-shell,
  .review-carousel,
  .review-dots,
  .footer-main,
  .footer-partners,
  .footer-bottom {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
  }
}
