@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=DM+Sans:wght@400;500&display=swap');

/* ===== VARIABLES ===== */
:root {
  --cream: #F9F6F1;
  --sand: #EFEBE4;
  --terracotta: #B84A2E;
  --anthracite: #2C2C2A;
  --black: #1A1A18;
  --gray: #6B6860;
  --white: #FFFFFF;

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans: 'DM Sans', system-ui, -apple-system, sans-serif;

  --max-w: 1200px;
  --nav-h: 72px;
  --section-py: 88px;
  --transition: 0.2s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-sans);
  color: var(--black);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--ff-serif); font-weight: 700; line-height: 1.15; color: var(--black); }
h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.5vw, 42px); }
h3 { font-size: clamp(18px, 2.5vw, 22px); }
p { font-family: var(--ff-sans); font-size: 16px; line-height: 1.7; color: var(--gray); }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
section { padding: var(--section-py) 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }
.btn-primary:hover { background: #9f3d23; border-color: #9f3d23; }

.btn-secondary { background: transparent; color: var(--black); border-color: var(--black); }
.btn-secondary:hover { background: var(--black); color: var(--white); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  height: var(--nav-h);
  transition: box-shadow 0.25s ease;
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

.navbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar__logo { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.navbar__logo-name { font-family: var(--ff-serif); font-size: 19px; font-weight: 700; color: var(--black); }
.navbar__logo-sub { font-family: var(--ff-sans); font-size: 10px; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }

.navbar__nav { display: flex; align-items: center; gap: 30px; }
.navbar__nav a { font-family: var(--ff-sans); font-size: 14px; font-weight: 500; color: var(--black); letter-spacing: 0.01em; transition: color var(--transition); }
.navbar__nav a:hover, .navbar__nav a.active { color: var(--terracotta); }

.navbar__actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.navbar__phone { font-family: var(--ff-sans); font-size: 14px; font-weight: 500; color: var(--terracotta); white-space: nowrap; }
.navbar__phone:hover { color: #9f3d23; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); transition: all 0.25s; border-radius: 1px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  padding: 24px 28px 32px;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu__links { margin-bottom: 20px; }
.mobile-menu__links a { display: block; font-family: var(--ff-sans); font-size: 17px; font-weight: 500; color: var(--black); padding: 13px 0; border-bottom: 1px solid var(--sand); }
.mobile-menu__links a:last-child { border-bottom: none; }
.mobile-menu__phone { font-family: var(--ff-sans); font-size: 16px; font-weight: 500; color: var(--terracotta); display: block; margin-bottom: 12px; }

/* ===== HERO ===== */
.hero {
  background: var(--cream);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 28px;
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 72px;
  align-items: center;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  margin-bottom: 20px;
  padding: 6px 12px;
  border: 1px solid rgba(184,74,46,0.25);
  border-radius: 1px;
}

.hero__content h1 { margin-bottom: 22px; }
.hero__content h1 em { font-style: italic; color: var(--terracotta); }

.hero__sub { font-size: 18px !important; color: var(--gray); margin-bottom: 36px; max-width: 500px; line-height: 1.65 !important; }

.hero__buttons { display: flex; flex-direction: column; gap: 12px; max-width: 360px; margin-bottom: 32px; }
.hero__buttons .btn { justify-content: center; }

.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--gray);
  font-family: var(--ff-sans);
  padding-top: 8px;
  border-top: 1px solid var(--sand);
}
.hero__trust-dot { color: var(--sand); }

/* ===== BEFORE/AFTER SLIDER ===== */
.ba-wrap { position: relative; }
.ba-hint { text-align: center; font-size: 12px; color: var(--gray); margin-top: 10px; font-family: var(--ff-sans); letter-spacing: 0.02em; }

.ba-slider {
  position: relative;
  overflow: hidden;
  cursor: col-resize;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--sand);
  user-select: none;
  border-radius: 2px;
}

.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-after { clip-path: inset(0 50% 0 0); }

.ba-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ba-before .ba-placeholder { background: #B5A28A; }
.ba-after .ba-placeholder { background: #D9C6A5; }

.ba-furniture-icon { opacity: 0.18; }
.ba-furniture-icon svg { width: 120px; height: 80px; }

.ba-label {
  position: absolute;
  bottom: 14px;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(0,0,0,0.55);
  color: white;
  padding: 4px 10px;
  border-radius: 1px;
}
.ba-before .ba-label { left: 14px; }
.ba-after .ba-label { right: 14px; }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 48px;
  pointer-events: none;
  z-index: 2;
}
.ba-handle-line { flex: 1; width: 2px; background: rgba(255,255,255,0.85); }
.ba-handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.22);
}
.ba-handle-circle svg { width: 18px; height: 18px; }

