/* =============================================
   H&K Gulventreprise — Design System
   ============================================= */

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

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #A07830;
  --oak:         #6B4226;
  --oak-light:   #8B5A3A;
  --cream:       #FAF7F2;
  --charcoal:    #1A1A18;
  --charcoal-mid:#2D2D2A;
  --graphite:    #4A4A46;
  --warm-white:  #FFFEF9;
  --border:      rgba(201,168,76,0.22);
  --shadow:      0 8px 40px rgba(26,26,24,0.10);
  --shadow-lg:   0 20px 80px rgba(26,26,24,0.18);
  --radius:      4px;
  --radius-lg:   10px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ─────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--graphite); line-height: 1.75; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── LAYOUT ─────────────────────────────────── */
.container   { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section     { padding: 5rem 0; }
.section-lg  { padding: 7rem 0; }

.section-header         { max-width: 680px; }
.section-header.centered{ text-align: center; margin: 0 auto; }
.section-header h2      { margin-bottom: 0.75rem; }
.section-header p       { font-size: 1.05rem; }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: all var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--charcoal); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-dark    { background: var(--charcoal); color: var(--warm-white); border-color: var(--charcoal); }
.btn-dark:hover { background: var(--charcoal-mid); color: var(--warm-white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--warm-white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--warm-white); color: var(--warm-white); }

/* ── FADE IN ─────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── ALERT BANNER ────────────────────────────── */
.alert-banner {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.83rem;
  letter-spacing: 0.02em;
}
.alert-banner a { color: var(--gold); font-weight: 600; }

/* ── NAVBAR ──────────────────────────────────── */
#navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,254,249,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: 0 4px 30px rgba(26,26,24,0.09); }

.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; flex-shrink: 0;
}
.logo-mark { width: 40px; height: 40px; flex-shrink: 0; }
.logo-text  { display: flex; flex-direction: column; line-height: 1.15; }
.logo-main  { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--charcoal); }
.logo-sub   { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

.nav-links { display: flex; list-style: none; align-items: center; gap: 0.25rem; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--charcoal);
  text-decoration: none; padding: 0.45rem 0.85rem; border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover         { background: var(--cream); color: var(--gold); }
.nav-links a[aria-current] { color: var(--gold); }
.nav-links .nav-cta        { background: var(--gold); color: var(--charcoal) !important; font-weight: 700; padding: 0.45rem 1.1rem; }
.nav-links .nav-cta:hover  { background: var(--gold-light); }

.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer; padding: 0.4rem;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: var(--transition); }

/* ── MOBILE NAV ──────────────────────────────── */
.mobile-nav {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--charcoal);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 0.75rem;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: none; }
.mobile-nav a {
  font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700;
  color: var(--warm-white); text-decoration: none;
  transition: color var(--transition); padding: 0.3rem 0;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.2rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* ── BREADCRUMB ──────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem; font-family: 'DM Mono', monospace;
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span[aria-current] { color: var(--gold); }

/* ── PAGE HEADER ─────────────────────────────── */
.page-header {
  background: var(--charcoal);
  padding: 5rem 0 4rem;
}
.page-header h1 { color: var(--warm-white); margin-bottom: 1rem; }
.page-header p  { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 600px; }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: center;
  background: var(--charcoal); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: 6rem 2rem 4rem;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.78rem; font-family: 'DM Mono', monospace; letter-spacing: 0.1em;
  margin-bottom: 1.75rem;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

.hero h1 { color: var(--warm-white); margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero > .hero-content > p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 560px; margin-bottom: 2.25rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid rgba(201,168,76,0.2);
}
.stat-item .number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-item .label  { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 0.2rem; font-family: 'DM Mono', monospace; letter-spacing: 0.08em; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.25); font-size: 0.7rem; font-family: 'DM Mono', monospace; letter-spacing: 0.15em;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(201,168,76,0.5), transparent); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(0.5);opacity:0.3} }

