/* ═══════════════════════════════════════════════════════
   AFWERKMEESTER — PREMIUM DESIGN SYSTEM
   ═══════════════════════════════════════════════════════ */

:root {
  color-scheme: light;

  /* Color palette */
  --bg: #faf8f5;
  --surface: #ffffff;
  --surface-alt: #f5f0ea;
  --surface-strong: #ede5d8;
  --text: #1a1714;
  --text-soft: #6b6158;
  --text-muted: #9b9189;
  --line: rgba(55, 40, 22, 0.1);
  --line-strong: rgba(55, 40, 22, 0.18);

  /* Accent colors */
  --accent: #c17a2a;
  --accent-deep: #8f5a18;
  --accent-light: #e8a54e;
  --accent-soft: rgba(193, 122, 42, 0.1);
  --accent-softer: rgba(193, 122, 42, 0.06);

  /* Dark section */
  --dark-bg: #1a1714;
  --dark-surface: #252118;
  --dark-text: #f5f0ea;
  --dark-text-soft: #b5a998;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(26, 23, 20, 0.04);
  --shadow-sm: 0 4px 12px rgba(26, 23, 20, 0.06);
  --shadow-md: 0 12px 32px rgba(26, 23, 20, 0.08);
  --shadow-lg: 0 24px 56px rgba(26, 23, 20, 0.12);
  --shadow-xl: 0 40px 80px rgba(26, 23, 20, 0.16);
  --shadow-accent: 0 16px 40px rgba(193, 122, 42, 0.25);
  --shadow-accent-lg: 0 24px 56px rgba(193, 122, 42, 0.3);

  /* Layout */
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 1.75rem;
  --radius-xl: 2.25rem;
  --radius-pill: 999px;
  --container: min(1200px, calc(100vw - 2rem));
  --section-space: clamp(5rem, 8vw, 8rem);
  --transition: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════ RESET ═══════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

:focus-visible {
  outline: 3px solid rgba(193, 122, 42, 0.4);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--text); color: #fff;
  padding: 0.75rem 1rem; border-radius: var(--radius-pill);
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

/* ═══════ LAYOUT ═══════ */
.container { width: var(--container); margin-inline: auto; }
.section-padding { padding-block: var(--section-space); }

.section-surface {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(245, 240, 234, 0.85)),
    var(--surface-alt);
}

/* ═══════ TYPOGRAPHY ═══════ */
.section-heading { max-width: 44rem; margin-bottom: 3rem; }
.section-heading-center { margin-inline: auto; text-align: center; }

.section-heading h2,
.hero-copy h1 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 700;
}

.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-heading p,
.hero-intro,
.service-content p,
.value-card p,
.process-card p,
.area-card p,
.contact-copy p,
.trust-copy p,
.faq-item p {
  color: var(--text-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.2rem;
  color: var(--accent-deep);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
}

.eyebrow-light { color: var(--accent-light); }
.eyebrow-light::before { background: linear-gradient(90deg, var(--accent-light), var(--accent)); }

/* ═══════ HEADER ═══════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: 0.75rem;
  background: transparent;
  transition: background var(--transition-slow);
}

.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(250, 248, 245, 0.95), rgba(250, 248, 245, 0.6) 85%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.2rem;
  padding: 0.65rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-slow);
}

.is-scrolled .nav-shell {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(55, 40, 22, 0.08);
  box-shadow: var(--shadow-md);
}

/* Nav links white on hero */
.site-header:not(.is-scrolled) .site-nav a:not(.button) { color: rgba(255, 255, 255, 0.85); }
.site-header:not(.is-scrolled) .site-nav a:not(.button):hover { color: #fff; }
.site-header:not(.is-scrolled) .nav-toggle { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); }
.site-header:not(.is-scrolled) .nav-toggle span { background: #fff; }
.site-header:not(.is-scrolled) .brand-text { color: #fff; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.brand-text:hover {
  opacity: 0.9;
}

.brand-highlight {
  color: #dca34f; /* Goud van .accent of icon */
}

.site-nav { display: flex; align-items: center; gap: 0.8rem; }
.site-nav a:not(.button) {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.site-nav a:not(.button):hover { color: var(--text); }
.site-nav a:not(.button)::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
  border-radius: 2px;
}
.site-nav a:not(.button):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  margin-block: 3px; background: var(--text); border-radius: 999px;
}

/* ═══════ BUTTONS ═══════ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.2rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition);
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button-lg { min-height: 3.6rem; padding: 0.85rem 2rem; font-size: 1rem; }

.button-primary {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 40%, var(--accent-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.button-primary:hover { box-shadow: var(--shadow-accent-lg); }

.button-secondary {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 240, 234, 0.9));
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.button-secondary:hover { box-shadow: var(--shadow-md); }

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-block { width: 100%; }

/* ═══════ FULLSCREEN HERO ═══════ */
.hero-fullscreen {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(26, 23, 20, 0.35) 0%,
      rgba(26, 23, 20, 0.55) 40%,
      rgba(26, 23, 20, 0.75) 70%,
      rgba(26, 23, 20, 0.85) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 7rem;
  padding-bottom: 3rem;
  max-width: 52rem;
  margin-inline: auto;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 8px rgba(232, 165, 78, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

/* Hero title */
.hero-title {
  margin: 0 0 1.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-light), #e8a54e, #daa060);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero subtitle */
.hero-subtitle {
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

/* Hero actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-btn { min-width: 200px; }

/* Hero stats on fullscreen */
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 140px;
}

.hero-stat strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
  color: #fff;
  display: inline;
}

.hero-stat > span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-light);
  display: inline;
  margin-left: -2px;
}