/* ===== TRUST PILLARS ===== */
.trust { background: var(--sand); padding: 56px 0; }
.trust__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.trust__item { display: flex; gap: 20px; align-items: flex-start; }
.trust__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}
.trust__icon svg { width: 22px; height: 22px; stroke: var(--terracotta); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.trust__title { font-family: var(--ff-sans); font-size: 15px; font-weight: 500; color: var(--black); margin-bottom: 5px; }
.trust__desc { font-size: 14px !important; line-height: 1.55 !important; }

/* ===== SERVICES GRID ===== */
.services { background: var(--cream); }
.services__header { text-align: center; margin-bottom: 12px; }
.services__header h2 { margin-bottom: 12px; }
.services__subhead { text-align: center; max-width: 500px; margin: 0 auto 48px; }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.service-card { border: 1px solid var(--sand); overflow: hidden; transition: border-color var(--transition); }
.service-card:hover { border-color: var(--terracotta); }
.service-card__img { aspect-ratio: 4 / 3; background: var(--sand); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.service-card__img-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.service-card__icon { opacity: 0.22; }
.service-card__icon svg { width: 100px; height: 70px; }

.service-card__body { padding: 24px 26px; }
.service-card__title { font-family: var(--ff-serif); font-size: 22px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.service-card__desc { font-size: 14px !important; margin-bottom: 18px; }
.service-card__link { font-family: var(--ff-sans); font-size: 14px; font-weight: 500; color: var(--terracotta); display: inline-flex; align-items: center; gap: 4px; transition: gap var(--transition); }
.service-card__link:hover { gap: 8px; text-decoration: underline; }

/* ===== HOW IT WORKS ===== */
.how { background: var(--anthracite); }
.how__header { text-align: center; margin-bottom: 64px; }
.how__header h2 { color: var(--white); margin-bottom: 12px; }
.how__sub { color: rgba(255,255,255,0.55) !important; max-width: 480px; margin: 0 auto; }

.how__steps {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 56px;
}
.how__step { text-align: center; padding: 0 12px; }
.how__step-num { font-family: var(--ff-serif); font-size: 64px; font-weight: 700; color: var(--terracotta); line-height: 1; margin-bottom: 20px; display: block; }
.how__step-title { font-family: var(--ff-sans); font-size: 17px; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.how__step-desc { font-size: 14px !important; color: rgba(255,255,255,0.55) !important; line-height: 1.6 !important; }

.how__connector { display: flex; align-items: flex-start; padding-top: 26px; justify-content: center; }
.how__connector-line { width: 100%; height: 1px; background: rgba(255,255,255,0.15); margin-top: 4px; }

.how__cta { text-align: center; }

/* ===== ABOUT ===== */
.about { background: var(--cream); }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about__img { aspect-ratio: 3/4; overflow: hidden; border-radius: 2px; }
.about__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #C8B49A 0%, #A8906E 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px;
}
.about__img-label { font-family: var(--ff-sans); font-size: 12px; color: rgba(255,255,255,0.7); letter-spacing: 0.06em; text-transform: uppercase; background: rgba(0,0,0,0.3); padding: 6px 14px; border-radius: 1px; }

.about__content h2 { margin-bottom: 20px; }
.about__text { margin-bottom: 28px; font-size: 16px !important; color: var(--gray); line-height: 1.75 !important; }
.about__signature { font-family: var(--ff-serif); font-style: italic; font-size: 18px; color: var(--black); margin-bottom: 28px; border-top: 1px solid var(--sand); padding-top: 20px; }
.about__badges { display: flex; gap: 12px; flex-wrap: wrap; }
.about__badge { font-family: var(--ff-sans); font-size: 13px; font-weight: 500; color: var(--gray); padding: 7px 14px; border: 1px solid var(--sand); border-radius: 2px; background: var(--sand); }

/* ===== GALLERY ===== */
.gallery { background: var(--cream); border-top: 1px solid var(--sand); }
.gallery__header { text-align: center; margin-bottom: 12px; }
.gallery__header h2 { margin-bottom: 12px; }
.gallery__sub { text-align: center; max-width: 480px; margin: 0 auto 48px; }

.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-bottom: 40px; }
.gallery__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.gallery__pair-label { font-family: var(--ff-sans); font-size: 12px; color: var(--gray); margin-bottom: 8px; font-weight: 500; }

.gallery__item { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.gallery__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.gallery__item--before .gallery__placeholder { background: #B5A28A; }
.gallery__item--after .gallery__placeholder { background: #D5BE98; }
.gallery__item--before:nth-child(2) .gallery__placeholder { background: #A89078; }
.gallery__item--after:nth-child(2) .gallery__placeholder { background: #CEBB9E; }

.gallery__badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 3px 8px;
  border-radius: 1px;
}

.gallery__cta { text-align: center; }

/* ===== REVIEWS ===== */
.reviews { background: var(--sand); }
.reviews__header { text-align: center; margin-bottom: 48px; }
.reviews__header h2 { margin-bottom: 12px; }

.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.review-card { background: var(--white); padding: 32px 28px; border: 1px solid rgba(0,0,0,0.04); }
.review-card__quote { font-family: var(--ff-serif); font-size: 72px; line-height: 0.75; color: var(--terracotta); margin-bottom: 12px; display: block; }
.review-card__text { font-size: 15px !important; color: var(--black) !important; line-height: 1.7 !important; margin-bottom: 22px; }
.review-card__name { font-family: var(--ff-sans); font-size: 14px; font-weight: 500; color: var(--black); }
.review-card__stars { font-size: 13px; letter-spacing: 2px; margin: 5px 0; }
.review-card__source { font-size: 12px !important; color: var(--gray) !important; }

.reviews__footer {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}
.reviews__google-logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border: 1px solid var(--sand);
  border-radius: 2px;
  background: var(--white);
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
}

/* ===== PRICING ===== */
.pricing { background: var(--cream); }
.pricing__header { text-align: center; margin-bottom: 12px; }
.pricing__intro { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 28px; }

.pricing-card { border: 1px solid var(--sand); padding: 28px 24px; transition: border-color var(--transition), transform var(--transition); }
.pricing-card:hover { border-color: var(--terracotta); transform: translateY(-3px); }
.pricing-card--featured { border-color: var(--terracotta); }
.pricing-card__tag { font-family: var(--ff-sans); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--terracotta); margin-bottom: 16px; display: block; }
.pricing-card__title { font-family: var(--ff-sans); font-size: 14px; font-weight: 500; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.pricing-card__price { font-family: var(--ff-serif); font-size: 42px; font-weight: 700; color: var(--terracotta); line-height: 1; margin-bottom: 12px; }
.pricing-card__price sup { font-size: 20px; vertical-align: super; }
.pricing-card__from { font-family: var(--ff-sans); font-size: 13px; color: var(--gray); font-weight: 400; margin-bottom: 4px; display: block; }
.pricing-card__desc { font-size: 13px !important; line-height: 1.55 !important; color: var(--gray); }
.pricing-card__divider { height: 1px; background: var(--sand); margin: 14px 0; }

.pricing__disclaimer { text-align: center; font-size: 13px !important; color: var(--gray); margin-bottom: 24px; }
.pricing__cta { text-align: center; }

/* ===== SUSTAINABILITY ===== */
.sustain { background: var(--cream); border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); padding: 72px 0; }
.sustain__pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; margin-bottom: 52px; }
.sustain__pillar { padding: 28px 20px; border: 1px solid var(--sand); background: var(--sand); }
.sustain__pillar-emoji { font-size: 36px; margin-bottom: 12px; display: block; }
.sustain__pillar-title { font-family: var(--ff-sans); font-size: 16px; font-weight: 500; color: var(--black); }

.sustain__quote-wrap { text-align: center; }
.sustain__quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 38px);
  color: var(--black);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.3;
}
.sustain__quote::before { content: '\201C'; color: var(--terracotta); }
.sustain__quote::after { content: '\201D'; color: var(--terracotta); }

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--anthracite); }
.contact-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-section__left h2 { color: var(--white); margin-bottom: 16px; }
.contact-section__sub { color: rgba(255,255,255,0.55) !important; margin-bottom: 48px; max-width: 420px; }

