/* ═══════════════════════════════════════════════════
   BBQ Buffet Stijl — Heeren van Hout & Kool
   Landing Page Stylesheet
   ═══════════════════════════════════════════════════

   Layout strategy
   ───────────────
   Section backgrounds are always full-viewport-width.
   Content is constrained to 1600 px via:
     padding: Xpx max(Ypx, calc((100% - 1600px) / 2))
   Below 1744 px the minimum padding (Y) takes over,
   so behaviour on normal screens is unchanged.

   ═══════════════════════════════════════════════════ */

:root {
  /* Light palette */
  --ink:          #FAF6EE;   /* main background            */
  --warm:         #EDE5D4;   /* alternating section BG     */
  --surface:      #FFFFFF;   /* card / panel               */
  --card:         #F5EDE0;   /* form input background      */

  /* Accent colours — same in both light & dark sections */
  --copper:       #BF6128;
  --copper-lt:    #D4753A;
  --amber:        #C58C10;

  /* Light-section text */
  --text:         #1A1208;
  --text-soft:    #4A3828;
  --muted:        #8A7A65;

  /* Buttons / elements that always need near-white */
  --white:        #FAF8F4;

  /* Borders */
  --border:       rgba(191, 97, 40, 0.20);
  --border-hi:    rgba(191, 97, 40, 0.50);

  /* Shadows */
  --shadow-sm:    0 8px 28px  rgba(0, 0, 0, 0.07);
  --shadow-md:    0 16px 52px rgba(0, 0, 0, 0.09);
  --shadow-hero:  0 28px 80px rgba(0, 0, 0, 0.40);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ink);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── TOPBAR ──────────────────────────────────────── */

.topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
  background: rgba(250, 246, 238, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(191, 97, 40, 0.13);
  /* full-width background; content capped at 1600 px */
  padding: 12px max(56px, calc((100% - 1600px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-contact {
  display: flex;
  column-gap: 20px;
}

.topbar-brand {
  font-family: 'Crimson Pro', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.1px;
  white-space: nowrap;
  flex-shrink: 0;
}

.topbar-brand strong { color: var(--copper); }

.topbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

.topbar-phone:hover { color: var(--copper); }

.topbar-phone-icon {
  flex-shrink: 0;
  display: block;
}

.topbar-cta {
  background: var(--copper);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.4px;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.topbar-cta:hover { background: var(--copper-lt); }

/* ── HERO — dark theme ───────────────────────────── */

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.28;
}

.hero {
  /* full-width dark background */
  background: #1A1208;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  /* outer padding centres the grid at 1600 px on wide screens */
  padding-left:  max(0px, calc((100% - 1600px) / 2));
  padding-right: max(0px, calc((100% - 1600px) / 2));
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%; left: -8%;
  width: 65%; height: 110%;
  background: radial-gradient(ellipse at 45% 55%,
    rgba(191, 97, 40, 0.13) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 52px,
    rgba(255, 255, 255, 0.013) 52px,
    rgba(255, 255, 255, 0.013) 53px
  );
  pointer-events: none;
}

/* ── EMBER PARTICLES ─────────────────────────────── */

.embers-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.ember-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: ember-rise var(--dur, 5s) var(--delay, 0s) ease-out infinite;
}

@keyframes ember-rise {
  0%   { opacity: 0;    transform: translateY(0)      translateX(0)                  scale(1);   }
  15%  { opacity: 0.85; }
  80%  { opacity: 0.15; }
  100% { opacity: 0;    transform: translateY(-220px) translateX(var(--drift, 20px)) scale(0.2); }
}

/* ── HERO LEFT — copy (on dark) ──────────────────── */

.hero-left {
  padding: 80px 52px 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.eyebrow-line {
  height: 1px;
  width: 36px;
  background: linear-gradient(to right, transparent, var(--copper-lt));
  flex-shrink: 0;
}

.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--copper-lt);
  white-space: nowrap;
}

.hero-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  font-size: clamp(54px, 7.2vw, 100px);
  line-height: 0.88;
  letter-spacing: -3px;
  color: #F0E8D4;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-headline .serif-line {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.48em;
  text-transform: none;
  letter-spacing: 0.5px;
  color: var(--copper-lt);
  display: block;
  line-height: 1.4;
  margin-top: 10px;
}

.hero-desc {
  font-family: 'Crimson Pro', serif;
  font-size: 17px;
  line-height: 1.72;
  color: #F0E8D4;
  max-width: 430px;
  margin-bottom: 32px;
}

.hero-usps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-usp {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13.5px;
  color: #F0E8D4;
  font-weight: 300;
}

.usp-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper-lt);
  flex-shrink: 0;
}

