/* ==========================================================================
   AM Administraties — Design System
   Palette: Navy #0f2742 / Gold #c9a356 / Off-white #faf9f6 / Ink #1a1a1a
   ========================================================================== */

:root {
  --navy: #0f2742;
  --navy-deep: #0a1c30;
  --navy-soft: #1c3a5c;
  --gold: #c9a356;
  --gold-soft: #d9bb78;
  --paper: #faf9f6;
  --paper-warm: #f3f0e9;
  --ink: #1a1a1a;
  --ink-soft: #4a5560;
  --line: #e4e0d6;
  --line-navy: rgba(255, 255, 255, 0.12);
  --white: #ffffff;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --maxw: 1180px;
  --gutter: clamp(1.25rem, 5vw, 4rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--navy); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }

.display {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.lead { font-size: clamp(1.1rem, 2vw, 1.3rem); line-height: 1.55; color: var(--ink-soft); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(4.5rem, 10vw, 8rem); }

.section-tight { padding-block: clamp(3rem, 6vw, 4.5rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 0.95rem 1.8rem;
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.btn-gold:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(15, 39, 66, 0.5);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px -10px rgba(0,0,0,0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark {
  width: 40px; height: 40px;
  background: var(--navy);
  display: grid; place-items: center;
  flex-shrink: 0;
  position: relative;
}
.brand-mark span {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.brand-mark::after {
  content: "";
  position: absolute;
  bottom: 7px; left: 8px; right: 8px;
  height: 2px;
  background: var(--gold);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--sans); font-weight: 700; font-size: 1.02rem; color: var(--navy); letter-spacing: 0.01em; }
.brand-sub { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }

.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  margin-inline: auto;
  transition: all 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile nav ---------- */
.mobile-menu {
  position: fixed;
  inset: 78px 0 0 0;
  background: var(--navy);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 2.5rem var(--gutter);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--white);
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-navy);
  transition: color 0.2s, padding-left 0.3s var(--ease);
}
.mobile-menu a:hover { color: var(--gold); padding-left: 0.5rem; }
.mobile-menu .btn { margin-top: 2rem; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 9vw, 7rem) clamp(4.5rem, 10vw, 8rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 20%, rgba(201, 163, 86, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(28, 58, 92, 0.6), transparent 60%);
  pointer-events: none;
}
/* faint ledger lines in hero bg */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 47px,
    rgba(255,255,255,0.025) 47px,
    rgba(255,255,255,0.025) 48px
  );
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 { color: var(--white); margin-block: 1.5rem 1.5rem; }
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero-lead { color: rgba(255,255,255,0.78); font-size: clamp(1.05rem, 1.8vw, 1.25rem); max-width: 38ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.hero-trust {
  margin-top: 3rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-navy);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: center;
}
.hero-trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.hero-trust-item svg { flex-shrink: 0; color: var(--gold); }

/* Hero card (right side) */
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-navy);
  border-radius: 4px;
  padding: 2.2rem;
  backdrop-filter: blur(8px);
}
.hero-card-label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.hero-card-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--line-navy);
}
.hero-card-row:last-of-type { border-bottom: none; }
.hero-card-num {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 1.5rem;
}
.hero-card-row strong { display: block; font-weight: 600; font-size: 0.98rem; color: var(--white); margin-bottom: 0.15rem; }
.hero-card-row span { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.45; }

/* ---------- Section headers ---------- */
.section-head { max-width: 60ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-block: 1.2rem 1.2rem; color: var(--navy); }
.section-head p { color: var(--ink-soft); font-size: 1.12rem; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.2rem;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 20px 40px -20px rgba(15, 39, 66, 0.25);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.service-card.featured .service-name,
.service-card.featured .service-desc { color: rgba(255,255,255,0.92); }
.service-card.featured .service-desc { color: rgba(255,255,255,0.68); }
.service-card.featured::before { transform: scaleX(1); }
.service-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1.3rem;
}
.service-icon {
  width: 46px; height: 46px;
  margin-bottom: 1.4rem;
  color: var(--gold);
}
.service-name { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: var(--navy); margin-bottom: 0.7rem; }
.service-desc { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.6; }

