/* =============================================
   POLISH CUSTOM BUILDERS — REDESIGN v2
   Theme: Warm Slate · Champagne · Soft White
   ============================================= */

:root {
  /* — Brand Accents — */
  --gold:        #B8925A;
  --gold-light:  #D4AA72;
  --gold-bright: #C9A05E;
  --gold-dark:   #8C6A38;

  /* — Background Scale (lighter, warmer) — */
  --bg-darkest:  #1C1A18;
  --bg-dark:     #242220;
  --bg-mid:      #2E2B28;
  --bg-card:     #323030;
  --bg-light:    #F7F4EF;   /* warm off-white for light sections */
  --bg-section:  #F2EEE8;

  /* — Text — */
  --white:       #FDFBF8;
  --cream:       #EDE8DF;
  --text-body:   #3A3530;
  --text-muted:  #7A7268;
  --text-light:  #B8B0A4;

  /* — UI — */
  --border-dark: rgba(184,146,90,0.18);
  --border-light: rgba(58,53,48,0.12);

  /* — Fonts — */
  --font-display: 'Cinzel', 'Palatino Linotype', Palatino, serif;
  --font-serif:   'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  --font-body:    'Nunito Sans', 'Segoe UI', Arial, sans-serif;

  --nav-h: 78px;
  --transition: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 3px;
}

/* ── RESET ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-light);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITY ──────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.mt-2 { margin-top: 2rem; }

.accent-rule {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
  margin-bottom: 1.25rem;
  border-radius: 2px;
}
.accent-rule.center { margin: 0 auto 1.25rem; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.18;
  color: var(--bg-darkest);
}
.section-title em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--gold-dark);
}
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }
.section-title.center { text-align: center; }

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  text-align: center;
  margin-top: 0.6rem;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}
.section-header { margin-bottom: 3.5rem; }

.body-text { color: var(--text-muted); line-height: 1.9; margin-bottom: 1rem; }

/* ── REVEAL (JS-guarded) ──────────────────── */
.js-loaded .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.js-loaded .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVBAR ───────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(28, 26, 24, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 36px;
  max-width: 1380px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 58px; width: auto; filter: drop-shadow(0 1px 6px rgba(0,0,0,0.3)); }
.nav-links {
  display: flex; align-items: center; gap: 2.25rem;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold-light);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  letter-spacing: 0.12em;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}
.nav-links .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-links .nav-cta::after { display: none; }

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 1001;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: var(--transition); border-radius: 2px; }
.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); }

/* ── HERO (VIDEO) ─────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg-darkest);
}

/* Video background */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Layered overlay: dark vignette + warm tint at bottom */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(14,12,10,0.60) 0%,
      rgba(14,12,10,0.45) 35%,
      rgba(14,12,10,0.60) 70%,
      rgba(14,12,10,0.85) 100%
    );
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 24px;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.63rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

/* Hero logo */
.hero-logo-wrap {
  margin-bottom: 1.25rem;
}
.hero-logo {
  height: 130px;
  width: auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
}

/* Business name — the star of the show */
.hero-business-name {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 0.6rem;
  text-align: center;
}

/* Tagline italic */
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  margin-bottom: 1.1rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.hero-tagline em { font-style: italic; }

