:root {
  --cream: #faf6ef;
  --champagne: #f3eadc;
  --parchment: #e9ddca;
  --ink: #17130f;
  --charcoal: #26211d;
  --gold: #c9a84c;
  --gold-light: #ead184;
  --gold-dark: #9b7c30;
  --text: #1d1814;
  --muted: #675c50;
  --line: rgba(155, 124, 48, 0.24);
  --white: #fffdf8;
  --max: 1200px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.65;
}

body::after {
  position: fixed;
  z-index: 999;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.028'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

.nav {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 64px);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.nav.is-scrolled,
.nav.is-open {
  padding-top: 15px;
  padding-bottom: 15px;
  background: rgba(250, 246, 239, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(23, 19, 15, 0.1);
  backdrop-filter: blur(16px);
}

.logo,
.nav-links {
  display: flex;
  align-items: center;
}

.logo {
  text-decoration: none;
}

.logo-image {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
  transition: width 220ms ease, height 220ms ease, box-shadow 220ms ease;
}

.nav.is-scrolled .logo-image,
.nav.is-open .logo-image {
  width: 48px;
  height: 48px;
  box-shadow: 0 6px 18px rgba(23, 19, 15, 0.14);
}

.nav-links {
  gap: 24px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.nav-links a {
  position: relative;
  min-height: auto;
  display: inline-block;
  border-right: 0;
  padding: 0;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.82;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav.is-scrolled .nav-links a:hover {
  color: var(--gold-dark);
}

.nav-cta {
  border: 1px solid currentColor;
  color: inherit;
  padding: 12px 22px;
  font-style: normal;
}

.nav.is-scrolled .nav-links {
  border-color: transparent;
  background: transparent;
}

.nav.is-scrolled .nav-links a,
.nav.is-open .nav-links a {
  border-color: rgba(23, 19, 15, 0.14);
}

.nav.is-scrolled .nav-cta,
.nav.is-open .nav-cta {
  color: var(--gold-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  padding: 150px clamp(22px, 6vw, 90px) 90px;
  text-align: center;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  opacity: 1;
  background:
    url("assets/dj-gatien-hero.png") center right / cover no-repeat;
}

.hero-shade {
  background:
    radial-gradient(ellipse at 50% 42%, rgba(23, 19, 15, 0.03) 0%, rgba(23, 19, 15, 0.2) 58%, rgba(23, 19, 15, 0.46) 100%),
    linear-gradient(to bottom, rgba(255, 253, 248, 0.16), rgba(23, 19, 15, 0.34));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.5vw, 66px);
}

h1 em,
h2 em {
  color: var(--gold-light);
  font-style: italic;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 5vw, 68px);
}

h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.2;
}

.hero-subline {
  max-width: 690px;
  margin: 0 auto 28px;
  color: rgba(255, 253, 248, 0.78);
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 30px);
  font-style: italic;
}

.trust-pill,
.review-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(201, 168, 76, 0.36);
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-light);
  padding: 9px 18px;
  font-size: 13px;
}

.trust-pill {
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.trust-pill:hover {
  border-color: rgba(234, 209, 132, 0.78);
  background: rgba(201, 168, 76, 0.2);
  transform: translateY(-2px);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 16px 28px;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(201, 168, 76, 0.22);
}

.btn-ghost {
  border-color: rgba(255, 253, 248, 0.42);
  color: var(--white);
}

.btn-outline-dark {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.btn-dark {
  background: var(--ink);
  color: var(--gold-light);
}

.btn.full {
  width: 100%;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--champagne);
  padding: 15px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marquee 24s linear infinite;
  white-space: nowrap;
}

.marquee span {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  opacity: 0.78;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: clamp(78px, 10vw, 132px) clamp(20px, 6vw, 90px);
}

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

.about-premium {
  background:
    linear-gradient(135deg, rgba(250, 246, 239, 0.96), rgba(243, 234, 220, 0.82));
  color: var(--text);
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 96px);
}

.section-champagne {
  background: var(--champagne);
}

.section-dark,
.video-section {
  background: var(--charcoal);
  color: var(--white);
}

.two-col,
.contact-grid,
.video-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}

