/* =========================================================
   RaritätGenäht – Landingpage Styles
   Mobile First · Editorial · DSGVO-konform (lokale Fonts)
   ========================================================= */

/* ---------- FONTS (lokal) ---------- */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-light-italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Mono';
  src: url('../fonts/dm-mono-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Farben (aus Konfigurator) */
  --c-bg: #fafaf8;
  --c-bg-soft: #f4f1ea;
  --c-bg-warm: #ede8dd;
  --c-text: #1a1a18;
  --c-text-soft: #5c5b56;
  --c-text-muted: #8c8a82;
  --c-gold: #b8945a;
  --c-gold-dark: #9c7a44;
  --c-gold-soft: #e9dbc4;
  --c-dark: #2d2d2a;
  --c-green: #1D9E75;
  --c-border: #e8e6e0;
  --c-border-strong: #d4d0c4;

  /* Typografie */
  --ff-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --ff-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff-mono: 'DM Mono', 'SF Mono', Menlo, monospace;

  /* Spacing */
  --s-xs: 0.5rem;
  --s-sm: 1rem;
  --s-md: 1.5rem;
  --s-lg: 2.5rem;
  --s-xl: 4rem;
  --s-2xl: 6rem;
  --s-3xl: 9rem;

  /* Radien */
  --r-card: 12px;
  --r-btn: 999px;
  --r-img: 8px;

  /* Container */
  --container: 1240px;
  --container-narrow: 920px;

  /* Easing */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 300; line-height: 1.15; letter-spacing: -0.01em; }

::selection { background: var(--c-gold-soft); color: var(--c-text); }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-md);
}

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

@media (min-width: 900px) {
  .section { padding: var(--s-3xl) 0; }
  .container { padding: 0 var(--s-lg); }
}

/* ---------- TYPOGRAFIE SYSTEM ---------- */
.eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin: 0 0 var(--s-md) 0;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--c-gold);
  vertical-align: middle;
  margin-right: 0.75rem;
}

.section__title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin: 0 0 var(--s-md);
  letter-spacing: -0.015em;
}
.section__title em {
  font-style: italic;
  color: var(--c-gold);
}

.section__lead {
  font-size: 1.1rem;
  color: var(--c-text-soft);
  max-width: 56ch;
  margin: 0 0 var(--s-lg);
}

.section__head { margin-bottom: var(--s-xl); max-width: 640px; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__head--center .eyebrow::before { display: none; }

.section__cta { text-align: center; margin-top: var(--s-xl); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--r-btn);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn svg { transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--c-dark);
  color: var(--c-bg);
  border-color: var(--c-dark);
}
.btn--primary:hover {
  background: var(--c-text);
  border-color: var(--c-text);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26, 26, 24, 0.15);
}

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border-strong);
}
.btn--ghost:hover {
  background: var(--c-text);
  color: var(--c-bg);
  border-color: var(--c-text);
}

.btn--gold {
  background: var(--c-gold);
  color: #fff;
  border-color: var(--c-gold);
}
.btn--gold:hover {
  background: var(--c-gold-dark);
  border-color: var(--c-gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184, 148, 90, 0.3);
}

.btn--large { padding: 1.05rem 2rem; font-size: 1rem; }
.btn--small { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 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 var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--c-border);
  background: rgba(250, 250, 248, 0.95);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: var(--s-md);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--ff-display);
  text-decoration: none;
  color: var(--c-text);
}
.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--c-text);
  border-radius: 50%;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.brand__name {
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.brand__name em {
  font-style: italic;
  color: var(--c-gold);
}

.nav {
  display: none;
  gap: var(--s-lg);
  font-size: 0.95rem;
}
.nav a {
  color: var(--c-text);
  position: relative;
  padding: 0.3rem 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--c-gold);
  transition: width 0.3s var(--ease);
}
.nav a:hover::after { width: 100%; }
.nav a:hover { color: var(--c-gold); }

