/* ==========================================================================
   CLEARVIEW ANALYSIS — Stylesheet
   Editorial. Refined. Analytical.
   ========================================================================== */

/* --- Design tokens --- */
:root {
  /* Colors — sourced from logo, more contrast */
  --black:        #0A0E16;
  --navy-deep:    #08111F;
  --navy:         #0E1F35;
  --navy-mid:     #1A2D4D;
  --navy-soft:    #2C4368;

  --gold:         #B8924D;
  --gold-light:   #D4B574;
  --gold-pale:    #E8D9B5;
  --gold-deep:    #9A7A3F;

  --cream:        #F4EFE3;
  --cream-warm:   #ECE4D2;
  --paper:        #F8F4EA;
  --white:        #FFFFFF;

  --ink:          #131A26;
  --text:         #1F2733;
  --text-soft:    #4A5363;
  --text-muted:   #6E7889;

  --line:         #DDD5C2;
  --line-soft:    rgba(184, 146, 77, 0.22);

  /* Typography — System fonts only (no external Google Fonts for DSGVO) */
  --font-display: 'Cormorant Garamond', 'Garamond', 'EB Garamond', 'Hoefler Text', 'Times New Roman', Georgia, serif;
  --font-body:    'Lora', Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Times New Roman', serif;

  /* Layout */
  --container:    1140px;
  --reading:      720px;
  --pad-x:        clamp(1.25rem, 4vw, 3rem);
  --section:      clamp(4rem, 9vw, 7rem);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
table { border-collapse: collapse; }

/* --- Base --- */
body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.005em;
}

/* Subtle paper texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(rgba(15,31,53,0.018) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.6;
}

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

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 500; }
h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 500; }
h4 { font-size: clamp(1.2rem, 1.6vw, 1.4rem); font-weight: 600; }

p { margin: 0 0 1.2em; }
p strong { color: var(--navy); font-weight: 600; }

em, .italic { font-style: italic; }

.lead {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
  line-height: 1.45;
  font-weight: 400;
  color: var(--navy);
  font-style: italic;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow.line {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.eyebrow.line::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}

/* --- Layout helpers --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 1;
}

.reading {
  max-width: var(--reading);
}

.section {
  padding: var(--section) 0;
  position: relative;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section.dark {
  background: var(--navy);
  color: var(--cream);
}
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: var(--cream); }
.section.dark .lead { color: var(--gold-light); }
.section.dark p strong { color: var(--gold-light); }
.section.dark .eyebrow { color: var(--gold-light); }
.section.dark .eyebrow.line::before { background: var(--gold-light); }
.section.dark .prose,
.section.dark .prose p,
.section.dark .prose li { color: rgba(247,244,237,0.85); }
.section.dark .points li { color: rgba(247,244,237,0.88); }
.section.dark .points li::before { background: var(--gold-light); }
.section.dark blockquote { color: var(--gold-light); border-left-color: var(--gold-light); }

.section.warm {
  background: var(--cream-warm);
}

/* --- Header --- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(140%);
}

.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem var(--pad-x) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.brand img {
  height: 130px;
  width: auto;
  transition: height 200ms ease;
}
@media (max-width: 700px) {
  .brand img { height: 100px; }
  .site-header__inner { padding-top: 1rem; }
}
.brand__name {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 1.4rem 0 1.2rem;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .nav { display: none; }
}

.nav a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  padding: 0.5rem 0.95rem;
  border-radius: 2px;
  transition: color 200ms ease, background 200ms ease;
  position: relative;
  letter-spacing: 0.02em;
}
.nav a:hover { color: var(--navy); }
.nav a.active {
  color: var(--navy);
  font-weight: 600;
}
.nav a.active::after {
  content: '';
  position: absolute;
  left: 0.95rem; right: 0.95rem;
  bottom: 0.2rem;
  height: 1px;
  background: var(--gold);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 8px 0;
  position: absolute;
  right: var(--pad-x);
  top: 1.5rem;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--navy);
  transition: transform 200ms ease;
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
}

.mobile-nav {
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--line);
  margin-top: 1rem;
  width: 100%;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.9rem var(--pad-x);
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  color: var(--text);
  text-align: left;
}
.mobile-nav a.active { color: var(--navy); font-weight: 600; }
@media (min-width: 721px) {
  .mobile-nav { display: none !important; }
}

/* --- Hero --- */
.hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(ellipse at center top, rgba(184,146,77,0.10), transparent 60%),
    var(--cream);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero__inner {
  max-width: 920px;
  margin: 0 auto;
}
.hero h1 {
  margin: 1.5rem auto 1.5rem;
  font-weight: 400;
  max-width: 880px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero .lead {
  margin: 1.5rem auto 2.5rem;
  max-width: 680px;
}
.hero .claim {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy);
  margin-top: 2rem;
  letter-spacing: 0.03em;
}
.hero .claim::before, .hero .claim::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 0.9rem 0.25em;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