/* Divider line between tagline and sub */
.hero-tagline + .hero-sub {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.25rem;
  margin-top: 0.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-title em {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: 1.06em;
  color: var(--gold-light);
  letter-spacing: 0.01em;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.72);
  font-style: italic;
  margin-bottom: 2.75rem;
  line-height: 1.65;
  max-width: 580px;
  margin-left: auto; margin-right: auto;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3;} 50%{opacity:1;} }

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-weight: 600;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184,146,90,0.3);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,146,90,0.4); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
.btn-outline-dark {
  background: transparent;
  color: var(--bg-darkest);
  border: 1.5px solid var(--bg-darkest);
}
.btn-outline-dark:hover { background: var(--bg-darkest); color: var(--white); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

/* ── MARQUEE ──────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  background: var(--bg-darkest);
  padding: 13px 0;
  white-space: nowrap;
  border-top: 1px solid rgba(184,146,90,0.15);
  border-bottom: 1px solid rgba(184,146,90,0.15);
}
.marquee-track {
  display: inline-flex;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0 48px;
  opacity: 0.85;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── STATEMENT SECTION ────────────────────── */
.statement-section {
  padding: 110px 0;
  background: var(--bg-light);
}
.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--gold);
  padding: 2.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(58,53,48,0.06);
  transition: var(--transition);
  border-radius: var(--radius);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(58,53,48,0.1); }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── SERVICES ─────────────────────────────── */
.services-section {
  padding: 110px 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.services-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184,146,90,0.07);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; user-select: none;
  white-space: nowrap; letter-spacing: 0.06em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  box-shadow: 0 1px 8px rgba(58,53,48,0.05);
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.4s;
  border-radius: 0 0 var(--radius) var(--radius);
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(58,53,48,0.1); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-darkest);
  margin-bottom: 0.65rem;
}
.service-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.75; }

/* ── PROCESS ──────────────────────────────── */
.process-section {
  padding: 110px 0;
  background: var(--bg-darkest);
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold-light), var(--gold-dark), transparent);
}
.process-step { text-align: center; padding: 0 1rem; }
.step-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--bg-darkest);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.75rem;
  position: relative; z-index: 1;
  box-shadow: 0 0 24px rgba(184,146,90,0.35);
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}
.step-content p { color: var(--text-light); font-size: 0.88rem; line-height: 1.7; }

/* ── TESTIMONIALS ─────────────────────────── */
.testimonial-section {
  padding: 110px 0;
  background: var(--bg-section);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--gold);
  padding: 2.25rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(58,53,48,0.06);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: -4px; left: 20px;
  font-family: var(--font-serif);
  font-size: 5rem; color: var(--gold); opacity: 0.18;
  line-height: 1;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(58,53,48,0.1); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 3px; }
.testimonial-card p {
  color: var(--text-muted); font-family: var(--font-serif);
  font-size: 1.05rem; font-style: italic; line-height: 1.8; margin-bottom: 1.25rem;
}
.client-name {
  font-family: var(--font-display); font-size: 0.64rem;
  letter-spacing: 0.14em; color: var(--gold-dark); text-transform: uppercase;
}

/* ── CTA BANNER ───────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: var(--bg-darkest);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184,146,90,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.cta-inner p { color: var(--text-light); margin: 1.25rem 0 2.5rem; font-family: var(--font-serif); font-size: 1.1rem; font-style: italic; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ───────────────────────────────── */
.footer {
  background: #141210;
  border-top: 1px solid rgba(184,146,90,0.12);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 52px;
  padding-bottom: 52px;
}
.footer-logo { height: 64px; margin-bottom: 1.1rem; }
.footer-brand p { color: #6A6258; font-size: 0.9rem; line-height: 1.8; }
.footer-social { margin-top: 1.25rem; }
.social-link {
  font-family: var(--font-display); font-size: 0.66rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-light); border: 1px solid rgba(184,146,90,0.3);
  padding: 8px 18px; display: inline-block; border-radius: var(--radius);
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.footer-nav h4, .footer-contact h4 {
  font-family: var(--font-display); font-size: 0.66rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.4rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a { color: #6A6258; font-size: 0.9rem; transition: color 0.3s; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-contact p { color: #6A6258; font-size: 0.9rem; margin-bottom: 0.7rem; }
.footer-contact a { color: var(--gold-light); transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold-bright); }
.footer-bottom {
  border-top: 1px solid rgba(184,146,90,0.08);
  padding: 22px 24px; text-align: center;
  color: #3A3530; font-size: 0.8rem; letter-spacing: 0.04em;
}
.footer-bottom a { color: var(--gold-dark); }

/* ════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════ */
.page-hero {
  min-height: 52vh;
  display: flex; align-items: flex-end;
  padding-bottom: 70px;
  position: relative; overflow: hidden;
  background: var(--bg-darkest);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 25% 60%, rgba(184,146,90,0.1) 0%, transparent 55%);
}
.page-hero-content {
  position: relative; z-index: 1;
  padding-top: calc(var(--nav-h) + 40px);
}
.page-breadcrumb {
  font-family: var(--font-display); font-size: 0.64rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 1.25rem;
}
.page-breadcrumb a { color: var(--gold-dark); transition: color 0.3s; }
.page-breadcrumb a:hover { color: var(--gold-light); }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700; letter-spacing: 0.03em; line-height: 1.06;
  color: var(--white);
}
.page-title em {
  display: block; font-style: italic;
  font-family: var(--font-serif); font-weight: 300;
  color: var(--gold-light); font-size: 1.08em;
}

