/* =========================================================
   Roos Mondzorg. Warm, modern, responsive
   Palette: cream, sage, warm charcoal, soft terracotta accent
   ========================================================= */

:root {
  --cream: #faf7f2;
  --cream-deep: #f3ece2;
  --sage: #7a9078;
  --sage-dark: #5d7359;
  --sage-light: #d4dfd0;
  --charcoal: #2b2a26;
  --charcoal-soft: #4a4842;
  --terracotta: #c87f5f;
  --gold: #b8985a;
  --line: #e6dfd3;
  --maxw: 1140px;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(43, 42, 38, 0.04), 0 2px 6px rgba(43, 42, 38, 0.04);
  --shadow-md: 0 4px 14px rgba(43, 42, 38, 0.06), 0 10px 30px rgba(43, 42, 38, 0.06);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  font-feature-settings: 'kern' 1, 'liga' 1;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

h1 { font-size: clamp(1.9rem, 5vw, 3.6rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.5em; }
h3 { font-size: 1.3rem; margin-bottom: 0.4em; }

p { margin-bottom: 1em; color: var(--charcoal-soft); }

a { color: var(--sage-dark); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--terracotta); }

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== PHOTO PLACEHOLDER =====
   Used wherever a real photo will go. Subtle dashed border,
   italic Fraunces label, warm cream background.
   Class .photo-placeholder--portrait or .photo-placeholder--square. */
.photo-placeholder {
  position: relative;
  background: linear-gradient(160deg, var(--cream-deep) 0%, var(--sage-light) 100%);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.photo-placeholder--portrait { aspect-ratio: 4/5; }
.photo-placeholder--square   { aspect-ratio: 1/1; }

.photo-placeholder-inner {
  text-align: center;
  padding: 2rem;
  color: var(--sage-dark);
}

.photo-placeholder-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border: 1.5px dashed var(--sage);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--sage-dark);
}

.photo-placeholder-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.photo-placeholder-title {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.photo-placeholder-hint {
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  letter-spacing: 0.02em;
}

.photo-placeholder-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

/* ===== USP BAR ===== */
.usp-bar {
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0.5rem;
}

.usp-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  color: var(--sage-dark);
  border: 1px solid var(--line);
}

.usp-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.usp-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.35;
}

/* ===== CREDENTIAL BADGES ===== */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  letter-spacing: 0.01em;
}

.badge-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* ===== REVIEW META ===== */
.review-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--charcoal-soft);
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage-dark);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.review-source {
  font-size: 0.78rem;
  color: var(--charcoal-soft);
  opacity: 0.7;
  display: block;
  margin-top: 0.1rem;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--maxw);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  display: grid;
  place-items: center;
  color: white;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a:not(.btn) {
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a:not(.btn):hover { color: var(--sage-dark); }
.nav-links a.active:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--charcoal);
}

.nav-toggle svg { width: 24px; height: 24px; }

/* ===== HERO ===== */
.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
}

.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--charcoal-soft);
  margin-bottom: 2rem;
  max-width: 36ch;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  font-family: inherit;
  text-decoration: none;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--terracotta);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--line);
}
.btn-secondary:hover {
  border-color: var(--charcoal);
  background: var(--cream-deep);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--sage-light) 0%, var(--cream-deep) 100%);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-visual-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--sage-dark);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.1rem;
  text-align: center;
  padding: 2rem;
}

.hero-visual-inner svg {
  width: 80%;
  max-width: 280px;
  opacity: 0.85;
}

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
  width: 10px;
  height: 10px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(122, 144, 120, 0.2);
}

/* ===== SECTIONS ===== */
section { padding: clamp(3rem, 6vw, 5rem) 0; }

.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.section-head {
  max-width: 680px;
  margin-bottom: 3rem;
}

.section-head p { font-size: 1.05rem; }

/* ===== TRUST BAR ===== */
.trust {
  background: var(--cream-deep);
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-num {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--sage-dark);
  line-height: 1;
}

.trust-label {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  letter-spacing: 0.02em;
}

/* ===== TREATMENTS ===== */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.treatment {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.treatment:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-light);
}

