/* ==========================================================================
   Zinke Immobilienverwaltung — Stylesheet
   ========================================================================== */

:root {
  --navy: #16233f;
  --navy-dark: #0e1729;
  --navy-soft: #2a3c60;
  --gold: #c9a04e;
  --gold-light: #e3c887;
  --gold-dark: #a9803a;
  --cream: #faf7f0;
  --white: #ffffff;
  --ink: #26303f;
  --ink-soft: #5b6472;
  --border: #e7e1d3;
  --shadow: 0 20px 45px -20px rgba(14, 23, 41, 0.35);
  --shadow-soft: 0 10px 30px -15px rgba(14, 23, 41, 0.25);
  --radius: 16px;
  --font-head: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.6em;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section { padding: 100px 0; }
.section--tight { padding: 70px 0; }
.section--cream { background: var(--cream); }
.section--navy {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.75); }

.section-head { max-width: 680px; margin: 0 0 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: translateY(1px); }

.btn--gold {
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: var(--navy-dark);
  box-shadow: 0 14px 30px -12px rgba(201, 160, 78, 0.55);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 20px 36px -14px rgba(201, 160, 78, 0.65); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(22, 35, 63, 0.25);
}
.btn--outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-3px); }

.section--navy .btn--outline,
.hero .btn--outline,
.page-hero .btn--outline { color: var(--white); border-color: rgba(255,255,255,0.35); }
.section--navy .btn--outline:hover,
.hero .btn--outline:hover,
.page-hero .btn--outline:hover { background: var(--white); color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(22, 35, 63, 0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 30px -20px rgba(14, 23, 41, 0.4); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 56px; width: auto; transition: transform 0.3s ease; }
.brand:hover img { transform: scale(1.04); }

.brand-text { font-family: var(--font-head); line-height: 1.1; }
.brand-text strong { display: block; font-size: 1.05rem; color: var(--navy); letter-spacing: 0.02em; }
.brand-text span { display: block; font-size: 0.68rem; letter-spacing: 0.22em; color: var(--gold-dark); text-transform: uppercase; margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--navy); }

.nav-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s ease; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 130px;
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-dark) 65%);
  color: var(--white);
  isolation: isolate;
}

.hero-skyline {
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  z-index: 0;
  opacity: 0.5;
  animation: skylineDrift 26s ease-in-out infinite alternate;
}
@keyframes skylineDrift {
  from { transform: translateX(-2%) scale(1); }
  to { transform: translateX(1%) scale(1.03); }
}

.hero-glow {
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,78,0.35), transparent 70%);
  top: -220px; right: -160px;
  z-index: 0;
  animation: floatGlow 12s ease-in-out infinite;
}
.hero-glow--b {
  width: 420px; height: 420px;
  top: auto; bottom: -180px; left: -140px; right: auto;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  animation-delay: -6s;
}
@keyframes floatGlow {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(30px) translateX(-20px); }
}

.hero-particles span {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  opacity: 0.55;
  animation: particleUp linear infinite;
}
@keyframes particleUp {
  from { transform: translateY(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  to { transform: translateY(-420px); opacity: 0; }
}

.hero-inner { position: relative; z-index: 2; max-width: 720px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 26px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(201,160,78,0.25); }

.hero h1 { color: var(--white); animation: fadeUp 0.9s ease both 0.1s; }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero p.lead { font-size: 1.15rem; color: rgba(255,255,255,0.78); max-width: 560px; animation: fadeUp 0.9s ease both 0.22s; }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; animation: fadeUp 0.9s ease both 0.34s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 74px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-stat { animation: fadeUp 0.9s ease both; }
.hero-stat h4 { color: var(--gold-light); font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.hero-stat p { color: rgba(255,255,255,0.68); font-size: 0.88rem; margin: 0; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: 0.08s; }
.reveal-delay-2.is-visible { transition-delay: 0.16s; }
.reveal-delay-3.is-visible { transition-delay: 0.24s; }
.reveal-delay-4.is-visible { transition-delay: 0.32s; }

/* ---------- Service area tags ---------- */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.area-tag svg { width: 18px; height: 18px; color: var(--gold-dark); flex: none; }
.area-tag:hover { transform: translateY(-3px); border-color: var(--gold); }

/* ---------- Feature / USP strip ---------- */
.usp-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -70px;
  position: relative;
  z-index: 3;
}
.usp-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.usp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.usp-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--navy-dark);
}
.usp-icon svg { width: 26px; height: 26px; }
.usp-card h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.usp-card p { font-size: 0.9rem; margin: 0; }