.about-section { padding: 100px 0; background: var(--bg-light); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-logo-display {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 56px 40px; text-align: center;
  position: relative;
  box-shadow: 0 4px 32px rgba(58,53,48,0.08);
  border-radius: var(--radius);
}
.about-logo-display::before, .about-logo-display::after {
  content: '';
  position: absolute;
  width: 40px; height: 40px; border-color: var(--gold); border-style: solid;
}
.about-logo-display::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.about-logo-display::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.about-logo-display img { max-width: 260px; margin: 0 auto; }
.about-accent {
  position: absolute; bottom: -22px; right: -22px;
  background: var(--gold); padding: 20px 28px; text-align: center;
  border-radius: var(--radius); box-shadow: 0 4px 18px rgba(184,146,90,0.4);
}
.about-accent span { display: block; font-family: var(--font-display); color: var(--white); font-weight: 700; }
.about-accent .accent-big { font-size: 1.8rem; }
.about-accent .accent-small { font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; }

.values-section { padding: 100px 0; background: var(--bg-section); }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3.5rem;
}
.value-card {
  padding: 2.25rem; border: 1px solid var(--border-light);
  background: var(--white); border-radius: var(--radius);
  text-align: center; transition: var(--transition);
  box-shadow: 0 1px 8px rgba(58,53,48,0.04);
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(58,53,48,0.09); }
.value-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 900;
  color: rgba(184,146,90,0.18); line-height: 1; margin-bottom: 0.9rem;
}
.value-card h3 {
  font-family: var(--font-display); font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bg-darkest); margin-bottom: 0.65rem;
}
.value-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; }

/* ════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════ */
.contact-section { padding: 100px 0; background: var(--bg-light); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px;
}
.contact-info h3 {
  font-family: var(--font-display); font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 1.75rem;
}
.contact-detail {
  display: flex; flex-direction: column; gap: 0.2rem;
  margin-bottom: 1.75rem; padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-light);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-label {
  font-family: var(--font-display); font-size: 0.59rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark);
}
.contact-detail-value {
  font-family: var(--font-serif); font-size: 1.1rem;
  color: var(--text-body); line-height: 1.6;
}
.contact-detail-value a { color: var(--text-body); transition: color 0.3s; }
.contact-detail-value a:hover { color: var(--gold-dark); }

.contact-form-wrap {
  background: var(--white); border: 1px solid var(--border-light);
  border-top: 3px solid var(--gold);
  padding: 2.75rem; border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(58,53,48,0.07);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { margin-bottom: 1.35rem; }
.form-group label {
  display: block; font-family: var(--font-display); font-size: 0.62rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--bg-light);
  border: 1px solid var(--border-light); color: var(--text-body);
  padding: 13px 15px; font-family: var(--font-body); font-size: 0.95rem;
  border-radius: var(--radius); outline: none; transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--white); color: var(--text-body); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(184,146,90,0.08);
}
.form-group textarea { resize: vertical; min-height: 125px; }
.form-submit { width: 100%; padding: 16px; font-size: 0.75rem; }