.copy-block p,
.wedding-intro p,
.feature p,
.service p,
.step p {
  color: var(--muted);
}

.copy-block .lead {
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.45;
}

.about-signature {
  margin-top: 28px;
  border-left: 2px solid var(--gold);
  padding-left: 22px;
}

.about-signature span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-signature strong {
  display: block;
  max-width: 580px;
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
}

.section-dark .copy-block p,
.section-dark .feature p,
.section-dark .service p,
.video-section .copy-block p,
.about-premium .copy-block p {
  color: rgba(255, 253, 248, 0.66);
}

.about-premium .two-col {
  gap: clamp(36px, 6vw, 78px);
}

.about-copy {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.about-copy .eyebrow {
  margin-bottom: 16px;
}

.gold-rule {
  width: 72px;
  height: 1px;
  margin-bottom: 34px;
  background: var(--gold);
}

.about-copy h2 {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--text);
  font-size: clamp(30px, 3.3vw, 48px);
  font-style: italic;
  line-height: 1.18;
}

.about-copy h2::first-line {
  color: var(--text);
}

.about-copy h2 {
  text-wrap: balance;
}

.about-copy h2 em,
.about-copy h2 strong {
  color: var(--gold-light);
}

.about-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 300;
  line-height: 1.78;
}

.about-copy p + p {
  margin-top: 18px;
}

.about-premium .image-card {
  border-color: var(--line);
  box-shadow: 0 26px 80px rgba(23, 19, 15, 0.12);
}

.about-premium .stats div {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.54);
}

.about-premium .stats strong {
  color: var(--gold-dark);
}

.about-premium .stats span {
  color: var(--muted);
}

.image-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  background: var(--parchment);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
}

.image-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-strip picture,
.event-card picture {
  display: block;
  width: 100%;
}

.gallery-strip picture {
  height: 260px;
}

.event-card picture {
  height: 210px;
}

.badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 124px;
  height: 124px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 20px 50px rgba(23, 19, 15, 0.2);
}

.badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
}

.badge span {
  display: block;
  margin-top: -18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.stats div {
  border: 1px solid var(--line);
  background: var(--champagne);
  padding: 22px 18px;
}

.stats strong {
  display: block;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-head {
  width: min(820px, 100%);
  margin: 0 auto 56px;
  text-align: center;
}

.feature-grid,
.service-grid,
.review-grid,
.steps {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  gap: 2px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
  background: rgba(201, 168, 76, 0.14);
}

.feature,
.service {
  background: var(--charcoal);
  padding: 38px 30px;
}

.feature span,
.step span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 38px;
  opacity: 0.58;
}

.wedding-intro {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto 58px;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: end;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
  background: var(--line);
}

.step {
  min-height: 260px;
  background: var(--champagne);
  padding: 34px 26px;
}

.step span {
  color: var(--gold-dark);
}

.gallery-strip {
  display: grid;
  width: min(var(--max), 100%);
  margin: 38px auto 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.gallery-strip img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.photo-moment {
  padding: clamp(52px, 7vw, 92px) clamp(20px, 6vw, 90px);
}

.photo-moment-light {
  background: linear-gradient(135deg, var(--cream), var(--champagne));
}

.photo-moment-dark {
  background: var(--charcoal);
  color: var(--white);
}

.photo-moment-inner {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(180px, 0.82fr) minmax(280px, 1.08fr) minmax(150px, 0.56fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
}

.photo-moment-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  background: var(--parchment);
  box-shadow: 0 24px 60px rgba(23, 19, 15, 0.14);
}

.photo-moment-dark .photo-moment-card {
  border-color: rgba(201, 168, 76, 0.26);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.photo-moment-card.portrait {
  aspect-ratio: 3 / 4;
}

.photo-moment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-moment-copy {
  text-align: center;
}

.photo-moment-copy h2 {
  max-width: 560px;
  margin: 10px auto 18px;
  font-size: clamp(29px, 3.8vw, 52px);
}

.photo-moment-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.7;
}

.photo-moment-dark .photo-moment-copy p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.68);
}

.video-section {
  padding-top: clamp(64px, 8vw, 110px);
  padding-bottom: clamp(64px, 8vw, 110px);
}

