/* ============================================
   Neue Medien Becker – Privatkunden
   Dark Mode, angepasst an neuemedienbecker.de
   DSGVO-konform (System-Fonts)
   ============================================ */

:root {
  /* Dark Palette */
  --bg: #0e121a;
  --bg-deep: #080a10;
  --bg-soft: #161b26;
  --surface: #1c2230;
  --surface-hi: #252b3a;
  --line: #2e3645;
  --line-soft: #232a37;

  --ink: #f3ede0;
  --ink-soft: #c7c0b0;
  --ink-mute: #8a8676;

  --brand: #5a8bbf;
  --brand-soft: #4a7ba8;
  --brand-deep: #3a6a96;
  --brand-glow: rgba(90, 139, 191, 0.18);

  --gold: #d4a574;
  --gold-deep: #b88a5a;
  --gold-glow: rgba(212, 165, 116, 0.18);

  /* Effects */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.45);
  --shadow-brand: 0 16px 40px rgba(90, 139, 191, 0.25);
  --shadow-gold: 0 16px 40px rgba(212, 165, 116, 0.25);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --max: 1180px;

  /* Typography */
  --font-display: ui-serif, 'Iowan Old Style', 'Apple Garamond', Baskerville, 'Times New Roman', Georgia, serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 600; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

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

a {
  color: var(--gold);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  transition: color .2s;
}
a:hover { color: var(--brand); }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================
   ACCESSIBILITY HELPERS
   ============================================ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 14px 24px;
  text-decoration: none;
  font-weight: 700;
  z-index: 1000;
  border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus { left: 0; top: 0; color: var(--bg-deep); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   EYEBROW
   ============================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(14, 18, 26, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(46, 54, 69, 0.5);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}
.brand-logo {
  height: 56px;
  width: auto;
  border-radius: 6px;
  display: block;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-tag {
  font-size: 0.74rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 4px;
  border-left: 2px solid var(--gold);
}
@media (max-width: 640px) {
  .brand-logo { height: 44px; }
  .brand-tag { font-size: 0.62rem; letter-spacing: 0.14em; }
  .header-cta a { font-size: 0.85rem; padding: 10px 16px; }
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--gold);
  color: var(--bg-deep);
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all .25s;
  min-height: 44px;
  letter-spacing: -0.005em;
}
.header-cta a svg { flex-shrink: 0; }
.header-cta a:hover {
  background: var(--ink);
  color: var(--bg-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.btn svg { flex-shrink: 0; }
@media (max-width: 640px) {
  .brand-logo { height: 44px; }
  .brand-tag { font-size: 0.62rem; letter-spacing: 0.14em; }
  .header-cta a { font-size: 0.85rem; padding: 10px 16px; }
}

/* ============================================
   HERO – Editorial Style mit Dark Drama
   ============================================ */
.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% -20%, rgba(90, 139, 191, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 110%, rgba(212, 165, 116, 0.10) 0%, transparent 55%),
    var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(243, 237, 224, 0.03) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.7;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero { padding: 60px 0 80px; }
}
.hero h1 { margin-bottom: 28px; }
.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.hero-lead {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 40px;
  line-height: 1.55;
}
.hero-meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta div { font-size: 0.92rem; color: var(--ink-mute); }
.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-meta span { color: var(--ink-mute); font-size: 0.82rem; }

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s;
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 54px;
  background: transparent;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--ink);
  color: var(--bg-deep);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

/* Hero Quote Card */
.hero-visual { position: relative; }
.hero-card {
  background:
    linear-gradient(180deg, var(--surface) 0%, var(--surface-hi) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1.5px dashed rgba(212, 165, 116, 0.25);
  border-radius: 22px;
  pointer-events: none;
}
.hero-card-content { position: relative; }
.hero-card-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.42;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: none;
}
.hero-card-quote::before {
  content: '«';
  color: var(--gold);
  font-size: 1.8em;
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 4px;
}
.hero-card-quote::after {
  content: '»';
  color: var(--gold);
  font-size: 1.8em;
  line-height: 0;
  vertical-align: -0.3em;
  margin-left: 4px;
}
.hero-card-author {
  font-size: 0.88rem;
  color: var(--ink-mute);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  z-index: 2;
}

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 110px 0; position: relative; }
section.bg-soft { background: var(--bg-soft); }
section.bg-deep { background: var(--bg-deep); }