/* --- Section anatomy --- */
.section__intro {
  max-width: 820px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section__title {
  margin: 0.6rem 0 1.5rem;
}

.section__lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 640px;
}

/* --- Prose --- */
.prose {
  max-width: var(--reading);
  font-size: 1.06rem;
  line-height: 1.8;
}
.prose > * + * { margin-top: 1.1em; }
.prose h2 { margin-top: 2.5em; }
.prose h3 { margin-top: 2em; margin-bottom: 0.6em; }
.prose ul, .prose ol {
  padding-left: 1.5em;
  margin: 0.8em 0 1.2em;
}
.prose li {
  margin-bottom: 0.45em;
  padding-left: 0.3em;
}
.prose ul li::marker { color: var(--gold); }
.prose blockquote {
  border-left: 2px solid var(--gold);
  padding: 0.3em 0 0.3em 1.4em;
  margin: 1.5em 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.4;
}

/* --- Hero feelings (drei kurze Anker-Zeilen im Hero) --- */
.hero-feelings {
  margin: 1.8rem auto 2.2rem;
  max-width: 540px;
}
.hero-feelings p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--navy);
  line-height: 1.4;
  margin: 0.3rem 0;
}

/* --- Strong bullet list (mehr Wucht als .points) --- */
.points-strong {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0;
  display: grid;
  gap: 1rem;
}
.points-strong li {
  position: relative;
  padding: 0.5rem 0 0.5rem 2rem;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text);
  border-left: 2px solid var(--line-soft);
  padding-left: 1.5rem;
  transition: border-color 200ms ease, background 200ms ease;
}
.points-strong li:hover {
  border-left-color: var(--gold);
}
.section.dark .points-strong li {
  color: rgba(247,244,237,0.9);
  border-left-color: rgba(184,146,77,0.3);
}
.section.dark .points-strong li:hover {
  border-left-color: var(--gold-light);
}

/* --- Contrast block (X kann Y. Trotzdem Z.) --- */
.contrast-block {
  margin: 2.5rem 0;
  display: grid;
  gap: 1.5rem;
}
.contrast-block p {
  margin: 0;
  padding: 1.2rem 1.5rem;
  background: var(--paper);
  border-left: 3px solid var(--gold);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--navy);
}
.contrast-block p em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}

/* --- Markenzeile / Big Claim (drei kurze Zeilen) --- */
.big-claim {
  margin: 3rem 0 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  text-align: center;
}
.big-claim p {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin: 0.3rem 0;
  letter-spacing: 0.01em;
}
.big-claim p:last-child {
  font-style: italic;
  color: var(--gold-deep);
}

/* --- Big quote (im dunklen Markenzeichen-Block) --- */
.big-quote {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.3;
  color: var(--cream);
  font-weight: 400;
  margin: 0;
}
.big-quote em {
  font-style: italic;
  color: var(--gold-light);
}

/* --- Cascade (Was nicht erkannt wird...) --- */
.cascade {
  margin: 2.5rem 0;
  padding: 1.5rem 0 1.5rem 1.6rem;
  border-left: 2px solid var(--gold);
  background: linear-gradient(to right, rgba(184, 146, 77, 0.05), transparent);
}
.cascade p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.45;
  color: var(--navy);
  margin: 0.4rem 0;
  font-weight: 500;
}
.cascade p:last-child {
  color: var(--gold-deep);
  font-style: italic;
}

/* --- Pillar cards (Säulen mit Link) --- */
.pillar {
  display: block;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  text-decoration: none;
  color: inherit;
  transition: background 220ms ease, transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  position: relative;
  margin-bottom: 1.2rem;
  box-shadow: 0 1px 3px rgba(15, 31, 53, 0.04);
}
.pillar:hover {
  background: var(--paper);
  border-left-color: var(--navy);
  transform: translateX(3px);
  box-shadow: 0 6px 16px rgba(15, 31, 53, 0.10);
}
.pillar__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.7rem;
}
.pillar__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin: 0;
}
.pillar__link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.pillar__link::after {
  content: '→';
  font-size: 1.15em;
  transition: transform 200ms ease;
}
.pillar:hover .pillar__link::after { transform: translateX(4px); }
.pillar__text {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
}

/* Pull quote — for emotional anchor lines */
.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.35;
  color: var(--navy);
  text-align: center;
  max-width: 760px;
  margin: clamp(2rem, 4vw, 3.5rem) auto;
  padding: 0 1rem;
  position: relative;
}
.pullquote::before, .pullquote::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.2rem auto;
}

/* --- Cards / grids --- */
.grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 800px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--cream);
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
  position: relative;
}
.card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}
.card__text {
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--text-soft);
}

/* --- Bullet list (decorative) --- */
.points {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.65rem;
}
.points li {
  position: relative;
  padding: 0 0 0 1.5rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
}
.points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* --- Steps --- */
.steps {
  display: grid;
  gap: 0;
  margin: 2rem 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}