.hero-stat p {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.hero-scroll-mouse {
  width: 1.6rem;
  height: 2.6rem;
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  justify-content: center;
  padding-top: 0.4rem;
}

.hero-scroll-mouse span {
  display: block;
  width: 3px;
  height: 0.6rem;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.7);
  animation: scroll-mouse 2s ease-in-out infinite;
}

@keyframes scroll-mouse {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}

.hero-scroll-indicator p {
  margin: 0;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* ═══════ STATS BAND ═══════ */
.stats-band {
  padding: 2.5rem 0;
  background: var(--dark-bg);
  overflow: hidden;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

.stat-icon {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: rgba(193, 122, 42, 0.15);
  color: var(--accent-light);
  margin-bottom: 0.3rem;
}

.stat-item strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}

.stat-item span {
  font-size: 0.82rem;
  color: var(--dark-text-soft);
  font-weight: 500;
}

/* ═══════ SERVICE CARDS ═══════ */
.service-grid,
.value-grid,
.process-grid,
.trust-grid,
.projects-grid,
.reviews-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card,
.value-card,
.process-card,
.calculator-card,
.calculator-note-card,
.area-card,
.faq-item,
.contact-panel,
.contact-form,
.trust-card,
.calculator-summary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card,
.trust-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.service-card { display: grid; position: relative; }

.card-icon {
  position: absolute; top: 1.25rem; left: 1.25rem; z-index: 2;
  display: grid; place-items: center;
  width: 3rem; aspect-ratio: 1;
  border-radius: 0.85rem;
  background: rgba(255, 250, 244, 0.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.card-icon svg {
  width: 1.5rem; height: 1.5rem;
  fill: none; stroke: var(--accent-deep);
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.service-media { aspect-ratio: 1.45; overflow: hidden; }
.service-media img, .trust-card img { height: 100%; object-fit: cover; transition: transform 600ms ease; }
.service-card:hover .service-media img { transform: scale(1.04); }

.service-content, .trust-copy { padding: 1.6rem; }
.service-content h3 {
  margin: 0 0 0.65rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
}

.service-features {
  margin: 1rem 0 1.5rem;
  padding: 0;
  list-style: none;
}
.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  color: var(--text-soft);
}
.service-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.service-cta { width: 100%; }

/* ═══════ PROJECTS ═══════ */
.projects-grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.project-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.project-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.project-card:hover .project-image img { transform: scale(1.06); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26, 23, 20, 0.5) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.project-tag {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.78rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
}

.project-info {
  padding: 1.3rem 1.4rem;
}
.project-info h3 {
  margin: 0 0 0.4rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
}
.project-info p {
  margin: 0 0 0.8rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.project-meta {
  display: flex;
  gap: 1.2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.projects-cta {
  text-align: center;
  margin-top: 3rem;
}
.projects-cta p {
  color: var(--text-soft);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* ═══════ DARK SECTION (WHY US) ═══════ */
.section-dark {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(193, 122, 42, 0.08), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(193, 122, 42, 0.05), transparent 50%),
    var(--dark-bg);
  color: var(--dark-text);
}

.section-dark .section-heading p { color: var(--dark-text-soft); }
.section-dark .section-heading h2 { color: #fff; }

.value-card {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.section-dark .value-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.section-dark .value-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(193, 122, 42, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.value-icon {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.85rem;
  background: rgba(193, 122, 42, 0.12);
  color: var(--accent-light);
  margin-bottom: 1.2rem;
}

.value-card h3 {
  margin: 0 0 0.6rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
}

.section-dark .value-card p { color: var(--dark-text-soft); }

/* ═══════ PROCESS ═══════ */
.process-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  text-align: center;
}
.process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  min-height: 3.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-deep));
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-accent);
}

.process-line {
  width: 2px;
  height: 1.5rem;
  background: linear-gradient(180deg, var(--accent), transparent);
  margin: 0 auto 1rem;
  border-radius: 2px;
}

.process-card h3 {
  margin: 0 0 0.6rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
}

.process-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ═══════ REVIEWS ═══════ */
.reviews-grid { gap: 1.5rem; }

.review-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.review-card-featured {
  background: linear-gradient(135deg, rgba(193, 122, 42, 0.04), rgba(193, 122, 42, 0.08));
  border-color: rgba(193, 122, 42, 0.2);
}

.review-stars {
  color: var(--accent);
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-card blockquote {
  margin: 0;
  flex: 1;
}
.review-card blockquote p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-deep));
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
}

.review-author strong { display: block; font-size: 0.95rem; }
.review-author span { font-size: 0.82rem; color: var(--text-soft); }

.review-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--dark-bg);
  color: #fff;
}