.contact-section__info { display: flex; flex-direction: column; gap: 8px; }
.contact-section__info-label { font-family: var(--ff-sans); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.contact-section__phone { font-family: var(--ff-serif); font-size: 36px; font-weight: 700; color: var(--white); display: block; margin-bottom: 4px; transition: color var(--transition); }
.contact-section__phone:hover { color: var(--terracotta); }
.contact-section__email { font-family: var(--ff-sans); font-size: 15px; color: rgba(255,255,255,0.65); display: block; transition: color var(--transition); }
.contact-section__email:hover { color: var(--white); }

.contact-section__google { margin-top: 28px; padding: 14px 20px; border: 1px solid rgba(255,255,255,0.12); display: inline-flex; align-items: center; gap: 10px; }
.contact-section__google-text { font-family: var(--ff-sans); font-size: 13px; color: rgba(255,255,255,0.55); }
.contact-section__google-score { font-family: var(--ff-sans); font-size: 13px; font-weight: 500; color: var(--white); }

/* ===== MULTI-STEP FORM ===== */
.msform { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 36px 32px; }

.msform__progress { display: flex; align-items: center; gap: 6px; margin-bottom: 28px; }
.msform__dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: background var(--transition); }
.msform__dot.active { background: var(--terracotta); }
.msform__step-label { font-family: var(--ff-sans); font-size: 12px; color: rgba(255,255,255,0.45); margin-left: 6px; }