.section-head {
  max-width: 720px;
  margin-bottom: 60px;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.15rem;
  margin-top: 16px;
}

/* ============================================
   BENTO GRID
   ============================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.bento-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  background: var(--surface-hi);
}
.bento-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle at bottom right, var(--gold-glow), transparent 65%);
  pointer-events: none;
  transition: all .35s;
  opacity: 0;
}
.bento-card:hover::after { opacity: 1; width: 180px; height: 180px; }

.bento-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.bento-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.3rem;
}
.bento-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* Featured Bento Card */
.bento-1 {
  grid-column: span 3;
  grid-row: span 2;
  background:
    linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-soft) 100%);
  color: var(--ink);
  border-color: var(--brand-soft);
  position: relative;
}
.bento-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(243, 237, 224, 0.08), transparent 50%);
  pointer-events: none;
}
.bento-1 h3 {
  color: var(--ink);
  font-size: 1.85rem;
  position: relative;
}
.bento-1 p {
  color: rgba(243, 237, 224, 0.88);
  font-size: 1.05rem;
  position: relative;
}
.bento-1 .bento-icon {
  background: rgba(243, 237, 224, 0.12);
  border-color: rgba(243, 237, 224, 0.2);
  color: var(--ink);
  position: relative;
}
.bento-1::after { display: none; }
.bento-1:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand);
  background: linear-gradient(135deg, var(--brand-soft) 0%, var(--brand-deep) 100%);
}

.bento-2 { grid-column: span 3; }
.bento-3 { grid-column: span 3; }
.bento-4 { grid-column: span 2; }
.bento-5 { grid-column: span 2; }
.bento-6 { grid-column: span 2; }
.bento-7 { grid-column: span 3; }
.bento-8 { grid-column: span 3; }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-1 { grid-column: span 2; grid-row: auto; }
  .bento-2, .bento-3, .bento-4, .bento-5, .bento-6, .bento-7, .bento-8 { grid-column: span 1; }
}
@media (max-width: 540px) {
  .bento { grid-template-columns: 1fr; }
  .bento-1, .bento-2, .bento-3, .bento-4, .bento-5, .bento-6, .bento-7, .bento-8 { grid-column: span 1; }
}

/* ============================================
   STEPS (Ablauf)
   ============================================ */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 14%;
  right: 14%;
  height: 1.5px;
  background: linear-gradient(to right, transparent, var(--line) 20%, var(--line) 80%, transparent);
  z-index: 0;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps::before { display: none; }
}
.step { position: relative; z-index: 1; }
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--gold);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-soft); }

.note {
  margin-top: 56px;
  padding: 30px 34px;
  background: var(--surface);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.note p { margin: 0; max-width: none; color: var(--ink-soft); }
.note strong { color: var(--gold); }

/* ============================================
   PROMISES
   ============================================ */
.promises {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 700px) { .promises { grid-template-columns: 1fr; } }
.promise {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  transition: all .25s;
}
.promise:hover {
  border-color: var(--gold);
  background: var(--surface-hi);
}
.promise-check {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.promise strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--ink);
}
.promise span { color: var(--ink-soft); font-size: 0.97rem; }

/* ============================================
   REGION
   ============================================ */