/* ---------- Service / value cards ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 26px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold);
}
.value-num {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}
.value-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.35s ease, background 0.35s ease;
}
.value-icon svg { width: 26px; height: 26px; }
.value-card:hover .value-icon { transform: rotate(-8deg) scale(1.08); background: var(--gold); color: var(--navy-dark); }
.value-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.value-card p { font-size: 0.92rem; margin: 0; }

/* ---------- Split / about teaser ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-media { position: relative; }
.media-frame {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(150deg, var(--navy), var(--navy-soft));
}
.media-frame svg { width: 100%; height: 100%; }
.media-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px 24px;
  min-width: 180px;
  animation: floatSlow 5s ease-in-out infinite;
}
.media-badge strong { display: block; font-family: var(--font-head); color: var(--navy); font-size: 1.5rem; }
.media-badge span { font-size: 0.78rem; color: var(--ink-soft); }
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.checklist { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 14px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.96rem; color: var(--ink); }
.checklist svg { flex: none; width: 22px; height: 22px; color: var(--gold-dark); margin-top: 2px; }

/* ---------- Timeline (Über uns) ---------- */
.timeline { position: relative; padding-left: 36px; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--gold), var(--border));
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item::before {
  content: ""; position: absolute; left: -36px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--gold);
}
.timeline-item:last-child { padding-bottom: 0; }

/* ---------- Team ---------- */
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  max-width: 340px;
  margin: 0 auto;
}
.team-avatar {
  width: 130px; height: 130px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(140deg, var(--navy), var(--navy-soft));
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 2.1rem;
  border: 4px solid var(--gold-light);
  overflow: hidden;
}
.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-card h3 { margin-bottom: 2px; }
.team-role { color: var(--gold-dark); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }

/* ---------- Leistungen tabs ---------- */
.service-tabs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.tab-btn {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 0.25s ease;
}
.tab-btn:hover { border-color: var(--gold); color: var(--navy); }
.tab-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp 0.5s ease both; }

.service-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 34px;
}
.service-header .eyebrow { color: var(--gold-light); }
.service-header .eyebrow::before { background: var(--gold-light); }
.service-header h3 { color: var(--white); font-size: 1.6rem; }
.service-header p { color: rgba(255,255,255,0.78); margin: 0; }

.service-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.service-col {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.service-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.service-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.service-col li { display: flex; gap: 10px; font-size: 0.94rem; color: var(--ink); }
.service-col li::before { content: "→"; color: var(--gold-dark); font-weight: 700; }

.service-result {
  margin-top: 26px;
  padding: 18px 24px;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  border-radius: 0 12px 12px 0;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: 28px;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 64px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,78,0.3), transparent 70%);
  right: -100px; top: -120px;
  animation: floatGlow 10s ease-in-out infinite;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.75); margin: 0; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: start; }

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 34px;
  position: sticky;
  top: 110px;
}
.contact-info-card h3 { color: var(--white); }
.contact-info-card p { color: rgba(255,255,255,0.7); }
.contact-info-list { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 20px; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.94rem; }
.contact-info-list svg { width: 22px; height: 22px; color: var(--gold-light); flex: none; margin-top: 2px; }
.contact-info-list strong { display: block; color: var(--white); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 3px; color: var(--gold-light); }
.contact-info-list span, .contact-info-list a { color: rgba(255,255,255,0.85); }