.msform__step { display: none; }
.msform__step.active { display: block; }
.msform__question { font-family: var(--ff-serif); font-size: 22px; color: var(--white); margin-bottom: 20px; line-height: 1.25; }

.msform__choices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.msform__choice {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 16px;
  cursor: pointer;
  transition: all 0.18s;
  text-align: left;
  border-radius: 2px;
}
.msform__choice:hover { background: rgba(184,74,46,0.2); border-color: var(--terracotta); color: var(--white); }
.msform__choice.selected { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); }

.msform__field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.msform__field { display: flex; flex-direction: column; gap: 5px; }
.msform__field.full { grid-column: 1 / -1; }
.msform__label { font-family: var(--ff-sans); font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.07em; }

.msform__input,
.msform__textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 15px;
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 2px;
  width: 100%;
}
.msform__input:focus, .msform__textarea:focus { border-color: var(--terracotta); }
.msform__input::placeholder, .msform__textarea::placeholder { color: rgba(255,255,255,0.25); }
.msform__textarea { resize: vertical; min-height: 90px; }

.msform__file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.45);
  font-family: var(--ff-sans);
  font-size: 13px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 2px;
  margin-top: 4px;
}
.msform__file-label:hover { border-color: var(--terracotta); color: rgba(255,255,255,0.8); }
.msform__file-input { display: none; }

