/* =========================================================
   Gwen's Massage Salon — kleuren afgeleid van het logo:
   puur zwart + champagnegoud → koper/brons verloop
   ========================================================= */
:root {
  color-scheme: only light; /* voorkomt dat Android auto-dark-mode de kleuren herschildert */
  --black: #0b0a08;
  --black-soft: #15130f;
  --gold-light: #f3d68f;
  --gold: #d9a850;
  --copper: #a06a25;
  --bronze: #6e4413;
  --cream: #faf6ee;
  --cream-dark: #f1e9da;
  --ink: #2b2620;
  --ink-soft: #5c544a;
  --gold-grad: linear-gradient(135deg, #f6dd9c 0%, #d9a850 45%, #a06a25 100%);
  --shadow: 0 14px 40px rgba(20, 14, 4, .14);
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1140px, 92%); margin-inline: auto; }
.container.narrow { width: min(820px, 92%); }

h1, h2, h3, .brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 10, 8, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(217, 168, 80, .25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 0;
}

.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-size: 1.7rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-sub {
  font-size: .68rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: .25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}
.nav-links a {
  color: #eee6d6;
  text-decoration: none;
  font-size: .95rem;
  letter-spacing: .06em;
  transition: color .25s;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  border: 1px solid var(--gold);
  padding: .45rem 1.1rem;
  border-radius: 999px;
  color: var(--gold-light) !important;
}
.nav-cta:hover { background: rgba(217, 168, 80, .12); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--gold-light); transition: .3s; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 50% -20%, rgba(217, 168, 80, .18), transparent 55%),
    var(--black);
  color: #f4ecdd;
  text-align: center;
  padding: 4.5rem 0 6.5rem;
  overflow: hidden;
}

.hero-logo {
  width: min(360px, 70vw);
  margin: 0 auto 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 0 80px rgba(217, 168, 80, .25);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-light);
  letter-spacing: .08em;
  margin-bottom: .6rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
}

.hero-text {
  max-width: 560px;
  margin: 0 auto 2.2rem;
  color: #cfc4ae;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: .05em;
  font-size: .95rem;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.btn-gold {
  background: var(--gold-grad);
  color: var(--black);
  box-shadow: 0 8px 24px rgba(217, 168, 80, .35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(217, 168, 80, .45); }
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold-light);
}
.btn-outline:hover { background: rgba(217, 168, 80, .12); }

.hero-fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 70px;
  background: linear-gradient(to bottom, transparent, var(--cream));
}

/* ---------- usp strip ---------- */
.usp-strip { padding: 3.5rem 0 1rem; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.usp { text-align: center; padding: 1rem; }
.usp-icon {
  width: 58px; height: 58px;
  margin: 0 auto .9rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-grad);
  color: var(--black);
}
.usp-icon svg { width: 26px; height: 26px; stroke-width: 1.8; }
.usp h3 { font-size: 1.35rem; margin-bottom: .4rem; }
.usp p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- sections ---------- */
.section { padding: 5rem 0; }
.section-cream { background: var(--cream-dark); }
.section-dark {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(217, 168, 80, .12), transparent 50%),
    var(--black-soft);
  color: #ece3d2;
}
.section-dark .section-title { color: #f4ecdd; }
.section-dark p { color: #c8bda7; }

.section-kicker {
  text-transform: uppercase;
  letter-spacing: .4em;
  font-size: .75rem;
  font-weight: 500;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: .5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 1.2rem;
  position: relative;
}

.section-intro { max-width: 640px; color: var(--ink-soft); margin-bottom: 2.5rem; }

/* ---------- behandeling carrousel ---------- */
.carousel {
  position: relative;
  --per-view: 3;
  --car-gap: 1.8rem;
}

.cards {
  display: flex;
  gap: var(--car-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 0 1.8rem;
  margin-top: -10px;
  scrollbar-width: none;
}
.cards::-webkit-scrollbar { display: none; }

.cards .card {
  flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--car-gap)) / var(--per-view));
  scroll-snap-align: start;
}

.car-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: .5rem;
}