.contact-info-card .btn--outline { color: var(--white); border-color: rgba(255,255,255,0.35); }
.contact-info-card .btn--outline:hover { background: var(--white); color: var(--navy); }

.social-row { display: flex; gap: 12px; margin-top: 28px; }
.social-row a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 110px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.field label .req { color: var(--gold-dark); }
.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,160,78,0.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.field.has-error input, .field.has-error textarea { border-color: #d8534f; background: #fff5f4; }
.field-error { display: none; color: #c0413c; font-size: 0.78rem; margin-top: 6px; }
.field.has-error .field-error { display: block; }

.consent-row { display: flex; gap: 12px; align-items: flex-start; margin: 22px 0 26px; }
.consent-row input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--gold-dark); flex: none; }
.consent-row label { font-size: 0.85rem; color: var(--ink-soft); }
.consent-row a { color: var(--navy); text-decoration: underline; }

.form-status {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 22px;
}
.form-status.success { display: flex; background: #e9f6ee; color: #23713f; }
.form-status.error { display: flex; background: #fdecea; color: #b3261e; }

/* ---------- Map embed ---------- */
.map-embed {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 30px;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, var(--cream), var(--white));
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}
.map-embed.is-loaded { padding: 0; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; pointer-events: none; }
.map-pin-label {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -100%);
  z-index: 2;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.2;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(22, 35, 63, 0.22);
  pointer-events: none;
}
.map-embed-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; max-width: 420px; }
.map-embed-inner svg { color: var(--gold-dark); margin-bottom: 6px; }
.map-embed-inner h4 { font-family: var(--font-head); color: var(--navy); font-size: 1.1rem; margin: 0; }
.map-embed-inner p { margin: 0; }
.map-embed-inner .btn { margin: 14px 0 4px; }
.map-embed-hint { font-size: 0.76rem; color: var(--ink-soft); opacity: 0.8; }
.map-embed-hint a { text-decoration: underline; }

/* ---------- Legal pages ---------- */
.legal-content h2 { margin-top: 2em; font-size: 1.3rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--ink-soft); }
.legal-content { max-width: 820px; }
.legal-placeholder {
  background: #fff8e8;
  border: 1px dashed var(--gold);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 0.88rem;
  color: var(--gold-dark);
  margin-bottom: 34px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy), var(--navy-dark));
  color: var(--white);
  padding: 130px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero--banner {
  min-height: 620px;
  display: flex;
  align-items: center;
}
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero .eyebrow::before { background: var(--gold-light); }
.page-hero h1 { color: var(--white); max-width: 700px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; }
.page-hero-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,78,0.28), transparent 70%);
  top: -200px; right: -120px;
}
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 24px; right: 24px; bottom: 24px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--navy);
  color: var(--white);
  padding: 22px 26px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: center;
  z-index: 900;
  transform: translateY(140%);
  transition: transform 0.5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { color: rgba(255,255,255,0.78); font-size: 0.85rem; margin: 0; }
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex: none; }
.cookie-actions button {
  border: none; border-radius: 999px; padding: 10px 18px; font-weight: 600; font-size: 0.82rem; cursor: pointer;
}
.cookie-actions .accept { background: var(--gold); color: var(--navy-dark); }
.cookie-actions .decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 400;
  cursor: pointer;
  border: none;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--navy-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { height: 48px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; max-width: 260px; }
.site-footer h5 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 0.8rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-wrap { padding: 12px 20px; }
  .main-nav.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 24px; gap: 20px; box-shadow: var(--shadow);
  }
  .usp-strip, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split, .grid-2, .contact-wrap, .service-cols { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 48px 30px; }
}
@media (max-width: 620px) {
  .usp-strip, .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .nav-actions .btn--gold { display: none; }
  .brand img { height: 44px; }
  .brand-text strong { font-size: 0.92rem; }
  .brand-text span { font-size: 0.6rem; }
}
@media (max-width: 400px) {
  .hero-stats { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 22px; }
  .service-header { padding: 28px 22px; }
  .form-card, .contact-info-card { padding: 28px 22px; }
}