/* ── SERVICES GRID ───────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(201,168,76,0.45); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 0.6rem; font-size: 1.3rem; color: var(--charcoal); }
.service-card p  { flex: 1; margin-bottom: 1.5rem; font-size: 0.93rem; }
.service-card .btn { margin-top: auto; align-self: flex-start; }

/* ── WHY US GRID ─────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.floor-preview {
  aspect-ratio: 1;
  background:
    repeating-linear-gradient(0deg, #b8894a 0, #b8894a 58px, #a07840 58px, #a07840 60px, #c4a460 60px, #c4a460 118px, #a07840 118px, #a07840 120px),
    repeating-linear-gradient(90deg, transparent 0, transparent 118px, rgba(0,0,0,0.06) 118px, rgba(0,0,0,0.06) 120px);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.floor-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold); border-radius: 50%; width: 110px; height: 110px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}
.floor-badge .years       { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--charcoal); line-height: 1; }
.floor-badge .years-label { font-size: 0.62rem; font-family: 'DM Mono', monospace; color: rgba(26,26,24,0.7); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; }

.why-points { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.why-point  { display: flex; gap: 1rem; align-items: flex-start; }
.wp-icon    { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.why-point h4 { margin-bottom: 0.25rem; }

/* ── PROCESS ─────────────────────────────────── */
.process-section { background: var(--charcoal); padding: 5rem 0; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  margin-top: 3rem; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: calc(12.5% + 14px); right: calc(12.5% + 14px);
  height: 1px; background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-dark));
  opacity: 0.35;
}
.process-step { text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.15);
}
.process-step h4 { color: var(--warm-white); margin-bottom: 0.5rem; }
.process-step p  { color: rgba(255,255,255,0.5); font-size: 0.88rem; }

/* ── REFERENCES MARQUEE ──────────────────────── */
.references-section { overflow: hidden; }
.ref-marquee-wrap   { overflow: hidden; mask: linear-gradient(to right, transparent, black 15%, black 85%, transparent); }
.ref-marquee {
  display: flex; gap: 1.5rem; width: max-content;
  animation: marquee 40s linear infinite;
}
.ref-marquee:hover { animation-play-state: paused; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.ref-item {
  display: flex; align-items: center; gap: 0.85rem;
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 0.9rem 1.5rem;
  white-space: nowrap; flex-shrink: 0;
}
.ref-icon { font-size: 1.5rem; }
.ref-name { font-weight: 600; font-size: 0.9rem; color: var(--charcoal); }
.ref-type { font-size: 0.75rem; color: var(--graphite); }

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials-section { background: var(--cream); }
.testimonials-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; }
.testimonial-card p { font-size: 0.92rem; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 0.85rem; font-weight: 700; color: var(--charcoal);
  flex-shrink: 0;
}
.author-name  { font-weight: 600; font-size: 0.88rem; color: var(--charcoal); }
.author-place { font-size: 0.78rem; color: var(--graphite); }

/* ── REFERENCE GRID (referencer page) ────────── */
.ref-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem;
  margin-top: 1.5rem;
}
.ref-card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.ref-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ref-emoji { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.ref-card h4 { margin-bottom: 0.4rem; color: var(--charcoal); font-size: 1rem; }
.ref-card p  { font-size: 0.85rem; }

/* ── CONTACT / BOOKING ───────────────────────── */
.contact-grid  { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; align-items: start; }
.booking-grid  { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }

.contact-info-card, .booking-info {
  background: var(--charcoal); border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg); padding: 2rem; color: var(--warm-white);
}
.booking-info h2 { color: var(--warm-white); margin-bottom: 0.5rem; }
.booking-info p  { color: rgba(255,255,255,0.6); }

.booking-contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.ci-text { display: flex; flex-direction: column; gap: 0.15rem; }
.ci-label { font-size: 0.72rem; font-family: 'DM Mono', monospace; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.ci-text a, .ci-text span { font-size: 0.95rem; color: var(--warm-white); text-decoration: none; }
.ci-text a:hover { color: var(--gold); }

.booking-form, .contact-big-form {
  background: var(--charcoal); border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg); padding: 2rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1/-1; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-family: 'DM Mono', monospace; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius); padding: 0.75rem 1rem;
  color: var(--warm-white); font-family: 'Inter', sans-serif; font-size: 0.92rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--charcoal); }
.form-group textarea { min-height: 140px; resize: vertical; }

.success-msg {
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius); padding: 1rem; color: var(--gold);
  font-size: 0.9rem; display: none; margin-top: 1rem;
}
.success-msg.show { display: block; }