/* ---------- Approach / value strip ---------- */
.value-strip { background: var(--navy); color: var(--white); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}
.value-item { position: relative; padding-top: 2rem; }
.value-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--gold);
}
.value-num {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.value-item h3 { font-size: 1.45rem; color: var(--white); margin-bottom: 0.8rem; }
.value-item p { color: rgba(255,255,255,0.7); font-size: 0.98rem; line-height: 1.6; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--paper-warm); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2.4rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -28px rgba(15,39,66,0.3); }
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.15em; margin-bottom: 1.3rem; }
.testi-quote {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--navy);
  font-weight: 400;
  flex-grow: 1;
  position: relative;
}
.testi-author {
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-author-name { font-weight: 600; font-size: 0.98rem; color: var(--navy); }
.testi-author-role { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(201,163,86,0.12), transparent 65%);
}
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.4rem); color: var(--white); margin-bottom: 1.2rem; }
.cta-band h2 .accent { color: var(--gold); font-style: italic; }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 50ch; margin: 0 auto 2.5rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding-block: clamp(3.5rem, 7vw, 5rem) 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-navy);
}
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-sub { color: rgba(255,255,255,0.5); }
.footer-tagline { margin-top: 1.3rem; max-width: 32ch; font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.6); }
.footer-col h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a, .footer-col li { font-size: 0.95rem; color: rgba(255,255,255,0.7); transition: color 0.25s; }
.footer-col a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: center; gap: 0.6rem; }
.footer-contact-item svg { flex-shrink: 0; color: var(--gold); opacity: 0.8; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .kvk { display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-bottom .kvk .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding-block: clamp(3.5rem, 8vw, 6rem) clamp(3.5rem, 8vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 15%, rgba(201,163,86,0.09), transparent 60%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 2; max-width: 800px; }
.page-hero h1 { color: var(--white); font-size: clamp(2.4rem, 5.5vw, 4rem); margin-block: 1.3rem 1.3rem; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 52ch; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Detailed service list (services page) ---------- */
.svc-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.svc-detail:last-child { border-bottom: none; }
.svc-detail-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--line);
  line-height: 1;
  font-weight: 500;
}
.svc-detail-body { max-width: 60ch; }
.svc-detail-body h3 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--navy); margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.svc-detail-body .svc-mini-tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); background: var(--gold); padding: 0.25rem 0.6rem; border-radius: 2px; }
.svc-detail-body p { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.65; }
.svc-detail-body .svc-points { list-style: none; margin-top: 1.3rem; display: flex; flex-direction: column; gap: 0.7rem; }
.svc-detail-body .svc-points li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.98rem; color: var(--ink); }
.svc-detail-body .svc-points svg { flex-shrink: 0; color: var(--gold); margin-top: 3px; }

/* ---------- About page ---------- */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.about-portrait {
  background: var(--navy);
  border-radius: 4px;
  aspect-ratio: 4/5;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.about-portrait::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(201,163,86,0.15), transparent 60%);
}
.about-portrait-mark {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 7rem);
  color: rgba(255,255,255,0.08);
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.about-portrait-label {
  position: absolute;
  bottom: 2rem; left: 2rem; right: 2rem;
  z-index: 3;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line-navy);
}
.about-portrait-label strong { display: block; color: var(--white); font-family: var(--serif); font-size: 1.3rem; margin-bottom: 0.2rem; }
.about-portrait-label span { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.05em; }
.about-body p { margin-bottom: 1.3rem; font-size: 1.1rem; line-height: 1.7; color: var(--ink); }
.about-body p:first-child { font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 1.8rem); color: var(--navy); line-height: 1.4; }
.about-body strong { color: var(--navy); }

.credentials { background: var(--paper-warm); }
.cred-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.cred-card { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 2rem; }
.cred-card .cred-icon { color: var(--gold); margin-bottom: 1.2rem; }
.cred-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; }
.cred-card p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- PGB page specifics ---------- */
.pgb-explainer { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.pgb-steps { counter-reset: step; display: flex; flex-direction: column; gap: 1.3rem; }
.pgb-step {
  display: flex;
  gap: 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.6rem 1.8rem;
  transition: all 0.35s var(--ease);
}
.pgb-step:hover { border-color: var(--gold); transform: translateX(4px); }
.pgb-step-num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
}
.pgb-step h4 { font-family: var(--sans); font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
.pgb-step p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.55; }

.pgb-reassure {
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  padding: clamp(2rem, 4vw, 3rem);
}
.pgb-reassure h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 1.2rem; }
.pgb-reassure ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.pgb-reassure li { display: flex; align-items: flex-start; gap: 0.8rem; color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.5; }
.pgb-reassure svg { flex-shrink: 0; color: var(--gold); margin-top: 3px; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 1.3rem; margin-top: 2rem; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all 0.35s var(--ease);
}
.contact-method:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 12px 28px -18px rgba(15,39,66,0.3); }
.contact-method-icon {
  width: 48px; height: 48px;
  background: var(--paper-warm);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
  flex-shrink: 0;
}
.contact-method-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.2rem; }
.contact-method-value { font-weight: 600; color: var(--navy); font-size: 1.05rem; }

.booking-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  padding: clamp(2rem, 4vw, 2.8rem);
}
.booking-panel .eyebrow { color: var(--gold); }
.booking-panel h3 { color: var(--white); font-size: 1.8rem; margin-block: 1rem 1rem; }
.booking-panel p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-size: 1rem; line-height: 1.6; }
.booking-features { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2rem; }
.booking-features li { display: flex; align-items: center; gap: 0.7rem; color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.booking-features svg { flex-shrink: 0; color: var(--gold); }
.booking-panel .btn { width: 100%; justify-content: center; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

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

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 480px; }
  .about-intro, .pgb-explainer, .contact-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 420px; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .svc-detail { grid-template-columns: 1fr; gap: 0.5rem; }
  .svc-detail-num { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .brand-sub { display: none; }
  .hero-actions .btn, .cta-band .btn { width: 100%; justify-content: center; }
}