.video-placeholder {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.28);
  aspect-ratio: 16 / 9;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.video-placeholder video,
.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
}

.video-placeholder span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: rgba(23, 19, 15, 0.72);
  color: var(--gold-light);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.social-actions,
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.social-actions a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(201, 168, 76, 0.32);
  color: var(--gold-light);
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.social-actions svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.section-head.compact {
  margin-bottom: 28px;
  text-align: center;
}

.section-head.compact h2 {
  font-size: clamp(34px, 4vw, 58px);
}

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

.events-section .section-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
}

.event-grid {
  display: grid;
  width: min(var(--max), 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 48px auto 0;
}

.event-card {
  overflow: hidden;
  min-height: 310px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.72), rgba(243, 234, 220, 0.64));
  padding: 0 0 34px;
}

.event-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.event-card h3,
.event-card p,
.event-card span {
  margin-left: 30px;
  margin-right: 30px;
}

.event-card span {
  display: block;
  margin-top: 28px;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.event-card p {
  color: var(--muted);
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
  background: rgba(201, 168, 76, 0.14);
}

.service {
  min-height: 190px;
}

.genres {
  border-block: 1px solid var(--line);
  background: var(--cream);
  padding: 64px 22px;
  text-align: center;
}

.genres p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}

.genres div {
  display: flex;
  max-width: 900px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 26px auto 0;
}

.genres span {
  border: 1px solid var(--line);
  padding: 8px 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews {
  text-align: center;
}

.review-trust {
  margin-top: 12px;
  color: var(--gold-dark);
}

.google-widget {
  width: min(var(--max), 100%);
  min-height: 280px;
  margin: 44px auto 36px;
}

.review-actions {
  justify-content: center;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  padding: clamp(56px, 7vw, 90px) clamp(22px, 6vw, 90px);
  color: var(--ink);
}

.cta-band p {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cta-band h2 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
}

.contact-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 82% 8%, rgba(201, 168, 76, 0.18), transparent 42%),
    linear-gradient(135deg, #17130f 0%, #25201b 48%, #0f0d0b 100%);
  color: var(--white);
}

.contact-premium::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.16;
  background: url("assets/dj-gatien-hero.png") center / cover no-repeat;
  filter: grayscale(1);
}

.contact-grid {
  position: relative;
  z-index: 1;
  align-items: start;
}

.contact .copy-block h2 {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(42px, 5.6vw, 78px);
}

.contact .copy-block p {
  color: rgba(255, 253, 248, 0.72);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.65;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 34px;
}

.contact-methods a {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px 18px;
  border: 1px solid rgba(201, 168, 76, 0.32);
  background: rgba(255, 253, 248, 0.06);
  padding: 22px 24px;
  text-decoration: none;
}

.contact-icon {
  grid-row: span 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(201, 168, 76, 0.34);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(23, 19, 15, 0.18);
}

.contact-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.contact-methods strong {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-option small {
  color: rgba(255, 253, 248, 0.62);
  font-size: 15px;
  line-height: 1.5;
}

.contact-option.primary {
  background: rgba(201, 168, 76, 0.16);
  border-color: rgba(201, 168, 76, 0.58);
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  background: rgba(250, 246, 239, 0.94);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 24px 70px rgba(23, 19, 15, 0.12);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 34px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--champagne);
  color: var(--text);
  font: inherit;
  padding: 14px 15px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.14);
  outline: none;
}

textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.legal-page {
  background: var(--cream);
}

.legal-page .nav {
  background: rgba(250, 246, 239, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(23, 19, 15, 0.08);
}

.legal-hero {
  padding-top: 170px;
  padding-bottom: 54px;
  background: linear-gradient(135deg, var(--cream), var(--champagne));
  text-align: center;
}

.legal-hero h1 {
  margin-bottom: 16px;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.legal-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
}

.legal-content {
  padding-top: 64px;
  background: var(--white);
}

.legal-content article {
  width: min(860px, 100%);
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.legal-content a {
  color: var(--gold-dark);
  font-weight: 800;
}

.seo-hero {
  position: relative;
  overflow: hidden;
  padding: 170px clamp(22px, 6vw, 90px) clamp(72px, 10vw, 126px);
  background:
    linear-gradient(rgba(23, 19, 15, 0.58), rgba(23, 19, 15, 0.72)),
    image-set(url("assets/wedding-couple-hero.webp") type("image/webp"), url("assets/wedding-couple-hero.jpg") type("image/jpeg")) center / cover no-repeat;
  color: var(--white);
}

.seo-hero-inner,
.seo-section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.seo-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 84px);
}

