/* ===================================================================
   ADVOCAAT FREESTYLE — "Scales & Columns" Theme
   Deep navy + gold accent, serif headings, modern editorial
   =================================================================== */

:root {
  --navy: #0D1B2A;
  --navy-light: #1B2838;
  --gold: #C5A55A;
  --gold-light: #D4B96A;
  --cream: #F5F0E8;
  --white: #FFFFFF;
  --text: #E8E0D0;
  --text-muted: #8A9AB5;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── HEADER ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 32px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(13, 27, 42, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 165, 90, 0.15);
}
.header-brand {
  font-family: var(--font-serif);
  font-size: 1.25rem; font-weight: 700; color: var(--gold);
  letter-spacing: 0.04em;
}
.header-nav { display: flex; gap: 28px; list-style: none; }
.header-nav a {
  font-size: 0.85rem; font-weight: 500; color: var(--text-muted);
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: color 0.3s;
}
.header-nav a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 160px 32px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-label {
  font-size: 0.75rem; font-weight: 600; color: var(--gold);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-label::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700; line-height: 1.08; color: var(--white);
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.15rem; color: var(--text-muted);
  max-width: 560px; line-height: 1.7; margin-bottom: 40px;
}
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--gold); color: var(--navy);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: transparent; color: var(--gold);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; border: 1px solid var(--gold); cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }

/* ── SECTIONS ── */
section { padding: 100px 0; }

.section-label {
  font-size: 0.7rem; font-weight: 600; color: var(--gold);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--white); line-height: 1.15;
  margin-bottom: 24px;
}
h2 em { color: var(--gold); font-style: italic; }

/* ── IMAGE + TEXT GRID ── */
.grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}
.grid-2 img { border-radius: 4px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px; margin-top: 48px;
}
.service-card {
  background: var(--navy-light);
  border: 1px solid rgba(197, 165, 90, 0.12);
  padding: 40px 32px; border-radius: 4px;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem; font-weight: 700; color: var(--white);
  margin-bottom: 16px;
}
.service-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 48px;
}
.gallery-grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 4px; transition: transform 0.4s;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ── STATS ── */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; padding: 60px 0;
  border-top: 1px solid rgba(197, 165, 90, 0.15);
  border-bottom: 1px solid rgba(197, 165, 90, 0.15);
}
.stat-item h3 {
  font-family: var(--font-serif);
  font-size: 3rem; font-weight: 700; color: var(--gold);
  margin-bottom: 4px;
}
.stat-item p { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid rgba(197, 165, 90, 0.15);
  padding: 24px 0;
}
.faq-q {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 600; color: var(--white);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; font-size: 1.5rem; color: var(--gold); }
.faq-a { font-size: 0.95rem; color: var(--text-muted); padding-top: 16px; line-height: 1.7; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q::after { content: '—'; }

/* ── CTA ── */
.cta-section {
  text-align: center; padding: 120px 32px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}
.cta-section h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 32px; }

/* ── FOOTER ── */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid rgba(197, 165, 90, 0.15);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 700; color: var(--gold);
  margin-bottom: 12px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.9rem; color: var(--text-muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(197, 165, 90, 0.1);
  font-size: 0.8rem; color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 140px 20px 60px; }
  section { padding: 60px 0; }
}