.review-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
}
.review-trust-item strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
}
.review-trust-item span { font-size: 0.82rem; color: var(--dark-text-soft); }

.review-mini-stars { color: var(--accent-light); font-size: 0.9rem; letter-spacing: 2px; }
.review-trust-divider {
  width: 1px;
  height: 3rem;
  background: rgba(255, 255, 255, 0.12);
}

/* ═══════ CALCULATOR ═══════ */
.calculator-section { position: relative; }
.calculator-section::before {
  content: "";
  position: absolute;
  right: 0; top: 7rem;
  width: min(28rem, 45vw);
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 122, 42, 0.08), transparent 70%);
  pointer-events: none;
}

.calculator-grid,
.contact-grid,
.area-grid,
.hero-grid {
  display: grid;
  gap: 2rem;
}

.calculator-copy, .calculator-card { position: relative; z-index: 1; }

.calculator-note-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(193, 122, 42, 0.04), rgba(193, 122, 42, 0.08));
  border: 1px solid rgba(193, 122, 42, 0.12);
  margin-top: 1.5rem;
}
.calculator-note-card strong { display: block; margin-bottom: 0.6rem; }
.calculator-note-card ul {
  margin: 0; padding-left: 1.1rem;
  color: var(--text-soft);
}
.calculator-note-card li { margin-bottom: 0.4rem; }
.calculator-note-card li strong { display: inline; color: var(--accent-deep); }

.calculator-guarantee {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.9rem;
}
.calculator-guarantee svg { color: var(--accent); }

.calculator-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.service-switcher {
  margin: 0 0 1.5rem;
  padding: 0;
  border: 0;
  display: grid;
  gap: 0.6rem;
}
.service-switcher legend { margin-bottom: 0.8rem; font-weight: 800; }
.service-switcher label { position: relative; }
.service-switcher input { position: absolute; opacity: 0; pointer-events: none; }

.service-switcher span {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
}
.service-switcher span:hover { border-color: var(--accent); }

.service-switcher input:checked + span {
  border-color: rgba(193, 122, 42, 0.4);
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.98), rgba(243, 228, 210, 0.95));
  box-shadow: 0 12px 28px rgba(193, 122, 42, 0.12);
  transform: translateY(-2px);
}

.field-grid { display: grid; gap: 1rem; }
.field { display: grid; gap: 0.4rem; }
.field span { font-weight: 700; font-size: 0.92rem; }

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.85rem 1rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field textarea { resize: vertical; min-height: 9rem; }

.field input:focus,
.field textarea:focus {
  border-color: rgba(193, 122, 42, 0.5);
  box-shadow: 0 0 0 4px rgba(193, 122, 42, 0.08);
  outline: none;
}
.field-full { grid-column: 1 / -1; }

.calculator-output {
  margin-block: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 238, 228, 0.9));
  border: 1px solid var(--line);
}

.output-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}

#total-price {
  display: block;
  margin-top: 0.4rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1;
  color: var(--accent-deep);
}

.breakdown-list {
  display: grid; gap: 0.55rem;
  margin: 1rem 0 0; padding: 0; list-style: none;
}
.breakdown-list li {
  display: flex; align-items: baseline;
  justify-content: space-between; gap: 1rem;
  color: var(--text-soft); font-size: 0.92rem;
}
.breakdown-list strong { color: var(--text); }

