/*
Theme Name:  Hornemann Fotografie
Theme URI:   https://anne-hornemann.de
Author:      Anne Hornemann
Description: Altrosa · Burgund · Gold. Vollständiges Theme für Musikerportraits, Hochzeiten und Familien.
Version:     3.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License:     GPL v2 or later
Text Domain: hornemann
*/

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --burg-deep:    #3A0F18;
  --burg:         #4E1520;
  --burg-mid:     #6B2030;
  --burg-light:   #8A3040;
  --rose:         #E8C5BC;
  --rose-deep:    #D4AFA6;
  --rose-muted:   #C09890;
  --cream:        #F2EDE4;
  --cream-deep:   #EDE5D6;
  --gold:         #BF8C3A;
  --gold-light:   #D4A85C;
  --ink:          #1A1410;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Crimson Pro', Georgia, serif;
  --font-ui:      'Jost', sans-serif;
  --gutter:       clamp(1.5rem, 5vw, 5rem);
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --dur:          0.5s;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: 1.125rem; line-height: 1.7; overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap  { max-width: 1280px; margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 860px; margin-inline: auto; padding-inline: var(--gutter); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.t-display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.t-italic { font-style: italic; }
.t-gold   { color: var(--gold) !important; }
.t-rose   { color: var(--rose) !important; }
.t-burg   { color: var(--burg) !important; }

.t-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn--burg   { background: var(--burg);  border-color: var(--burg);  color: var(--rose); }
.btn--burg:hover { background: var(--burg-mid); border-color: var(--burg-mid); }
.btn--outline-dark { background: transparent; border-color: rgba(78,21,32,0.3); color: var(--burg); }
.btn--outline-dark:hover { border-color: var(--burg); }
.btn--outline-light { background: transparent; border-color: rgba(232,197,188,0.35); color: var(--rose); }
.btn--outline-light:hover { border-color: var(--rose); }
.btn--gold { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn--gold:hover { background: var(--gold); color: var(--cream); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding: 1.5rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--dur) var(--ease), padding 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(78,21,32,0.96);
  backdrop-filter: blur(18px);
  padding: 1rem var(--gutter);
  border-bottom: 1px solid rgba(232,197,188,0.1);
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--burg);
  line-height: 1;
}
.site-logo small {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.1em;
}
.site-header.scrolled .site-logo { color: var(--rose); }

/* Light-modus Header (Hochzeit/Familie) */
body.light-header .site-logo { color: var(--ink); }
body.light-header .site-header.scrolled .site-logo { color: var(--rose); }

.primary-nav { display: flex; align-items: center; gap: 2.5rem; }
.primary-nav a {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(78,21,32,0.5);
  position: relative;
  transition: color 0.3s;
}
.site-header.scrolled .primary-nav a { color: rgba(232,197,188,0.5); }
.primary-nav a:hover { color: var(--burg); }
.site-header.scrolled .primary-nav a:hover { color: var(--rose); }
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.primary-nav a:hover::after { width: 100%; }
.primary-nav .nav-cta {
  color: var(--gold) !important;
  border-bottom: 1px solid rgba(191,140,58,0.4);
  padding-bottom: 1px;
}
.primary-nav .nav-cta::after { display: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
.nav-toggle__bar {
  display: block;
  width: 26px; height: 1px;
  background: var(--burg);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.site-header.scrolled .nav-toggle__bar { background: var(--rose); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* Mobile Nav */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(78,21,32,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 150;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a {
    font-family: var(--font-display) !important;
    font-size: 2.5rem !important;
    letter-spacing: -0.02em !important;
    font-weight: 300 !important;
    color: var(--rose) !important;
    text-transform: none !important;
  }
  .primary-nav .nav-cta {
    color: var(--gold) !important;
    font-size: 2rem !important;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--rose);
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 8rem var(--gutter) 5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(78,21,32,0.06);
  pointer-events: none;
}
.hero__bg-ring {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(78,21,32,0.04);
  pointer-events: none;
}
.hero__eyebrow {
  color: rgba(78,21,32,0.45);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--burg);
  opacity: 0.35;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--burg);
  margin-bottom: 2rem;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: rgba(78,21,32,0.6);
  max-width: 46ch;
  margin-bottom: 2.5rem;
}
.hero__ctas { display: flex; gap: 0.875rem; flex-wrap: wrap; }
.hero__aside {
  position: absolute;
  right: var(--gutter);
  bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.hero__aside-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(78,21,32,0.25);
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(78,21,32,0.3), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.2;transform:scaleY(.7)} 50%{opacity:.7;transform:scaleY(1)} }

/* ============================================================
   SEKTIONEN
   ============================================================ */
.s-rose     { background: var(--rose);      color: var(--burg); }
.s-rose-deep{ background: var(--rose-deep); color: var(--burg); }
.s-burg     { background: var(--burg);      color: var(--rose); }
.s-burg-deep{ background: var(--burg-deep); color: var(--rose); }
.s-cream    { background: var(--cream);     color: var(--ink);  }
.s-cream-deep{background: var(--cream-deep);color: var(--ink);  }
.pad { padding: 6rem var(--gutter); }
.pad-sm { padding: 4rem var(--gutter); }

.section-line {
  position: relative;
}
.section-line::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,197,188,0.15), transparent);
}

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.services-header { margin-bottom: 4rem; }
.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--rose);
}
.services-header h2 em { font-style: italic; color: var(--gold); }

.services-list li {
  border-top: 1px solid rgba(232,197,188,0.1);
}
.services-list li:last-child { border-bottom: 1px solid rgba(232,197,188,0.1); }