.price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(191, 97, 40, 0.12);
  border: 1px solid rgba(191, 97, 40, 0.30);
  border-radius: 4px;
  padding: 10px 20px;
  width: fit-content;
  transition: border-color 0.2s;
}

.price-badge:hover { border-color: rgba(191, 97, 40, 0.55); }

.price-from {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #F0E8D4;
}

.price-amount {
  font-family: 'Archivo Black', sans-serif;
  font-size: 34px;
  font-weight: 400;
  color: #D4A020;
  line-height: 1;
  letter-spacing: -1px;
}

.price-per {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 15px;
  color: #F0E8D4;
}

/* ── HERO RIGHT — form (white card on dark) ──────── */

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 72px 64px 40px;
  position: relative;
  z-index: 2;
}

.form-card {
  background: var(--surface);
  border: 1px solid rgba(191, 97, 40, 0.18);
  border-radius: 14px;
  padding: 40px 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-hero);
  position: relative;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 36px; right: 36px;
  height: 2px;
  background: linear-gradient(to right,
    transparent, var(--copper) 40%, var(--amber) 60%, transparent);
  border-radius: 0 0 2px 2px;
}

.form-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}

.form-card h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}

.form-card-sub {
  font-family: 'Crimson Pro', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.55;
}

.urgency-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(197, 140, 16, 0.08);
  border: 1px solid rgba(197, 140, 16, 0.25);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 11.5px;
  color: #9A6800;
  font-weight: 500;
  margin-bottom: 24px;
}

.urgency-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  animation: pulse-amber 1.8s ease-in-out infinite;
}