.treatment-icon {
  width: 48px;
  height: 48px;
  background: var(--sage-light);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--sage-dark);
  margin-bottom: 1.25rem;
}

.treatment h3 { font-size: 1.15rem; }
.treatment p { font-size: 0.95rem; margin-bottom: 0; }

.treatment-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sage-dark);
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, var(--cream-deep), var(--sage-light));
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-visual-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--sage-dark);
  font-family: 'Fraunces', serif;
  font-style: italic;
}

.credentials {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.credential-dot {
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== APPROACH ===== */
.approach {
  background: var(--charcoal);
  color: var(--cream);
}

.approach h2 { color: var(--cream); }
.approach .section-eyebrow { color: var(--terracotta); }
.approach p { color: rgba(250, 247, 242, 0.75); }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.approach-item {
  border-top: 1px solid rgba(250, 247, 242, 0.15);
  padding-top: 1.5rem;
}

.approach-num {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.approach-item h3 {
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review {
  background: var(--cream-deep);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.review-stars {
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.review-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.review-author {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  font-weight: 500;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
  color: white;
  text-align: center;
}

.cta-section h2 { color: white; }
.cta-section p { color: rgba(255, 255, 255, 0.9); max-width: 50ch; margin: 0 auto 2rem; }

.cta-section .btn-primary {
  background: white;
  color: var(--sage-dark);
}
.cta-section .btn-primary:hover {
  background: var(--charcoal);
  color: white;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer h4 {
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 0.5rem; }

.footer a {
  color: rgba(250, 247, 242, 0.7);
  font-size: 0.95rem;
}
.footer a:hover { color: white; }

.footer-brand p {
  color: rgba(250, 247, 242, 0.7);
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 30ch;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.5);
}

/* ===== SUBPAGE HERO ===== */
.subpage-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line);
}

.subpage-hero h1 { max-width: 18ch; }
.subpage-hero p {
  font-size: 1.15rem;
  max-width: 60ch;
  margin-top: 1rem;
}

/* ===== CONTENT BLOCKS ===== */
.content {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.content h2 { margin-top: 2rem; }
.content h2:first-child { margin-top: 0; }

.content ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.content ul li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--charcoal-soft);
}

.content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 600;
}

/* ===== TARIFFEN TABLE ===== */
.tariff-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.tariff-table th,
.tariff-table td {
  padding: 1.1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.tariff-table thead {
  background: var(--cream-deep);
}

.tariff-table th {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal);
}

.tariff-table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.tariff-table tbody tr:last-child td { border-bottom: none; }
.tariff-table tbody tr:hover { background: var(--cream); }

.tariff-note {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--sage-light);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--charcoal-soft);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-card {
  background: var(--cream-deep);
  padding: 2rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.contact-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}

.contact-card p,
.contact-card a {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.contact-card a:hover { color: var(--terracotta); }

.hours-table {
  width: 100%;
  margin-top: 0.5rem;
}

.hours-table td {
  padding: 0.35rem 0;
  font-size: 1rem;
  color: var(--charcoal);
}

.hours-table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--charcoal-soft);
}

.hours-table tr.closed td { color: var(--charcoal-soft); opacity: 0.7; }

.map-placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--sage-light), var(--cream-deep));
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--sage-dark);
  font-family: 'Fraunces', serif;
  font-style: italic;
  border: 1px solid var(--line);
}

.form { display: grid; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: white;
  font-family: inherit;
  font-size: 1rem;
  color: var(--charcoal);
  transition: border-color 0.2s ease;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--sage);
}

.form textarea { min-height: 140px; resize: vertical; }

.form-note {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .treatments-grid,
  .reviews-grid,
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .trust-grid,
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 480px) {
  .usp-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .usp-item { padding: 0.25rem; }
  .usp-icon { width: 36px; height: 36px; }
  .usp-icon svg { width: 18px; height: 18px; }
  .usp-label { font-size: 0.78rem; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--line);
    gap: 1.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .treatments-grid,
  .reviews-grid,
  .approach-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    animation: fadeIn 0.7s ease both;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