@media (min-width: 1024px) {
  .nav { display: flex; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

.site-header .btn--primary {
  display: none;
}
@media (min-width: 1024px) {
  .site-header .btn--primary { display: inline-flex; }
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: var(--s-md);
  border-top: 1px solid var(--c-border);
  background: var(--c-bg);
}
.mobile-nav a {
  padding: var(--s-md) 0;
  font-size: 1.1rem;
  font-family: var(--ff-display);
  border-bottom: 1px solid var(--c-border);
}
.mobile-nav a:last-child { border-bottom: none; margin-top: var(--s-md); }
.mobile-nav[hidden] { display: none; }

/* ---------- HERO ---------- */
.hero {
  padding: var(--s-xl) 0 var(--s-2xl);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(184, 148, 90, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(184, 148, 90, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .hero { padding: var(--s-2xl) 0 var(--s-3xl); }
  .hero__inner {
    grid-template-columns: 1.05fr 1fr;
    gap: var(--s-2xl);
  }
}

.hero__copy { max-width: 580px; }

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-lg);
}
.hero__title em {
  font-style: italic;
  color: var(--c-gold);
  font-weight: 300;
}

.hero__lead {
  font-size: 1.15rem;
  color: var(--c-text-soft);
  margin: 0 0 var(--s-lg);
  max-width: 50ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-sm);
  margin-bottom: var(--s-lg);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-md);
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.dot {
  width: 6px;
  height: 6px;
  background: var(--c-gold);
  border-radius: 50%;
  display: inline-block;
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--s-md);
  min-height: 480px;
}

.hero__image {
  border-radius: var(--r-img);
  overflow: hidden;
  background: var(--c-bg-soft);
  position: relative;
}
.hero__image--main {
  grid-column: 1;
  grid-row: 1 / span 2;
  aspect-ratio: 3/4;
}
.hero__image--accent {
  grid-column: 2;
  grid-row: 1;
  aspect-ratio: 1;
  align-self: end;
}

.hero__seal {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  justify-self: center;
  width: 120px;
  height: 120px;
  color: var(--c-gold);
  animation: rotate 30s linear infinite;
}
.hero__seal .seal__center {
  animation: rotate 30s linear infinite reverse;
  transform-origin: 60px 60px;
  font-family: var(--ff-display);
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@media (min-width: 900px) {
  .hero__visual { min-height: 620px; }
}

/* ---------- PLACEHOLDER (für Bilder) ---------- */
.placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--c-bg-soft);
  color: var(--c-gold);
  border: 1px dashed var(--c-border-strong);
  border-radius: var(--r-img);
  position: relative;
  overflow: hidden;
}
.placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 20px,
      rgba(184, 148, 90, 0.04) 20px,
      rgba(184, 148, 90, 0.04) 21px
    );
  pointer-events: none;
}
.placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}
.placeholder span {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

/* ---------- SHIRTS / FEATURES ---------- */
.section--shirts {
  background: var(--c-bg);
}

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-lg);
  margin-top: var(--s-xl);
}
@media (min-width: 700px) {
  .features { grid-template-columns: repeat(2, 1fr); gap: var(--s-xl) var(--s-lg); }
}
@media (min-width: 1100px) {
  .features { grid-template-columns: repeat(4, 1fr); }
}

.feature {
  position: relative;
  padding-top: var(--s-md);
  border-top: 1px solid var(--c-border);
}
.feature__num {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--c-gold);
  margin-bottom: var(--s-md);
}
.feature h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  margin: 0 0 var(--s-sm);
  letter-spacing: -0.01em;
}
.feature p {
  color: var(--c-text-soft);
  margin: 0;
  font-size: 0.97rem;
}

/* ---------- STEPS ---------- */
.section--steps {
  background: var(--c-bg-soft);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-lg);
  margin-top: var(--s-xl);
  counter-reset: steps;
}
@media (min-width: 700px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    position: relative;
  }
  .steps::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--c-border-strong);
    z-index: 0;
  }
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--c-bg);
  border: 1px solid var(--c-gold);
  border-radius: 50%;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--c-gold);
  margin-bottom: var(--s-md);
}
.step h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  margin: 0 0 var(--s-xs);
}
.step p {
  color: var(--c-text-soft);
  margin: 0;
  font-size: 0.95rem;
  max-width: 24ch;
  margin-inline: auto;
}