.service-row {
  display: grid;
  grid-template-columns: 3rem 1fr 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  cursor: pointer;
  transition: opacity 0.3s;
  text-decoration: none;
  color: inherit;
}
.service-row:hover { opacity: 0.7; }

.service-row__num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.service-row__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--rose);
}
.service-row__desc {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(232,197,188,0.4);
}
.service-row__cta {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* ============================================================
   SPLIT-LAYOUT (Bild + Text)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(78,21,32,0.08);
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--rose-deep);
}
.split__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.split__img:hover img { transform: scale(1.04); }
.split__img-placeholder {
  width: 100%; height: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-muted);
}
.split__content {
  padding: 5rem var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.split__num {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.split__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.split__title em { font-style: italic; }
.split__text {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 40ch;
  opacity: 0.7;
}

/* ============================================================
   STATS / FAKTEN-BAND
   ============================================================ */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(78,21,32,0.12);
}
.stat-item {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stat-item__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--burg);
}
.s-burg .stat-item__num { color: var(--rose); }
.stat-item__label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.45;
}

/* ============================================================
   PULLQUOTE
   ============================================================ */
.pullquote {
  border-left: 2px solid var(--gold);
  padding: 0.5rem 0 0.5rem 2rem;
  max-width: 900px;
  position: relative;
}
.pullquote__mark {
  position: absolute;
  left: -0.5rem;
  top: -1.5rem;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 300;
  line-height: 0.8;
  opacity: 0.1;
  user-select: none;
  pointer-events: none;
}
.pullquote__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.pullquote__author {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   GALERIE-GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-grid--4 { grid-template-columns: repeat(4, 1fr); }
.gallery-grid__item {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--rose-muted);
  position: relative;
}
.gallery-grid__item--wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-grid__item--tall { grid-row: span 2; }
.gallery-grid__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}
.gallery-grid__item:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}
.gallery-grid__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(transparent, rgba(58,15,24,0.7));
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s var(--ease);
}
.gallery-grid__item:hover .gallery-grid__caption { opacity: 1; transform: translateY(0); }
.gallery-grid__caption-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--rose);
}

/* ============================================================
   PREISKARTEN
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(26,20,16,0.1);
  position: relative;
}
.pricing-card {
  background: var(--cream);
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pricing-card--featured {
  background: var(--burg);
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.pricing-card__badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--cream);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}
.pricing-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.pricing-card__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.pricing-card--featured .pricing-card__title { color: var(--rose); }
.pricing-card__duration {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.pricing-card--featured .pricing-card__price { color: var(--rose); }
.pricing-card__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing-card__list li {
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
  color: rgba(26,20,16,0.65);
}
.pricing-card--featured .pricing-card__list li { color: rgba(232,197,188,0.65); }
.pricing-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}
.pricing-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26,20,16,0.1);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
  transition: opacity 0.3s;
}
.pricing-card--featured .pricing-card__foot {
  border-top-color: rgba(232,197,188,0.15);
  color: var(--rose);
}
.pricing-card__foot:hover { opacity: 0.6; }
.pricing-note {
  font-size: 0.825rem;
  line-height: 1.7;
  color: rgba(26,20,16,0.5);
  margin-top: 2rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 860px; }
.faq__item { border-top: 1px solid rgba(26,20,16,0.1); }
.s-burg .faq__item { border-top-color: rgba(232,197,188,0.1); }
.faq__item:last-child { border-bottom: 1px solid rgba(26,20,16,0.1); }
.s-burg .faq__item:last-child { border-bottom-color: rgba(232,197,188,0.1); }
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.375rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.3s;
  list-style: none;
  user-select: none;
}
.s-burg .faq__question { color: var(--rose); }
.faq__question:hover,
.faq__item.open .faq__question { color: var(--gold); }
.faq__icon {
  font-family: var(--font-ui);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
  line-height: 1;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease), padding 0.4s var(--ease);
}
.faq__item.open .faq__answer { max-height: 400px; }
.faq__answer p {
  padding-bottom: 1.75rem;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(26,20,16,0.6);
}
.s-burg .faq__answer p { color: rgba(232,197,188,0.5); }

/* ============================================================
   KONTAKT-FORMULAR
   ============================================================ */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; max-width: 620px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,197,188,0.4);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(232,197,188,0.06);
  border: 1px solid rgba(232,197,188,0.15);
  color: var(--rose);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 2px;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus { border-color: rgba(191,140,58,0.5); background: rgba(232,197,188,0.09); }
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(232,197,188,0.25); }
.form-feedback { font-family: var(--font-ui); font-size: 0.8rem; padding: 0.75rem 1rem; border-radius: 2px; }
.form-feedback.is-success { background: rgba(191,140,58,0.15); color: var(--gold); border: 1px solid rgba(191,140,58,0.3); }
.form-feedback.is-error   { background: rgba(232,197,188,0.1);  color: var(--rose-deep); border: 1px solid rgba(232,197,188,0.2); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--burg-deep);
  padding: 5rem var(--gutter) 2.5rem;
  border-top: 1px solid rgba(232,197,188,0.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand__name {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--rose);
  margin-bottom: 0.25rem;
}
.footer-brand__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-brand__text { font-size: 0.9rem; line-height: 1.75; color: rgba(232,197,188,0.35); max-width: 36ch; }
.footer-col__title {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose);
  opacity: 0.6;
  margin-bottom: 1.25rem;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(232,197,188,0.35);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(232,197,188,0.08);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,197,188,0.2);
}
.footer-bottom a { color: rgba(232,197,188,0.2); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.35s; }
.reveal-d4 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 2rem 1fr auto; }
  .service-row__desc { display: none; }
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse { direction: ltr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { margin: 0; padding: 3rem 2.25rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .stats-band { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 2rem 1fr auto; gap: 1rem; }
}