.msform__back { background: none; border: none; color: rgba(255,255,255,0.4); font-family: var(--ff-sans); font-size: 13px; cursor: pointer; padding: 0; margin-top: 12px; display: inline-flex; align-items: center; gap: 4px; transition: color var(--transition); }
.msform__back:hover { color: rgba(255,255,255,0.7); }
.msform__submit { margin-top: 16px; }

.msform__success { text-align: center; padding: 40px 20px; }
.msform__success-icon { font-size: 48px; margin-bottom: 16px; }
.msform__success h3 { font-family: var(--ff-serif); color: var(--white); font-size: 24px; margin-bottom: 10px; }
.msform__success p { color: rgba(255,255,255,0.6) !important; }

/* ===== FAQ ===== */
.faq { background: var(--cream); }
.faq__header { text-align: center; margin-bottom: 48px; }
.faq__header h2 { margin-bottom: 12px; }
.faq__list { max-width: 760px; margin: 0 auto; }

.faq__item { border-bottom: 1px solid var(--sand); }
.faq__item:first-child { border-top: 1px solid var(--sand); }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--terracotta); }

.faq__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  color: var(--black);
}
.faq__item.open .faq__icon { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); transform: rotate(45deg); }
.faq__icon svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }

.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq__item.open .faq__answer { max-height: 400px; }
.faq__answer p { padding-bottom: 22px; font-size: 15px !important; line-height: 1.7 !important; color: var(--gray); }

/* ===== FOOTER ===== */
footer { background: var(--black); padding: 64px 0 36px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 64px; margin-bottom: 48px; }