/* ---------- RG-ABENDE ---------- */
.section--rg-abende {
  background: var(--c-dark);
  color: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.section--rg-abende::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(184, 148, 90, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.rg-abende__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xl);
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .rg-abende__inner {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--s-2xl);
    align-items: center;
  }
}

.rg-abende__visual { order: -1; }
@media (min-width: 900px) { .rg-abende__visual { order: 0; } }

.placeholder--large {
  min-height: 400px;
  aspect-ratio: 4/5;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(184, 148, 90, 0.35);
}
.placeholder--large svg {
  width: 64px;
  height: 64px;
}
.placeholder--large span { color: rgba(255,255,255,0.5); }

.rg-abende__copy .eyebrow { color: var(--c-gold-soft); }
.rg-abende__copy .section__title { color: var(--c-bg); }
.rg-abende__copy .section__title em { color: var(--c-gold); }
.rg-abende__copy .section__lead { color: rgba(250, 250, 248, 0.75); }

.check-list {
  margin: 0 0 var(--s-lg);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.check-list li {
  color: rgba(250, 250, 248, 0.92);
  font-size: 1rem;
  padding-left: 0;
}

.rg-abende__note {
  background: rgba(250, 250, 248, 0.04);
  border-left: 2px solid var(--c-gold);
  padding: var(--s-md);
  font-size: 0.95rem;
  color: rgba(250, 250, 248, 0.8);
  margin: 0 0 var(--s-lg);
  border-radius: 0 var(--r-card) var(--r-card) 0;
}
.rg-abende__note strong { color: var(--c-bg); font-weight: 500; }

.gift-box {
  background: linear-gradient(135deg, rgba(184, 148, 90, 0.18), rgba(184, 148, 90, 0.06));
  border: 1px solid rgba(184, 148, 90, 0.3);
  border-radius: var(--r-card);
  padding: var(--s-md);
  margin: 0 0 var(--s-lg);
}
.gift-box__title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  margin: 0 0 var(--s-xs);
  color: var(--c-gold-soft);
}
.gift-box ul { display: flex; flex-direction: column; gap: 0.4rem; }
.gift-box li {
  color: rgba(250, 250, 248, 0.95);
  font-size: 1rem;
}
.gift-box em { color: var(--c-gold); font-style: italic; }

.rg-abende__warning {
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--c-gold-soft);
  margin: 0 0 var(--s-lg);
}

.section--rg-abende .btn--primary {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: #fff;
}
.section--rg-abende .btn--primary:hover {
  background: var(--c-gold-dark);
  border-color: var(--c-gold-dark);
}

/* ---------- GUTSCHEINE ---------- */
.section--gift {
  background: var(--c-bg);
}
.gift__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xl);
  align-items: center;
  padding: var(--s-xl);
  background: var(--c-bg-warm);
  border-radius: var(--r-card);
  position: relative;
  overflow: hidden;
}
@media (min-width: 900px) {
  .gift__inner {
    grid-template-columns: 1fr 1.2fr;
    padding: var(--s-2xl);
  }
}

.gift__decor {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
}
.gift__decor svg { max-width: 280px; width: 100%; }

.gift__copy .eyebrow { color: var(--c-gold-dark); }

/* ---------- GALLERY ---------- */
.section--gallery { background: var(--c-bg); }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-md);
  margin-top: var(--s-xl);
}
@media (min-width: 700px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 260px 260px;
    gap: var(--s-md);
  }
}

.gallery__item {
  border-radius: var(--r-img);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  transition: transform 0.4s var(--ease);
}
.gallery__item:hover { transform: translateY(-4px); }
.gallery__item .placeholder { aspect-ratio: auto; height: 100%; }