.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 36px 0 28px;
  list-style: none;
  padding: 0;
}
.region-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.98rem;
  color: var(--ink);
  transition: all .2s;
  font-weight: 500;
}
.region-list li:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--surface-hi);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  max-width: 820px;
}
.about-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  align-self: start;
}
.about-mark-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.about-mark-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}
.about-mark-since {
  font-size: 0.85rem;
  color: var(--ink-mute);
  font-style: italic;
}
.about-content h2 { margin-bottom: 24px; }
.about-content strong { color: var(--ink); }
.about-quote {
  margin-top: 36px;
  padding: 30px 34px;
  background: var(--surface);
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.5;
  border-left: 4px solid var(--gold);
  max-width: 70ch;
}
@media (max-width: 540px) {
  .about-mark { padding: 12px 18px; gap: 10px; flex-wrap: wrap; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all .3s;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  background: var(--surface-hi);
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.contact-card h3 {
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-card a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  word-break: break-word;
  line-height: 1.3;
}
.contact-card a:hover { color: var(--gold); }
.contact-card p {
  color: var(--ink-mute);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.55;
}
.placeholder {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-style: italic;
  color: var(--ink-mute);
  font-weight: 400;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  max-width: 880px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .25s;
}
.faq-item[open] {
  border-color: var(--gold);
  background: var(--surface-hi);
}
.faq-item summary {
  cursor: pointer;
  padding: 24px 30px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform .3s;
  flex-shrink: 0;
  margin-right: 4px;
}
.faq-item[open] summary::after {
  transform: rotate(225deg);
}
.faq-item summary:hover { color: var(--gold); }
.faq-answer {
  padding: 0 30px 26px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.faq-answer p { margin: 0; max-width: none; color: var(--ink-soft); }
@media (max-width: 540px) {
  .faq-item summary { padding: 20px 22px; font-size: 1.05rem; gap: 14px; }
  .faq-answer { padding: 0 22px 22px; }
}

/* ============================================
   STANDORT-KARTE
   ============================================ */
.map-wrap {
  margin-top: 40px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: block;
  position: relative;
}
.map-wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.map-wrap a {
  display: block;
  text-decoration: none;
  transition: opacity .2s;
}
.map-wrap a:hover { opacity: 0.9; }
.map-caption {
  padding: 14px 22px;
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.92rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.map-caption a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.map-caption a:hover { color: var(--brand); }
.map-attribution {
  padding: 8px 22px 12px;
  background: var(--surface);
  color: var(--ink-mute);
  font-size: 0.78rem;
  border-top: 1px solid var(--line-soft);
}
.map-attribution a {
  color: var(--ink-mute);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.map-attribution a:hover { color: var(--gold); }

/* ============================================
   QUICK ACTIONS
   ============================================ */
.quick-actions {
  margin-top: 56px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.quick-actions h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  color: var(--ink);
}
.quick-actions p {
  color: var(--ink-mute);
  font-size: 0.95rem;
  margin: 0 0 22px;
}
.action-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s;
  min-height: 44px;
}
.action-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.action-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--surface-hi);
}

/* ============================================
   FOOTER QR
   ============================================ */
.footer-qr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}
.footer-qr img {
  width: 96px;
  height: 96px;
  border-radius: var(--r-sm);
  display: block;
  background: var(--bg-soft);
  padding: 6px;
}
.footer-qr-text {
  font-size: 0.85rem;
  color: var(--ink-mute);
  line-height: 1.5;
  max-width: 180px;
}
.footer-qr-text strong {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700;
}
@media print {
  .site-header, .floating-cta, .quick-actions, .cta-row { display: none !important; }
  body { background: white; color: black; }
  section { padding: 20px 0; page-break-inside: avoid; }
  .container { max-width: 100%; }
  h1, h2, h3 { color: black; }
  .hero { padding: 20px 0; }
}

/* ============================================
   FLOATING CTA (Mobile)
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 14px 22px 14px 18px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 12px 36px rgba(212, 165, 116, 0.5);
  transition: all .25s;
  font-family: var(--font-body);
}
.floating-cta svg { width: 22px; height: 22px; }
.floating-cta:hover {
  background: var(--ink);
  color: var(--bg-deep);
  transform: translateY(-2px);
}
@media (max-width: 700px) { .floating-cta { display: inline-flex; } }
@media (max-width: 380px) {
  .floating-cta { padding: 12px 16px 12px 14px; font-size: 0.92rem; }
  .floating-cta svg { width: 20px; height: 20px; }
}

/* ============================================
   SVG ICONS – Bento + Contact
   ============================================ */
.bento-icon svg,
.contact-icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
  stroke-width: 1.5;
}
.bento-1 .bento-icon svg { color: var(--ink); }

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */
@media (max-width: 700px) {
  .hero-card { padding: 28px 24px; }
  .hero-card-quote { font-size: 1.15rem; line-height: 1.4; }
  .hero-meta { gap: 24px; padding-top: 22px; }
  .hero-meta strong { font-size: 1.4rem; }
  section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }
}
@media (max-width: 540px) {
  .hero { padding: 50px 0 70px; }
  .hero-meta { gap: 18px; }
  .hero-meta div { flex: 1 1 calc(50% - 9px); min-width: 0; }
  .btn { padding: 16px 24px; font-size: 0.98rem; }
  .step-num { width: 70px; height: 70px; font-size: 2rem; }
  .container { padding: 0 20px; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-deep);
  color: var(--ink-soft);
  padding: 80px 0 36px;
  border-top: 1px solid var(--line);
}
.site-footer a { color: var(--ink-soft); }
.site-footer a:hover { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.footer-brand-logo {
  height: 50px;
  width: auto;
  border-radius: 6px;
  display: block;
  box-shadow: var(--shadow-sm);
}
.footer-tagline {
  color: var(--ink-mute);
  font-size: 0.97rem;
  max-width: 32ch;
}
.footer-block h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  text-decoration: none;
  font-size: 0.97rem;
  transition: color .2s;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  font-size: 0.88rem;
  color: var(--ink-mute);
}
.business-pill {
  background: var(--surface);
  padding: 10px 18px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.88rem;
  border: 1px solid var(--line);
  transition: all .2s;
}
.business-pill:hover {
  background: var(--surface-hi);
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.page-header {
  padding: 80px 0 60px;
  background:
    radial-gradient(ellipse at 80% -20%, rgba(90, 139, 191, 0.12) 0%, transparent 55%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.page-header h1 { margin-bottom: 14px; font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-header p { color: var(--ink-soft); margin: 0; max-width: 60ch; }

.legal { padding: 70px 0 90px; }
.legal h2 {
  margin-top: 2.8em;
  margin-bottom: 0.6em;
  font-size: clamp(1.4rem, 2.5vw, 1.7rem);
  color: var(--ink);
}
.legal h2:first-of-type { margin-top: 0.3em; }
.legal h3 {
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.legal p, .legal ul { max-width: 70ch; color: var(--ink-soft); }
.legal strong { color: var(--ink); }
.legal ul { padding-left: 1.4em; margin: 0 0 1em; }
.legal li { margin-bottom: 0.5em; }
.legal address {
  font-style: normal;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-md);
  padding: 24px 28px;
  margin: 20px 0 28px;
  max-width: 520px;
  color: var(--ink);
}
.legal address strong { color: var(--ink); }

/* ============================================
   ANIMATIONS
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: reveal .85s cubic-bezier(.4, 0, .2, 1) forwards;
  }
  .reveal:nth-child(1) { animation-delay: 0.05s; }
  .reveal:nth-child(2) { animation-delay: 0.15s; }
  .reveal:nth-child(3) { animation-delay: 0.25s; }
  .reveal:nth-child(4) { animation-delay: 0.35s; }
  .reveal:nth-child(5) { animation-delay: 0.45s; }
  @keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
  }
}