.seo-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 253, 248, 0.82);
  font-family: var(--serif);
  font-size: clamp(21px, 2.4vw, 31px);
  line-height: 1.45;
}

.seo-photo-strip-section {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--parchment) 100%);
  padding: clamp(18px, 4vw, 34px) clamp(18px, 5vw, 64px) 0;
}

.seo-photo-strip {
  display: grid;
  width: min(820px, 100%);
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  gap: clamp(10px, 2vw, 16px);
  margin: -82px auto 0;
}

.seo-photo-strip img {
  width: 100%;
  height: clamp(170px, 24vw, 260px);
  border: 1px solid rgba(155, 124, 48, 0.22);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(23, 19, 15, 0.16);
  object-fit: cover;
}

.seo-photo-strip img:first-child {
  object-position: center;
}

.seo-photo-strip img:nth-child(2),
.seo-photo-strip img:nth-child(3) {
  object-position: center 24%;
}

.seo-quicklinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(100%, 880px);
  margin-top: 34px;
  margin-right: auto;
  margin-left: auto;
}

.seo-quicklinks a {
  border: 1px solid rgba(234, 209, 132, 0.42);
  padding: 11px 14px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.seo-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 7vw, 86px);
  align-items: start;
}

.seo-intro .lead {
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.25;
}

.seo-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-list li {
  border-left: 2px solid var(--gold);
  background: rgba(255, 253, 248, 0.58);
  padding: 16px 18px;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
}

.seo-card {
  background: var(--cream);
  padding: clamp(26px, 4vw, 42px);
}

.seo-card h3 {
  color: var(--ink);
}

.seo-card p {
  color: var(--muted);
}

.seo-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 34px;
  opacity: 0.7;
}

.seo-dark {
  background: var(--charcoal);
  color: var(--white);
}

.seo-dark .seo-card {
  background: rgba(255, 253, 248, 0.06);
}

.seo-dark .seo-card h3 {
  color: var(--white);
}

.seo-dark .seo-card p,
.seo-dark .seo-section-inner > p {
  color: rgba(255, 253, 248, 0.68);
}

.seo-faq {
  display: grid;
  gap: 18px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.seo-faq article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.seo-faq h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-faq p {
  color: var(--muted);
}

.footer {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, minmax(140px, 1fr));
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background:
    radial-gradient(ellipse at 88% 0%, rgba(201, 168, 76, 0.16), transparent 34%),
    var(--ink);
  color: rgba(255, 253, 248, 0.42);
  padding: 68px clamp(22px, 6vw, 90px);
}

.footer strong,
.footer span,
.footer a {
  display: block;
}

.footer strong span {
  display: inline;
}