/* ── CALCULATOR ──────────────────────────────── */
.calc-section { background: var(--cream); }
.calc-card {
  background: var(--charcoal); border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg); padding: 2.5rem; max-width: 900px; margin: 0 auto;
}
.calc-card h2 { color: var(--warm-white); }
.calc-card > p { color: rgba(255,255,255,0.55); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.calc-label { display: block; font-family: 'DM Mono', monospace; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.calc-input {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius); padding: 0.75rem 1rem;
  color: var(--warm-white); font-family: 'Inter', sans-serif; font-size: 0.92rem;
  transition: border-color var(--transition);
}
.calc-input:focus { outline: none; border-color: var(--gold); }
.calc-input option { background: var(--charcoal); }
.range-input { width: 100%; accent-color: var(--gold); cursor: pointer; }
.range-val { font-family: 'DM Mono', monospace; font-size: 0.85rem; color: var(--gold); font-weight: 500; }

.calc-result {
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg); padding: 2rem; margin-top: 2rem;
  display: none;
}
.calc-result.show { display: block; }
.result-price { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--gold); line-height: 1; }
.result-note  { color: rgba(255,255,255,0.45); font-size: 0.82rem; margin-top: 0.75rem; }

/* ── PRICE CARD (service pages) ──────────────── */
.price-card {
  background: var(--charcoal); border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg); padding: 2rem; color: var(--warm-white);
  position: sticky; top: 6rem;
}
.price-card .eyebrow { margin-bottom: 0.35rem; }
.price-big {
  font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 900;
  color: var(--gold); margin: 0.35rem 0 0.75rem; line-height: 1;
}
.price-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.price-divider { border: none; border-top: 1px solid rgba(201,168,76,0.2); margin: 1.25rem 0; }
.price-service-row { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.88rem; }
.price-service-row span:first-child { color: rgba(255,255,255,0.7); }
.price-service-row span:last-child  { color: var(--gold); font-weight: 600; }

/* ── FAQ ─────────────────────────────────────── */
.faq-list   { display: flex; flex-direction: column; gap: 0.75rem; max-width: 780px; }
.faq-item   { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item summary {
  padding: 1.1rem 1.5rem; font-weight: 600; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--charcoal); font-family: 'Playfair Display', serif; font-size: 1rem;
  transition: background var(--transition);
}
.faq-item summary:hover { background: rgba(201,168,76,0.06); }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--gold); line-height: 1; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.5rem 1.25rem; color: var(--graphite); font-size: 0.93rem; }

/* ── FOOTER ──────────────────────────────────── */
footer { background: var(--charcoal); padding: 4rem 0 2rem; margin-top: auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(201,168,76,0.15);
}
.footer-firm-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--warm-white); margin-bottom: 0.2rem; }
.footer-firm-tag  { font-family: 'DM Mono', monospace; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.9rem; }
.footer-brand p   { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
.footer-contact-quick { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 1.2rem; }
.footer-contact-quick a { font-size: 0.88rem; color: var(--gold); text-decoration: none; }
.footer-contact-quick a:hover { color: var(--gold-light); }

.footer-col h4  { color: var(--warm-white); font-size: 0.85rem; font-family: 'DM Mono', monospace; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul  { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li a { color: rgba(255,255,255,0.45); font-size: 0.88rem; text-decoration: none; transition: color var(--transition); }
.footer-col li a:hover { color: var(--gold); }
.footer-hours, .footer-area { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  padding-top: 1.75rem;
}
.footer-bottom > span { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.cert-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cert-badge {
  font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.08em;
  color: var(--gold); background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
  padding: 0.25rem 0.75rem; border-radius: 100px;
}

/* ── SCROLL TO TOP ───────────────────────────── */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px;
  background: var(--gold); border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; color: var(--charcoal);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  opacity: 0; pointer-events: none; transition: var(--transition); z-index: 500;
}
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid          { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-steps     { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid, .booking-grid { grid-template-columns: 1fr; }
  .calc-grid         { grid-template-columns: 1fr; }
  .price-card        { position: static; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero h1   { font-size: 2.4rem; }
  .hero-stats{ gap: 1.5rem; }
  .services-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; }
  .form-grid         { grid-template-columns: 1fr; }
  .hero-actions      { flex-direction: column; }
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.22;
  animation: heroZoom 40s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes heroZoom {
  from { transform: scale(1.0) translateX(0); }
  to   { transform: scale(1.08) translateX(-2%); }
}
  to   { transform: translateY(-52%) scale(1.04); }
}
  to   { transform: translate(-50%, -50%) scale(0.78) translateX(-3%); }
}
  to   { transform: scale(1.15) translateX(-5%); }
}
@keyframes heroZoom {
  from { transform: scale(1) translateX(0); }
  to   { transform: scale(1.12) translateX(-4%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,24,0.5), rgba(26,26,24,0.8));
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