@keyframes pulse-amber {
  0%, 100% { opacity: 1;    transform: scale(1);   }
  50%       { opacity: 0.3; transform: scale(1.5); }
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(191, 97, 40, 0.12);
  background: var(--surface);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238A7A65' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-group select option { background: var(--surface); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 72px; }

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

.btn-submit {
  width: 100%;
  background: var(--copper);
  color: var(--white);
  border: none;
  border-radius: 5px;
  padding: 14px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 6px;
}

.btn-submit:hover  { background: var(--copper-lt); transform: translateY(-1px); }
.btn-submit:active { transform: translateY(0); }

.form-privacy {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.55;
}

.form-success { display: none; text-align: center; padding: 24px 0 12px; }
.form-success-icon { font-size: 44px; margin-bottom: 16px; display: block; }

.form-success h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.form-success p {
  font-family: 'Crimson Pro', serif;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── MARQUEE — full-width copper band ────────────── */

.marquee-strip {
  background: var(--copper);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 35s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.marquee-sep { color: rgba(255, 255, 255, 0.35); font-size: 7px; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION PRIMITIVES ──────────────────────────── */

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--copper);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 400;
  color: var(--text);
  line-height: 0.95;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title em {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 0.6em;
  font-weight: 400;
  color: var(--copper);
  text-transform: none;
  letter-spacing: 0.3px;
  display: block;
  line-height: 1.5;
  margin-top: 6px;
}

.section-desc {
  font-family: 'Crimson Pro', serif;
  font-size: 17px;
  color: var(--text-soft);
  max-width: 540px;
  line-height: 1.7;
}

.section-header { margin-bottom: 56px; }

/* ── INCLUDES — light section ────────────────────── */

.section-includes {
  background: var(--ink);
  padding: 104px max(72px, calc((100% - 1600px) / 2));
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  overflow: hidden;
}

.include-item {
  background: var(--warm);
  padding: 36px 30px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.include-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--copper), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.include-item:hover { background: var(--surface); }
.include-item:hover::before { transform: scaleX(1); }

.include-icon { font-size: 30px; display: block; margin-bottom: 16px; }

.include-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  color: var(--text);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.include-desc {
  font-family: 'Crimson Pro', serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── REVIEWS ─────────────────────────────────────── */

.section-reviews {
  background: var(--warm);
  padding: 104px max(72px, calc((100% - 1600px) / 2));
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.review-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 36px 30px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.review-stars {
  color: var(--amber);
  line-height: 0;
}

.review-text {
  font-family: 'Crimson Pro', serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
  font-style: italic;
  flex: 1;
  quotes: none;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  gap: 12px;
}

.review-author {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.review-source {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

/* ── GALLERY ─────────────────────────────────────── */

.section-gallery {
  background: var(--ink);
  padding: 0 max(72px, calc((100% - 1600px) / 2)) 88px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
  border-radius: 14px;
  overflow: hidden;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item--main {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ── PRICE CALLOUT — dark section ────────────────── */

.section-price {
  background: #1A1208;
  padding: 88px max(72px, calc((100% - 1600px) / 2));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-price::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(191, 97, 40, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.price-display { position: relative; z-index: 1; }

.price-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #7A6A52;
  margin-bottom: 16px;
}

.price-mega {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 400;
  color: #F0E8D4;
  letter-spacing: -6px;
  line-height: 0.85;
  margin-bottom: 10px;
}

.price-mega .euro {
  color: var(--copper-lt);
  font-size: 0.55em;
  vertical-align: top;
  letter-spacing: -2px;
  margin-top: 12px;
  display: inline-block;
}

.price-unit {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 22px;
  color: #C4B49E;
  margin-bottom: 12px;
}

.price-note { font-size: 13px; color: #7A6A52; margin-bottom: 40px; line-height: 1.6; }

.btn-price {
  display: inline-block;
  background: var(--copper);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 52px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: background 0.2s, transform 0.15s;
}

.btn-price:hover { background: var(--copper-lt); transform: scale(1.025); }

/* ── BBQ TYPES — warm section ────────────────────── */

.section-types {
  background: var(--warm);
  padding: 104px max(72px, calc((100% - 1600px) / 2));
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.type-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 40px 30px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.type-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--copper), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.type-card:hover {
  transform: translateY(-5px);
  border-color: rgba(191, 97, 40, 0.25);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.09);
}

.type-card:hover::after { transform: scaleX(1); }

.type-icon {
  display: block;
  margin-bottom: 22px;
  color: var(--copper);
  line-height: 0;
}

.type-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

.type-desc {
  font-family: 'Crimson Pro', serif;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── HOW IT WORKS — light section ────────────────── */

.section-how {
  background: var(--ink);
  padding: 104px max(72px, calc((100% - 1600px) / 2));
  position: relative;
  overflow: hidden;
}

.section-how::before {
  content: '';
  position: absolute;
  top: 0; right: -100px;
  width: 500px; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(191, 97, 40, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 64px;
  position: relative;
}

.steps-list::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 1px;
  background: linear-gradient(to right, var(--copper), var(--amber));
  opacity: 0.25;
}

.step-item { text-align: center; }

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Crimson Pro', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--copper);
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
  transition: border-color 0.2s, background 0.2s;
}

.step-item:hover .step-num {
  border-color: var(--copper);
  background: rgba(191, 97, 40, 0.07);
}

.step-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.step-desc {
  font-family: 'Crimson Pro', serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── FAQ — warm, centered ────────────────────────── */

.section-faq {
  background: var(--warm);
  padding: 104px max(72px, calc((100% - 1600px) / 2));
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-faq .section-header {
  width: 100%;
  text-align: center;
  margin-bottom: 48px;
}

.section-faq .section-label {
  justify-content: center;
}

/* Replace the left-only line with lines on both sides */
.section-faq .section-label::before { display: none; }
.section-faq .section-label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--copper);
  flex-shrink: 0;
}

.section-faq .section-title  { text-align: center; }
.section-faq .section-desc   { margin-left: auto; margin-right: auto; text-align: center; }

.faq-list {
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.faq-item {
  background: var(--surface);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}

.faq-item:hover { border-color: rgba(191, 97, 40, 0.30); }
.faq-item.open  { border-color: rgba(191, 97, 40, 0.40); }

.faq-q {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

.faq-q-text { font-size: 14px; font-weight: 500; color: var(--text); letter-spacing: -0.1px; }

.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  font-size: 17px;
  flex-shrink: 0;
  transition: transform 0.25s, background 0.2s, border-color 0.2s;
  line-height: 1;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--copper);
  border-color: var(--copper);
  color: var(--white);
}

.faq-a {
  font-family: 'Crimson Pro', serif;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 22px;
}

.faq-item.open .faq-a { max-height: 250px; padding: 0 22px 20px; }

/* ── BOTTOM CTA — dark section ───────────────────── */

.section-cta {
  background: #1A1208;
  padding: 104px max(72px, calc((100% - 1600px) / 2));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  bottom: -120px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(191, 97, 40, 0.14) 0%, transparent 60%);
  pointer-events: none;
}

.cta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--copper-lt);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cta-label::before, .cta-label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--copper);
  flex-shrink: 0;
}

.cta-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 400;
  color: #F0E8D4;
  letter-spacing: -2.5px;
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.cta-sub {
  font-family: 'Crimson Pro', serif;
  font-size: 18px;
  font-style: italic;
  color: #C4B49E;
  max-width: 460px;
  margin: 0 auto 44px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.btn-cta {
  display: inline-block;
  background: var(--copper);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 60px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  position: relative;
  z-index: 1;
}

.btn-cta:hover { background: var(--copper-lt); transform: scale(1.025); }

/* ── FOOTER — dark ───────────────────────────────── */

.footer {
  background: #0C0906;
  padding: 28px max(72px, calc((100% - 1600px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand { font-family: 'Crimson Pro', serif; font-size: 16px; font-weight: 600; color: #C4B49E; }
.footer-brand strong { color: var(--copper-lt); }

.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }

.footer-links a { font-size: 12px; color: #7A6A52; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #C4B49E; }

/* ── SCROLL REVEALS ──────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].visible { opacity: 1; transform: none; }

[data-delay="1"] { transition-delay: 0.10s; }
[data-delay="2"] { transition-delay: 0.20s; }
[data-delay="3"] { transition-delay: 0.30s; }
[data-delay="4"] { transition-delay: 0.40s; }
[data-delay="5"] { transition-delay: 0.50s; }
[data-delay="6"] { transition-delay: 0.60s; }

/* ── RESPONSIVE ──────────────────────────────────── */

@media (max-width: 1080px) {
  .topbar { padding: 12px 32px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-left  { padding: 64px 36px 52px; }
  .hero-right { padding: 0 36px 64px; justify-content: stretch; }
  .form-card  { max-width: 100%; }

  .section-includes,
  .section-price,
  .section-types,
  .section-how,
  .section-faq,
  .section-reviews,
  .section-cta { padding: 72px 36px; }

  .section-gallery { padding: 0 36px 72px; }

  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }

  .footer { padding: 24px 36px; }

  .includes-grid   { grid-template-columns: 1fr 1fr; }
  .types-grid      { grid-template-columns: 1fr 1fr; }
  .steps-list      { grid-template-columns: 1fr 1fr; }
  .steps-list::before { display: none; }
  .section-header  { margin-bottom: 44px; }
}

@media (max-width: 680px) {
  .topbar       { padding: 10px 20px; }
  .topbar-phone { display: none; }   /* phone hidden — only logo + CTA */
  .topbar-cta   { display: none; }   /* CTA too wide on small screens  */

  .hero-left  { padding: 52px 22px 40px; }
  .hero-right { padding: 0 22px 52px; }

  .section-includes,
  .section-price,
  .section-types,
  .section-how,
  .section-faq,
  .section-reviews,
  .section-cta { padding: 60px 22px; }

  .section-gallery { padding: 0 22px 60px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 200px 200px;
  }

  .gallery-item--main { grid-row: auto; }

  .footer        { padding: 20px 22px; }
  .includes-grid { grid-template-columns: 1fr; }
  .types-grid    { grid-template-columns: 1fr; }
  .price-mega    { letter-spacing: -3px; }
}

@media (max-width: 480px) {
  .steps-list { grid-template-columns: 1fr; }
  .form-row   { grid-template-columns: 1fr; }

  .hero-headline {
    letter-spacing: -2px;
    font-size: clamp(48px, 14vw, 72px);
  }

  .cta-title { letter-spacing: -1.5px; }
}