@media (min-width: 700px) {
  .gallery__item { aspect-ratio: auto; }
  .gallery__item--tall {
    grid-row: span 2;
  }
  .gallery__item--wide {
    grid-column: span 2;
  }
}

/* ---------- ÜBER MICH ---------- */
.section--about {
  background: var(--c-bg-soft);
  position: relative;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xl);
  align-items: start;
}
@media (min-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr 1.3fr;
    gap: var(--s-2xl);
  }
}

.about__visual {
  position: relative;
}
.placeholder--portrait {
  aspect-ratio: 3/4;
  min-height: 380px;
}
@media (min-width: 900px) {
  .about__visual { position: sticky; top: 100px; }
}

.prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--c-text);
  margin: 0 0 var(--s-md);
}
.prose__highlight {
  font-family: var(--ff-display);
  font-size: 1.45rem !important;
  font-style: italic;
  line-height: 1.4 !important;
  color: var(--c-gold-dark) !important;
  border-left: 2px solid var(--c-gold);
  padding-left: var(--s-md);
  margin: var(--s-lg) 0 !important;
}

.signature {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: var(--s-lg) !important;
}
.signature span:first-child {
  font-size: 0.95rem;
  color: var(--c-text-soft);
}
.signature__name {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 2rem !important;
  color: var(--c-text);
  line-height: 1 !important;
}

/* ---------- REVIEWS ---------- */
.section--reviews {
  background: var(--c-bg);
}

.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-md);
  margin-bottom: var(--s-xl);
}
@media (min-width: 800px) {
  .reviews { grid-template-columns: repeat(3, 1fr); gap: var(--s-lg); }
}

.review {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: var(--s-lg);
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
}
.review__stars {
  color: var(--c-gold);
  font-size: 1.05rem;
  letter-spacing: 0.15em;
}
.review blockquote {
  margin: 0;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--c-text);
}
.review blockquote p { margin: 0; }
.review__author {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--c-text-muted);
  text-transform: uppercase;
  margin-top: auto;
  padding-top: var(--s-sm);
  border-top: 1px solid var(--c-border);
}

.reviews__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-sm);
}

/* ---------- FINAL CTA ---------- */
.section--final-cta {
  background: var(--c-dark);
  color: var(--c-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section--final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184, 148, 90, 0.12) 0%, transparent 60%);
}
.final-cta {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.final-cta__title {
  font-family: var(--ff-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin: 0 0 var(--s-md);
}
.final-cta__lead {
  font-size: 1.1rem;
  color: rgba(250, 250, 248, 0.75);
  margin: 0 0 var(--s-lg);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-border);
  padding-top: var(--s-2xl);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xl);
}
@media (min-width: 700px) {
  .footer__inner {
    grid-template-columns: 1.5fr repeat(2, 1fr) 1.3fr;
    gap: var(--s-lg);
  }
}

.brand--footer {
  margin-bottom: var(--s-md);
}
.footer__brand p {
  color: var(--c-text-soft);
  font-size: 0.95rem;
  margin: 0;
}

.footer__col h4 {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin: 0 0 var(--s-md);
  font-weight: 400;
}
.footer__col a {
  display: block;
  padding: 0.35rem 0;
  color: var(--c-text);
  font-size: 0.95rem;
}
.footer__col a:hover { color: var(--c-gold); }

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--s-md);
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-border-strong);
  border-radius: 50%;
  padding: 0;
  transition: all 0.2s var(--ease);
}
.footer__social a:hover {
  background: var(--c-text);
  color: var(--c-bg);
  border-color: var(--c-text);
}

.footer__bottom {
  margin-top: var(--s-2xl);
  border-top: 1px solid var(--c-border);
  padding: var(--s-md) 0;
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--c-text-muted);
}
@media (min-width: 700px) {
  .footer__bottom-inner { flex-direction: row; justify-content: space-between; }
}
.footer__dev a { color: var(--c-text-soft); text-decoration: underline; text-decoration-color: var(--c-border-strong); }
.footer__dev a:hover { color: var(--c-gold); }

/* ---------- ANIMATIONS ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__seal { animation: none; }
}