/* ════════════════════════════════════════════
   QUESTIONNAIRE PAGE
   ════════════════════════════════════════════ */
.questionnaire-section { padding: 100px 0; background: var(--bg-section); }
.q-form-wrap {
  max-width: 820px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--border-light);
  border-top: 3px solid var(--gold);
  padding: 3.25rem; border-radius: var(--radius);
  box-shadow: 0 4px 32px rgba(58,53,48,0.08);
  position: relative;
}
.q-step { display: none; }
.q-step.active { display: block; }
.q-progress {
  display: flex; align-items: center; gap: 0.4rem; margin-bottom: 2.75rem;
}
.q-progress-step {
  flex: 1; height: 3px; background: var(--border-light);
  border-radius: 2px; transition: background 0.5s;
}
.q-progress-step.done { background: var(--gold); }
.q-step-label {
  font-family: var(--font-display); font-size: 0.62rem;
  letter-spacing: 0.18em; color: var(--gold-dark);
  text-transform: uppercase; margin-bottom: 0.4rem;
}
.q-step-title {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--bg-darkest); margin-bottom: 1.75rem;
}
.q-options {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem; margin-bottom: 1.75rem;
}
.q-option {
  border: 1.5px solid var(--border-light); padding: 1.15rem 1rem;
  cursor: pointer; transition: var(--transition); text-align: center;
  font-family: var(--font-display); font-size: 0.75rem;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-muted); background: var(--bg-light);
  border-radius: var(--radius);
}
.q-option:hover { border-color: var(--gold); color: var(--bg-darkest); background: var(--white); }
.q-option.selected { border-color: var(--gold); color: var(--bg-darkest); background: var(--white); box-shadow: inset 0 0 0 1px var(--gold); }
.q-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 2.25rem; padding-top: 1.75rem;
  border-top: 1px solid var(--border-light);
}
.q-nav .btn-back {
  background: none; border: none; color: var(--text-muted);
  font-family: var(--font-display); font-size: 0.65rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; transition: color 0.3s;
}
.q-nav .btn-back:hover { color: var(--gold-dark); }
.q-counter { color: var(--text-muted); font-family: var(--font-display); font-size: 0.66rem; letter-spacing: 0.1em; }

.success-message { text-align: center; padding: 3rem 0; }
.success-icon {
  width: 76px; height: 76px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem; font-size: 1.75rem; color: var(--white);
  box-shadow: 0 4px 24px rgba(184,146,90,0.4);
}
.success-message h3 { font-family: var(--font-display); font-size: 1.7rem; color: var(--bg-darkest); margin-bottom: 0.9rem; }
.success-message p { color: var(--text-muted); font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .statement-grid { grid-template-columns: 1fr; gap: 52px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-timeline::before { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 66px; }
  .hero-logo { height: 90px; }
  .hero-business-name { font-size: clamp(1.8rem, 8vw, 2.8rem); letter-spacing: 0.04em; }
  .hero-tagline { font-size: clamp(1rem, 4vw, 1.25rem); }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; inset: 0;
    background: rgba(20,18,16,0.98);
    flex-direction: column; justify-content: center;
    gap: 2.25rem; font-size: 1rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77,0,0.18,1);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 0.95rem; letter-spacing: 0.2em; }
  .services-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .q-form-wrap { padding: 1.75rem 1.25rem; }
  .q-options { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
  .hero-title { font-size: clamp(2rem, 9vw, 3.2rem); }
  .section-title { font-size: clamp(1.7rem, 5vw, 2.4rem); }
  .page-title { font-size: clamp(2.3rem, 8vw, 3.6rem); }
  .about-accent { position: static; margin-top: 1rem; display: inline-block; }
  .nav-inner { padding: 0 18px; }
  .testimonial-grid { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { padding: 13px 26px; font-size: 0.65rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .q-progress { gap: 0.25rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