.footer__brand-name { font-family: var(--ff-serif); font-size: 20px; font-weight: 700; color: var(--white); display: block; margin-bottom: 8px; }
.footer__tagline { font-family: var(--ff-sans); font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.footer__kvk { font-family: var(--ff-sans); font-size: 12px; color: rgba(255,255,255,0.3); }
.footer__copy { font-family: var(--ff-sans); font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 20px; }

.footer__col-title { font-family: var(--ff-sans); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer__nav-list { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-list a { font-family: var(--ff-sans); font-size: 14px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer__nav-list a:hover { color: var(--white); }

.footer__contact-row { margin-bottom: 14px; }
.footer__contact-label { display: block; font-family: var(--ff-sans); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.3); margin-bottom: 3px; }
.footer__contact-value { font-family: var(--ff-sans); font-size: 14px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer__contact-value:hover { color: var(--white); }

.footer__divider { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 24px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__bottom-copy { font-family: var(--ff-sans); font-size: 12px; color: rgba(255,255,255,0.28); }

/* ===== MOBILE STICKY BAR ===== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--anthracite);
  z-index: 200;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-sticky-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.mobile-sticky-bar a:first-child { color: var(--terracotta); border-right: 1px solid rgba(255,255,255,0.08); }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--sand); padding: 72px 0 64px; border-bottom: 1px solid rgba(0,0,0,0.07); }
.page-hero .container { max-width: 760px; text-align: center; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 18px !important; }

/* ===== DIENSTEN PAGE ===== */
.dienst-detail { padding: var(--section-py) 0; border-bottom: 1px solid var(--sand); }
.dienst-detail:last-child { border-bottom: none; }
.dienst-detail__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.dienst-detail--alt .dienst-detail__inner { direction: rtl; }
.dienst-detail--alt .dienst-detail__content { direction: ltr; }
.dienst-detail__img { aspect-ratio: 4/3; overflow: hidden; border-radius: 2px; }
.dienst-detail__img-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.dienst-detail__tag { font-family: var(--ff-sans); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--terracotta); margin-bottom: 12px; display: block; }
.dienst-detail__content h2 { margin-bottom: 16px; }
.dienst-detail__desc { margin-bottom: 20px; }
.dienst-detail__list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.dienst-detail__list li { display: flex; align-items: flex-start; gap: 10px; font-family: var(--ff-sans); font-size: 14px; color: var(--gray); }
.dienst-detail__list li::before { content: '—'; color: var(--terracotta); flex-shrink: 0; }

/* ===== TARIEVEN PAGE ===== */
.tarieven-intro { background: var(--sand); padding: 56px 0; }
.tarieven-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.tarieven-table th { font-family: var(--ff-sans); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); padding: 12px 20px; border-bottom: 2px solid var(--sand); text-align: left; }
.tarieven-table td { font-family: var(--ff-sans); font-size: 15px; color: var(--black); padding: 18px 20px; border-bottom: 1px solid var(--sand); }
.tarieven-table td.price { font-family: var(--ff-serif); font-size: 20px; color: var(--terracotta); font-weight: 700; }
.tarieven-table tr:hover td { background: var(--sand); }
.tarieven-note { font-size: 14px !important; }
.tarieven-note strong { color: var(--black); font-weight: 500; }

/* ===== OVER ONS PAGE ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.value-card { padding: 28px 24px; border: 1px solid var(--sand); }
.value-card__num { font-family: var(--ff-serif); font-size: 40px; color: var(--terracotta); font-weight: 700; line-height: 1; margin-bottom: 12px; }
.value-card__title { font-family: var(--ff-sans); font-size: 16px; font-weight: 500; color: var(--black); margin-bottom: 8px; }
.value-card__desc { font-size: 14px !important; }

/* ===== CONTACT PAGE ===== */
.contact-page { background: var(--anthracite); padding: var(--section-py) 0; }
.contact-page__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; }
.contact-page__info h2 { color: var(--white); margin-bottom: 20px; }
.contact-page__info-text { color: rgba(255,255,255,0.55) !important; margin-bottom: 36px; }
.contact-info-item { margin-bottom: 28px; }
.contact-info-label { display: block; font-family: var(--ff-sans); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 6px; }
.contact-info-value { font-family: var(--ff-sans); font-size: 16px; color: rgba(255,255,255,0.75); }
.contact-info-value a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.contact-info-value a:hover { color: var(--white); }
.contact-hours { font-family: var(--ff-sans); font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .dienst-detail__inner { gap: 48px; }
  .contact-page__inner { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; --nav-h: 64px; }

  /* Nav */
  .navbar__nav, .navbar__actions .btn, .navbar__phone { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 28px 56px; }
  .hero__sub { font-size: 16px !important; }
  .hero__buttons { max-width: 100%; }

  /* Trust */
  .trust__grid { grid-template-columns: 1fr; gap: 28px; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* How */
  .how__steps { grid-template-columns: 1fr; gap: 32px; }
  .how__connector { display: none; }

  /* About */
  .about__inner { grid-template-columns: 1fr; gap: 36px; }
  .about__img { aspect-ratio: 4/3; max-height: 360px; }

  /* Gallery */
  .gallery__grid { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews__grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing__grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Sustain */
  .sustain__pillars { grid-template-columns: 1fr; gap: 16px; }

  /* Contact */
  .contact-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .msform { padding: 28px 22px; }
  .msform__field-row { grid-template-columns: 1fr; }
  .msform__choices { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  /* Mobile bar */
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 56px; }

  /* Sub-pages */
  .dienst-detail__inner { grid-template-columns: 1fr; gap: 32px; }
  .dienst-detail--alt .dienst-detail__inner { direction: ltr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-page__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .about__badges { flex-direction: column; }
  .msform { padding: 22px 18px; }
  .contact-section__phone { font-size: 28px; }
}

/* ===== ECHTE FOTO'S (toegevoegd bij audit-fix) ===== */
.photo-fill { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Hero foto i.p.v. before/after placeholder */
.hero__photo-wrap { position: relative; aspect-ratio: 4/3; border-radius: 2px; overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,0.12); }
.hero__photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__photo-caption { position: absolute; left: 14px; bottom: 14px; background: rgba(26,26,24,0.78); color: #fff; font-family: var(--ff-sans); font-size: 12px; letter-spacing: 0.04em; padding: 7px 14px; border-radius: 2px; }

/* Service-card en dienst-detail foto's vullen de hele container */
.service-card__img img.photo-fill,
.dienst-detail__img img.photo-fill { position: absolute; inset: 0; }
.service-card__img { position: relative; }
.dienst-detail__img { position: relative; }

/* Galerij: enkele foto's i.p.v. nep voor/na */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.work-item { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 2px; background: var(--sand); }
.work-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.work-item:hover img { transform: scale(1.04); }
.work-item__label { position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(to top, rgba(26,26,24,0.82), transparent); color: #fff; font-family: var(--ff-sans); font-size: 13px; font-weight: 500; padding: 22px 14px 12px; }
@media (max-width: 760px) { .work-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }
@media (max-width: 460px) { .work-grid { grid-template-columns: 1fr; } }

/* Over-ons foto */
.about__img img.photo-fill { border-radius: 2px; }

/* Live Google-reviews widget mount */
.reviews-live { margin-top: 40px; }
.reviews-live__title { text-align: center; font-family: var(--ff-sans); font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); margin-bottom: 16px; }
#google-reviews-live:empty { display: none; }

/* ===== AANPASSINGEN FEEDBACKRONDE ===== */
/* Merknaam prominenter bovenin */
.navbar__logo-name { font-size: 26px; color: var(--terracotta); letter-spacing: 0.01em; }
@media (max-width: 600px) { .navbar__logo-name { font-size: 21px; } }

/* Prominente Google-beoordelingsbadge in hero */
.hero__google-badge { display: inline-flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--sand); border-radius: 10px; padding: 11px 18px; box-shadow: 0 6px 18px rgba(0,0,0,0.07); text-decoration: none; margin-bottom: 18px; transition: transform var(--transition), box-shadow var(--transition); }
.hero__google-badge:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,0.10); }
.hero__google-badge .g-logo { width: 26px; height: 26px; flex-shrink: 0; }
.hero__google-badge .g-meta { display: flex; flex-direction: column; line-height: 1.25; }
.hero__google-badge .g-stars { color: #FBBC05; font-size: 16px; letter-spacing: 1px; }
.hero__google-badge .g-stars strong { color: var(--black); font-family: var(--ff-serif); font-size: 17px; margin-left: 6px; }
.hero__google-badge .g-text { font-family: var(--ff-sans); font-size: 12.5px; color: var(--gray); }

/* USP-lijst onder 'Waarom klanten voor ons kiezen' */
.about__usp { list-style: none; margin: 4px 0 22px; display: flex; flex-direction: column; gap: 11px; }
.about__usp li { position: relative; padding-left: 30px; font-family: var(--ff-sans); font-size: 15.5px; color: var(--black); line-height: 1.5; }
.about__usp li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; background: var(--terracotta); color: #fff; border-radius: 50%; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* Geen-voorrijkosten banner */
.no-fee { display: flex; align-items: center; gap: 14px; background: var(--sand); border-left: 4px solid var(--terracotta); border-radius: 0; padding: 18px 22px; margin: 0 0 34px; }
.no-fee__icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--terracotta); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; }
.no-fee__text { font-family: var(--ff-sans); }
.no-fee__text strong { display: block; font-size: 16px; color: var(--black); margin-bottom: 2px; }
.no-fee__text span { font-size: 14px; color: var(--gray); }