.step__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.step__text {
  color: var(--text-soft);
  line-height: 1.65;
}
@media (max-width: 600px) {
  .step { grid-template-columns: 1fr; gap: 0.4rem; }
  .step__num { font-size: 1.8rem; }
}

/* --- Pricing --- */
.price-block {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--paper);
  border: 1px solid var(--line);
  margin-bottom: 1.25rem;
  position: relative;
}
.price-block__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.price-block__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
}
.price-block__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}
.price-block__price small {
  font-size: 0.65em;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 400;
  margin-right: 0.3em;
}
.price-block__intro {
  color: var(--text-soft);
  font-size: 1.02rem;
  margin-bottom: 1rem;
}
.price-block__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.8rem;
  letter-spacing: 0.02em;
}

.price-block.feature {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.price-block.feature .price-block__title { color: var(--cream); }
.price-block.feature .price-block__price { color: var(--gold-light); }
.price-block.feature .price-block__intro { color: rgba(247,244,237,0.78); }
.price-block.feature .price-block__head { border-color: rgba(247,244,237,0.2); }
.price-block.feature p, .price-block.feature li { color: rgba(247,244,237,0.85); }
.price-block.feature .points li::before { background: var(--gold-light); }
.price-block.feature .price-block__meta { color: var(--gold-light); }

/* Price table */
.price-table {
  width: 100%;
  margin: 2rem 0;
  font-size: 0.96rem;
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
}
.price-table th, .price-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.price-table th {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.price-table td.price {
  text-align: right;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--gold);
  white-space: nowrap;
}
.price-table tr:last-child td { border-bottom: none; }
@media (max-width: 600px) {
  .price-table { font-size: 0.85rem; }
  .price-table th, .price-table td { padding: 0.6rem 0.4rem; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.95rem 1.6rem;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--cream);
  transition: all 220ms ease;
  position: relative;
}
.btn:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
}
.btn::after {
  content: '→';
  font-size: 1.1em;
  transition: transform 200ms ease;
}
.btn:hover::after { transform: translateX(3px); }

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

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
}
.btn--gold:hover { background: #A98140; border-color: #A98140; }

/* --- Two-column block --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
}

/* --- Contact block --- */
.contact-block {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.contact-block::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  border: 1px solid rgba(212,181,116,0.15);
  border-radius: 50%;
}
.contact-block::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border: 1px solid rgba(212,181,116,0.25);
  border-radius: 50%;
}
.contact-block h2, .contact-block h3 { color: var(--cream); }
.contact-block .eyebrow { color: var(--gold-light); }
.contact-block a { color: var(--gold-light); border-bottom: 1px solid rgba(212,181,116,0.4); }
.contact-block a:hover { color: var(--gold); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}
.contact-item__label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact-item__value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.4;
}

/* --- Footer --- */
.site-footer {
  background: var(--black);
  color: rgba(247,244,237,0.78);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  font-size: 0.93rem;
  margin-top: 0;
}
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 900px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand .footer-mark {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1;
}
.footer-brand .footer-mark .v {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.footer-brand .footer-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: rgba(247,244,237,0.9);
  margin-top: 0.2rem;
  letter-spacing: 0.05em;
}
.footer-brand p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
  margin: 1rem 0 0;
  line-height: 1.4;
}

.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.footer-col p, .footer-col li {
  line-height: 1.7;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.4rem;
}
.footer-col a {
  color: rgba(247,244,237,0.78);
  border-bottom: 1px solid transparent;
  transition: color 200ms, border-color 200ms;
}
.footer-col a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.footer-bottom {
  max-width: var(--container);
  margin: 3rem auto 0;
  padding: 1.5rem var(--pad-x) 0;
  border-top: 1px solid rgba(247,244,237,0.12);
  font-size: 0.82rem;
  color: rgba(247,244,237,0.55);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}
.footer-disclaimer {
  font-style: italic;
}

/* --- Utility --- */
.spacer-sm { height: 1.5rem; }
.spacer    { height: 3rem; }
.spacer-lg { height: 5rem; }

.gold-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.gold-line--center { margin-left: auto; margin-right: auto; }

.text-center { text-align: center; }
.text-right { text-align: right; }

/* Quote styling for the central pullquote */
.box {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  margin: 1.5rem 0;
}
.box--gold {
  border-color: var(--gold);
  border-left-width: 3px;
}

/* Anchor offset */
[id] { scroll-margin-top: 90px; }

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero .lead, .hero .eyebrow, .hero .claim, .hero .btn {
  animation: fadeUp 0.7s ease-out backwards;
}
.hero .eyebrow { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero .lead { animation-delay: 0.4s; }
.hero .btn { animation-delay: 0.55s; }
.hero .claim { animation-delay: 0.65s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* --- Print fallback --- */
@media print {
  .site-header, .site-footer { background: white; color: black; }
  .nav, .nav-toggle, .mobile-nav { display: none !important; }
  body::before { display: none; }
  .section.dark, .contact-block, .price-block.feature { background: white; color: black; }
  .section.dark *, .contact-block *, .price-block.feature * { color: black !important; }
}