.footer-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer strong {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-col span,
.footer-col a {
  margin-top: 8px;
  color: rgba(255, 253, 248, 0.58);
  font-size: 14px;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-meta {
  text-align: right;
}

.wa-float {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 34px rgba(37, 211, 102, 0.42);
  transition: transform 180ms ease;
}

.wa-float:hover {
  transform: scale(1.06);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

.delay-3 {
  transition-delay: 320ms;
}

@media (max-width: 1060px) {
  .feature-grid,
  .steps,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col,
  .contact-grid,
  .video-grid,
  .wedding-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    z-index: 130;
    top: calc(100% + 14px);
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    border: 1px solid rgba(155, 124, 48, 0.22);
    background: rgba(250, 246, 239, 0.98);
    color: var(--ink);
    box-shadow: 0 24px 70px rgba(23, 19, 15, 0.18);
    padding: 26px;
    backdrop-filter: blur(18px);
  }

  .nav.is-scrolled .nav-links.is-open,
  .nav.is-open .nav-links.is-open,
  .nav-links.is-open {
    display: grid;
    gap: 0;
    border-color: rgba(155, 124, 48, 0.22);
    background: rgb(250, 246, 239);
  }

  .nav-links a {
    min-height: 54px;
    display: flex;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(155, 124, 48, 0.16);
    padding: 0;
    color: var(--ink);
    font-size: 14px;
    letter-spacing: 0.16em;
    opacity: 1;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links .nav-cta {
    margin-top: 16px;
    justify-content: center;
    border: 1px solid var(--gold-dark);
    color: var(--gold-dark);
    padding: 0 18px;
  }

  .hero {
    padding-top: 130px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust-pill {
    align-items: flex-start;
  }

  .feature-grid,
  .steps,
  .service-grid,
  .seo-grid,
  .seo-intro,
  .review-grid,
  .event-grid,
  .photo-moment-inner,
  .seo-photo-strip,
  .gallery-strip,
  .stats,
  .form-row {
    grid-template-columns: 1fr;
  }

  .seo-photo-strip {
    width: min(520px, 100%);
    margin-top: -52px;
  }

  .seo-photo-strip img {
    height: 190px;
  }

  .photo-moment {
    padding-top: 44px;
    padding-bottom: 50px;
  }

  .photo-moment-inner {
    gap: 18px;
  }

  .photo-moment-card {
    aspect-ratio: 16 / 10;
  }

  .photo-moment-card.portrait {
    aspect-ratio: 4 / 3;
  }

  .photo-moment-card:nth-of-type(2) {
    display: none;
  }

  .cta-band,
  .footer {
    display: grid;
  }

  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 48px;
  }

  .legal-hero h1 {
    font-size: 42px;
  }

  .seo-hero h1 {
    font-size: 42px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .trust-pill,
  .review-trust {
    display: grid;
    gap: 4px;
  }

  .hero-image {
    background-position: 57% center;
  }

  .hero-shade {
    background:
      radial-gradient(ellipse at 50% 40%, rgba(23, 19, 15, 0.24), rgba(23, 19, 15, 0.68)),
      linear-gradient(to bottom, rgba(23, 19, 15, 0.08), rgba(23, 19, 15, 0.74));
  }

  .contact-methods a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .event-card h3,
  .event-card p,
  .event-card span {
    margin-left: 24px;
    margin-right: 24px;
  }

  .event-card img {
    height: 190px;
  }

  .event-card picture {
    height: 190px;
  }

  .seo-quicklinks a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 800px) {
  header.nav .nav-links.is-open,
  header.nav.is-open .nav-links.is-open,
  header.nav.is-scrolled .nav-links.is-open {
    z-index: 1000 !important;
    display: grid !important;
    border: 1px solid rgba(155, 124, 48, 0.24) !important;
    background: #faf6ef !important;
    color: #17130f !important;
    opacity: 1 !important;
    box-shadow: 0 24px 70px rgba(23, 19, 15, 0.22) !important;
    backdrop-filter: none !important;
  }
}

/* ── Cookie Consent Banner ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  z-index: 9999;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--white);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.35);
  padding: clamp(16px, 3vw, 28px) clamp(20px, 5vw, 64px);
  animation: slideUpCookie 0.4s ease;
}

.cookie-banner[hidden] {
  display: none;
}

@keyframes slideUpCookie {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-banner-text strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 253, 248, 0.75);
  max-width: 680px;
}

.cookie-banner-text a {
  color: var(--gold-light);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 11px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid var(--gold);
  transition: background 200ms ease, color 200ms ease, transform 150ms ease;
  white-space: nowrap;
}

.cookie-btn:active {
  transform: scale(0.97);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--gold-light);
}

.cookie-btn-reject:hover {
  background: rgba(201, 168, 76, 0.12);
}

.cookie-btn-accept {
  background: var(--gold);
  color: var(--ink);
}

.cookie-btn-accept:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* Hint-Text wenn Bewertungen geblockt sind */
.cookie-widget-hint {
  display: none;
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

.cookie-widget-hint.is-visible {
  display: block;
}

.cookie-widget-hint a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 700px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
}