.calculator-disclaimer {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

/* ═══════ CTA BAND ═══════ */
.cta-band {
  padding: 4rem 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(193, 122, 42, 0.15), transparent 60%),
    linear-gradient(135deg, var(--dark-bg) 0%, #2a2420 100%);
  color: #fff;
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.cta-band-copy h2 {
  margin: 0 0 0.8rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.cta-band-copy p { margin: 0; color: var(--dark-text-soft); max-width: 40rem; font-size: 1.1rem; }

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ═══════ CITY LIST ═══════ */
.area-card {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
}
.area-card h3 { margin: 0 0 1rem; font-family: 'Playfair Display', Georgia, serif; }

.city-list {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  padding: 0; list-style: none;
}
.city-list li {
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(193, 122, 42, 0.06);
  border: 1px solid rgba(193, 122, 42, 0.12);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.city-list li:hover {
  background: rgba(193, 122, 42, 0.12);
  border-color: rgba(193, 122, 42, 0.25);
  transform: translateY(-2px);
}

/* ═══════ FAQ ═══════ */
.faq-list { display: grid; gap: 0.8rem; max-width: 48rem; margin-inline: auto; }

.faq-item {
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item[open] { background: #fff; border-color: rgba(193, 122, 42, 0.15); }

.faq-item summary {
  position: relative;
  padding-right: 2.5rem;
  list-style: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute; right: 0; top: 0;
  display: grid; place-items: center;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 1.2rem; font-weight: 700;
  line-height: 1;
  transition: transform var(--transition), background var(--transition);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: rgba(193, 122, 42, 0.18);
}
.faq-item p { margin: 1rem 0 0; }

/* ═══════ CONTACT ═══════ */
.contact-panel {
  display: grid;
  gap: 0.8rem;
  margin-block: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
}
.contact-method svg { color: var(--accent); flex-shrink: 0; }
.contact-method a { font-weight: 700; transition: color var(--transition); }
.contact-method a:hover { color: var(--accent); }

.contact-form {
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.calculator-summary {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(243, 228, 210, 0.92));
}

/* ═══════ FOOTER ═══════ */
.site-footer {
  padding: 3rem 0 7rem;
  background: var(--dark-bg);
  color: var(--dark-text);
}

.footer-inner {
  display: grid;
  gap: 2rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
}
.site-footer .brand-text {
  color: #fff;
}
.footer-brand .brand-mark { width: 2.4rem; font-size: 1.2rem; border-radius: 0.7rem; }
.footer-brand strong { display: block; font-size: 1rem; }
.footer-brand span { font-size: 0.82rem; color: var(--dark-text-soft); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}
.footer-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-text-soft);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent-light); }

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}
.footer-contact a {
  font-weight: 700;
  color: var(--accent-light);
  transition: color var(--transition);
}
.footer-contact a:hover { color: #fff; }

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dark-text-soft);
}

/* ═══════ MOBILE CTA ═══════ */
.mobile-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}

/* ═══════ ANIMATIONS ═══════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.delay-1 { transition-delay: 100ms; }
.reveal.delay-2 { transition-delay: 200ms; }
.reveal.delay-3 { transition-delay: 300ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Scroll margin */
#services, #projects, #why-us, #process, #reviews,
#calculator, #service-area, #faq, #contact {
  scroll-margin-top: 6rem;
}

/* ═══════ RESPONSIVE ═══════ */
@media (min-width: 640px) {
  .field-grid,
  .service-switcher,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-switcher {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats-inner { grid-template-columns: repeat(4, 1fr); }

  .reviews-grid { grid-template-columns: repeat(3, 1fr); }

  .hero-stats { gap: 1rem; }
}

@media (min-width: 768px) {
  .service-grid,
  .value-grid,
  .process-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calculator-grid,
  .contact-grid,
  .area-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .calculator-card {
    position: sticky;
    top: 7rem;
    align-self: start;
  }
}

@media (min-width: 960px) {
  .service-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
  }
  .service-media { aspect-ratio: auto; min-height: 100%; }

  .value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .site-footer { padding-bottom: 2rem; }
  .mobile-cta { display: none; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

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

  .site-nav {
    position: absolute;
    left: 1rem; right: 1rem;
    top: calc(100% + 0.5rem);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.4rem);
    transition: opacity var(--transition), transform var(--transition);
  }

  .site-header[data-nav-open="true"] .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a:not(.button)::after { display: none; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 639.98px) {
  .nav-shell {
    min-height: 4.2rem;
    padding: 0.5rem 1rem;
  }
  .brand-text {
    font-size: 1.4rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .hero-stat { padding: 0.7rem 0.5rem; min-width: auto; }
  .hero-stat strong { font-size: 1.5rem; }
  .hero-stat > span { font-size: 1rem; }

  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-btn { min-width: unset; width: 100%; }
  .hero-scroll-indicator { display: none; }

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

  .review-trust-divider { display: none; }
  .review-trust-bar { gap: 1.5rem; }
}

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

/* ═══════ COOKIE BANNER ═══════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem;
  background: transparent;
  pointer-events: none;
}
.cookie-banner[hidden] {
  display: none !important;
}

.cookie-content {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  pointer-events: auto;
  margin-inline: auto;
  max-width: 600px;
}

.cookie-text strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.cookie-text p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1;
  padding: 0.6rem;
  min-height: 2.8rem;
  min-width: 120px;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
}

@media (min-width: 600px) {
  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
  }
  .cookie-text {
    flex: 1;
    max-width: 60%;
  }
  .cookie-actions {
    flex: 0 0 auto;
    width: auto;
  }
}