.car-btn {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--gold-grad);
  color: var(--black);
  cursor: pointer;
  transition: transform .25s, opacity .25s;
}
.car-btn:hover { transform: scale(1.08); }
.car-btn[disabled] { opacity: .35; cursor: default; transform: none; }
.car-btn svg { width: 22px; height: 22px; }

.car-dots {
  display: flex;
  justify-content: center;
  gap: .55rem;
}
.car-dots button {
  width: 9px; height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(110, 68, 19, .25);
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}
.car-dots button.active {
  background: var(--gold-grad);
  transform: scale(1.3);
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(20, 14, 4, .2); }

.card-img { height: 210px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.card:hover .card-img img { transform: scale(1.06); }

.card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card h3 { font-size: 1.45rem; }
.card p { font-size: .95rem; color: var(--ink-soft); }

.card-plain .card-body { padding-top: 1.8rem; }
.card-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-grad);
  color: var(--black);
  margin-bottom: .3rem;
}
.card-icon svg { width: 24px; height: 24px; stroke-width: 1.8; }

.card details { margin-top: auto; }
.card summary {
  cursor: pointer;
  font-weight: 500;
  font-size: .9rem;
  color: var(--copper);
  letter-spacing: .05em;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.card summary::-webkit-details-marker { display: none; }
.card summary::after { content: "+"; font-size: 1.1rem; transition: transform .3s; }
.card details[open] summary::after { transform: rotate(45deg); }
.card details p { margin-top: .6rem; font-size: .9rem; }

/* ---------- tarieven ---------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}
.price-table td {
  padding: 1rem .5rem;
  border-bottom: 1px solid rgba(217, 168, 80, .22);
  font-size: 1rem;
}
.price-table td:nth-child(2) { color: #b3a78e; white-space: nowrap; text-align: center; }
.price-table td:last-child {
  text-align: right;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
}
.price-table .group-row td {
  padding: 2.2rem .5rem .6rem;
  border-bottom: 1px solid rgba(217, 168, 80, .45);
  text-align: left;
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .75rem;
  font-weight: 500;
  color: var(--gold-light);
}
.price-table tr.group-row:first-child td { padding-top: .5rem; }
.table-note { margin-top: 1.5rem; font-size: .9rem; color: #b3a78e !important; }

/* ---------- split (over / contact) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.split-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: cover;
}
.split-text p { margin-bottom: 1rem; }
.signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 1.2rem 0 1.6rem;
}

/* ---------- huisregels ---------- */
.rules { list-style: none; margin-top: 1.5rem; }
.rules li {
  position: relative;
  padding: .8rem 0 .8rem 2.2rem;
  border-bottom: 1px solid rgba(110, 68, 19, .14);
}
.rules li::before {
  content: "\2766";
  position: absolute;
  left: 0;
  top: .75rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.05rem;
}

/* ---------- contact ---------- */
.contact-list { list-style: none; margin-top: 1.8rem; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: 1rem; align-items: baseline; }
.contact-label {
  min-width: 112px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.contact-label svg { width: 16px; height: 16px; flex-shrink: 0; }
.contact-list a { color: #ece3d2; text-decoration: none; border-bottom: 1px solid rgba(217, 168, 80, .35); transition: color .25s; }
.contact-list a:hover { color: var(--gold-light); }

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: saturate(.85);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--black);
  color: #b3a78e;
  text-align: center;
  padding: 3rem 0 2.2rem;
}
.footer-logo { width: 170px; margin: 0 auto 1.2rem; border-radius: 10px; opacity: .95; }
.site-footer a { color: var(--gold-light); text-decoration: none; }
.copy { margin-top: .8rem; font-size: .8rem; opacity: .7; }

.cta-row { margin: 1.6rem 0; }
.table-note + .cta-row { margin-top: 2.8rem; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .carousel { --per-view: 2; }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2.2rem; }
  .usp-grid { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 640px) {
  .carousel { --per-view: 1; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(11, 10, 8, .98);
    padding: 1.4rem 0 1.8rem;
    gap: 1.1rem;
    border-bottom: 1px solid rgba(217, 168, 80, .25);
    display: none;
  }
  .nav-links.open { display: flex; }
  .section { padding: 3.5rem 0; }
  .price-table td:nth-child(2) { display: none; }
}
