@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   SOUL SEARCH — CELESTIAL EDITORIAL
   Signature idea: “The Gold Thread” — a single antique-gold
   hairline / constellation logic connecting every section.
   ============================================================ */

:root {
  /* Base tones */
  --ink: #0B0B1A;
  --plum: #171129;
  --cream: #F6F1E7;
  --parchment: #EDE5D8;

  /* Text */
  --ink-soft: #3A3546;
  --muted: #6F6880;
  --text-on-dark: #F6F1E7;
  --text-on-dark-soft: rgba(246, 241, 231, 0.76);

  /* Accents */
  --gold: #D4AF37;
  --gold-light: #E8CE7A;
  --lavender: #B9A9CE;

  /* Utility colors */
  --white: #FFFFFF;
  --gold-12: rgba(212, 175, 55, 0.12);
  --gold-20: rgba(212, 175, 55, 0.20);
  --gold-35: rgba(212, 175, 55, 0.35);
  --lav-18: rgba(185, 169, 206, 0.18);
  --night-70: rgba(11, 11, 26, 0.70);
  --night-90: rgba(11, 11, 26, 0.90);

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Space scale — 8pt base */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.5rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-10: 5rem;
  --space-12: 6rem;
  --space-14: 7rem;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 1.5rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);
  --header-h: 80px;

  /* Elevation — tight, gold-hairline, not soft */
  --elev-1: 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 28px -24px rgba(0, 0, 0, 0.8);
  --elev-2: 0 0 0 1px rgba(212, 175, 55, 0.16), 0 24px 60px -40px rgba(0, 0, 0, 0.9);
  --elev-3: 0 0 0 1px rgba(212, 175, 55, 0.28), 0 32px 80px -48px rgba(0, 0, 0, 0.95);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --speed: 0.5s;

  /* Signature */
  --thread: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.08));
  --starfield:
    radial-gradient(1px 1px at 10% 18%, rgba(246, 241, 231, 0.85), transparent),
    radial-gradient(1px 1px at 26% 72%, rgba(246, 241, 231, 0.55), transparent),
    radial-gradient(1px 1px at 48% 34%, rgba(246, 241, 231, 0.75), transparent),
    radial-gradient(1px 1px at 66% 60%, rgba(246, 241, 231, 0.6), transparent),
    radial-gradient(1px 1px at 82% 22%, rgba(246, 241, 231, 0.8), transparent),
    radial-gradient(1.5px 1.5px at 92% 78%, rgba(212, 175, 55, 0.7), transparent),
    radial-gradient(1px 1px at 14% 88%, rgba(246, 241, 231, 0.5), transparent),
    radial-gradient(1px 1px at 74% 88%, rgba(246, 241, 231, 0.55), transparent);
}

/* ============================================================
   RESET / BASE
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* ============================================================
   GLOBAL UTILITIES
   ============================================================ */

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

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

.section--cream {
  background: var(--cream);
  color: var(--ink-soft);
}

.section--parchment {
  background: var(--parchment);
  color: var(--ink-soft);
}

.section--ink {
  background-color: var(--ink);
  color: var(--cream);
  background-image: var(--starfield);
  background-size: 280px 280px, 360px 360px, 420px 420px, 300px 300px, 480px 480px, 520px 520px, 340px 340px, 400px 400px;
}

.section__header {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section__header::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 1.5rem;
  background: var(--thread);
}

.section__title {
  margin: 0 0 1rem;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 3.25rem);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section__intro {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.section--ink .section__intro,
.section__header--dark .section__intro {
  color: var(--text-on-dark-soft);
}

.section__header--dark {
  color: var(--cream);
}

.section__title--light {
  color: var(--cream);
}

.overline {
  display: inline-block;
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 1100;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transform: translate(-50%, -120%);
  transition: transform 0.25s var(--ease);
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

/* ============================================================
   BUTTONS / LINKS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.875rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
  color: inherit;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

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

.btn:active {
  transform: translateY(0);
}

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: var(--elev-2);
}

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--elev-3);
}

.btn--ghost {
  background: rgba(11, 11, 26, 0.18);
  border-color: rgba(246, 241, 231, 0.38);
  color: var(--cream);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(11, 11, 26, 0.42);
}

.btn--outline {
  border-color: rgba(58, 53, 70, 0.32);
  color: var(--ink-soft);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--ink);
  background: rgba(212, 175, 55, 0.08);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.link-arrow__icon {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.link-arrow:hover {
  color: var(--gold);
}

.link-arrow:hover .link-arrow__icon {
  transform: translateX(4px);
}

.link-inline {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.25em;
  transition: color 0.3s var(--ease);
}

.link-inline:hover {
  color: var(--gold);
}

.link-inline--light {
  color: var(--cream);
  text-decoration-color: var(--gold);
}

.link-inline--light:hover {
  color: var(--gold-light);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(11, 11, 26, 0.74);
  border-bottom: 1px solid var(--gold-12);
  color: var(--cream);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.75rem;
  color: var(--cream);
  text-decoration: none;
}

.brand__logo {
  width: auto;
  height: 40px;
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.16));
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--gold-35);
  border-radius: 2px;
  background: rgba(11, 11, 26, 0.35);
  color: var(--cream);
  transition:
    background-color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.nav-toggle:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
}

.nav-toggle span + span {
  margin-top: 5px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 3vw, 3rem);
  flex: 1 1 auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.875rem, 2vw, 1.75rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__item {
  flex: 0 0 auto;
}

.nav__link {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0;
  color: rgba(246, 241, 231, 0.82);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--gold-light);
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.nav__utility {
  color: rgba(246, 241, 231, 0.74);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.nav__utility:hover {
  color: var(--gold-light);
}

.nav__cta {
  padding: 0.75rem 1.1rem;
  font-size: 0.9375rem;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(100svh, 880px);
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.72);
  transform: scale(1.02);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 26, 0.35) 0%, rgba(11, 11, 26, 0.55) 38%, rgba(11, 11, 26, 0.94) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(212, 175, 55, 0.10), transparent 52%),
    linear-gradient(90deg, rgba(11, 11, 26, 0.76) 0%, rgba(11, 11, 26, 0.22) 60%, rgba(11, 11, 26, 0.82) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(5rem, 12vw, 10rem) clamp(2rem, 6vw, 4rem);
}

.hero__content {
  display: grid;
  gap: 1.5rem;
  max-width: 720px;
}

.hero__title {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero__lead {
  margin: 0;
  max-width: 58ch;
  color: rgba(246, 241, 231, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.hero__aside {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1.5rem, 5vw, 3rem);
  z-index: 3;
  max-width: 260px;
  padding-left: 1rem;
  border-left: 1px solid var(--gold-35);
  color: rgba(246, 241, 231, 0.68);
  text-align: right;
}

.hero__aside-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__aside-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */

.trust-strip {
  background: var(--ink);
  border-block: 1px solid var(--gold-12);
  color: var(--cream);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(246, 241, 231, 0.08);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--ink);
  color: rgba(246, 241, 231, 0.72);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-strip__item::before {
  content: "";
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* ============================================================
   PROOF / OVER MIJ
   ============================================================ */

.proof {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.proof__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.proof__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.03);
  transition: transform 0.8s var(--ease);
}

.proof__media:hover img {
  transform: scale(1.015);
}

.proof__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 26, 0.05), rgba(11, 11, 26, 0.38));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.proof__caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.4rem 0.6rem;
  background: rgba(11, 11, 26, 0.58);
  color: rgba(246, 241, 231, 0.88);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.proof__body {
  max-width: 620px;
}

.proof__title {
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.proof__text {
  margin: 0 0 2rem;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.hairline-list {
  margin: 0 0 2rem;
  padding: 0;
  border-top: 1px solid rgba(58, 53, 70, 0.18);
  list-style: none;
}

.hairline-list__item {
  display: grid;
  gap: 0.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(58, 53, 70, 0.18);
}

.hairline-list__title {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
}

.hairline-list__text {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.proof__cta {
  margin-top: 0.5rem;
}

/* ============================================================
   AANBOD
   ============================================================ */

.aanbod {
  position: relative;
}

.aanbod__header {
  display: grid;
  gap: 1.5rem;
  max-width: 760px;
}

.index-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(58, 53, 70, 0.2);
  list-style: none;
}

.index-list__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(4rem, 1fr) minmax(0, 8fr);
  gap: clamp(1rem, 4vw, 3rem);
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
  border-bottom: 1px solid rgba(58, 53, 70, 0.2);
  transition: background-color 0.35s var(--ease);
}

.index-list__item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s var(--ease);
}

.index-list__item:hover::before {
  transform: scaleY(1);
}

.index-list__item:hover {
  background: rgba(212, 175, 55, 0.04);
}

.index-list__number {
  color: var(--lavender);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 0.8;
  opacity: 0.78;
  font-variant-numeric: lining-nums;
}

.index-list__content {
  max-width: 680px;
}

.index-list__title {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  font-weight: 600;
}

.index-list__text {
  margin: 0 0 0.75rem;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.index-list__meta {
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aanbod__note {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

/* ============================================================
   TESTIMONIALS — starfield carousel
   ============================================================ */

.testimonials {
  position: relative;
  overflow: hidden;
  background-color: var(--ink);
  background-image: var(--starfield);
  background-size: 280px 280px, 360px 360px, 420px 420px, 300px 300px, 480px 480px, 520px 520px, 340px 340px, 400px 400px;
  color: var(--cream);
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 26, 0.18), rgba(11, 11, 26, 0.82));
  pointer-events: none;
}

.testimonials__inner {
  position: relative;
  z-index: 1;
}

.testimonials__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.carousel {
  position: relative;
}

.carousel__grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.carousel__arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold-35);
  border-radius: 50%;
  background: rgba(11, 11, 26, 0.62);
  color: var(--gold);
  transition:
    background-color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.carousel__arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}

.carousel__viewport {
  overflow: hidden;
}

.carousel__track {
  display: flex;
  transition: transform 0.6s var(--ease);
}

.carousel__slide {
  min-width: 100%;
  padding-inline: clamp(0rem, 2vw, 1rem);
}

.quote {
  margin: 0;
  text-align: center;
}

.quote__text {
  max-width: 48rem;
  margin: 0 auto 1.5rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.6vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  text-wrap: balance;
}

.quote__footer {
  display: grid;
  gap: 0.25rem;
  justify-items: center;
}

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

.quote__meta {
  display: block;
  color: rgba(246, 241, 231, 0.6);
  font-size: 0.8125rem;
}

.testimonials__mark {
  position: absolute;
  top: -2rem;
  right: 0;
  z-index: 0;
  color: rgba(212, 175, 55, 0.08);
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 18rem);
  line-height: 0.7;
  mix-blend-mode: screen;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   REASSURANCE
   ============================================================ */

.reassurance {
  background: var(--cream);
  color: var(--ink-soft);
}

.reassurance__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.reassurance__title {
  max-width: 700px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 3.25rem);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.reassurance__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(58, 53, 70, 0.18);
  background: rgba(58, 53, 70, 0.18);
  list-style: none;
}

.reassurance__item {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--cream);
}

.reassurance__item-title {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
}

.reassurance__item-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.reassurance__cta {
  margin-top: 0.5rem;
}

/* ============================================================
   GIFT BAND
   ============================================================ */

.gift-band {
  background: var(--parchment);
  color: var(--ink-soft);
}

.gift-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.gift-band__body {
  max-width: 620px;
}

.gift-band__title {
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.gift-band__text {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.gift-band__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.gift-band__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 0.8s var(--ease);
}

.gift-band__media:hover img {
  transform: scale(1.015);
}

.gift-band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), transparent 45%, rgba(11, 11, 26, 0.28));
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ============================================================
   INVITE / CONTACT
   ============================================================ */

.invite {
  background: var(--ink);
  color: var(--cream);
}

.invite__inner {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.invite__copy {
  max-width: 720px;
}

.invite__text {
  margin: 0 0 1.5rem;
  max-width: 58ch;
  color: rgba(246, 241, 231, 0.78);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.invite__signature {
  margin: 0 0 2rem;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-style: italic;
  line-height: 1.4;
}

.invite__contact {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list__item {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(246, 241, 231, 0.1);
}

.contact-list__label {
  color: var(--gold);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-list__value {
  color: var(--cream);
  font-size: 0.9375rem;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.3s var(--ease);
}

.contact-list__value:hover {
  color: var(--gold-light);
}

.invite__secondary {
  margin-top: 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  position: relative;
  overflow: hidden;
  background-color: var(--ink);
  background-image: var(--starfield);
  background-size: 280px 280px, 360px 360px, 420px 420px, 300px 300px, 480px 480px, 520px 520px, 340px 340px, 400px 400px;
  border-top: 1px solid var(--gold-20);
  color: rgba(246, 241, 231, 0.72);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 26, 0.15), rgba(11, 11, 26, 0.88));
  pointer-events: none;
}

.footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.footer__col {
  min-width: 0;
}

.footer__col--brand {
  max-width: 320px;
}

.footer__logo {
  width: auto;
  height: 44px;
  margin-bottom: 1rem;
}

.footer__text {
  margin: 0;
  color: rgba(246, 241, 231, 0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer__heading {
  margin: 0 0 1rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer__list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__link {
  color: rgba(246, 241, 231, 0.7);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.footer__link:hover {
  color: var(--gold-light);
}

.footer__meta {
  color: rgba(246, 241, 231, 0.5);
  font-size: 0.8125rem;
  line-height: 1.7;
}

.footer__legal {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(246, 241, 231, 0.1);
}

.footer__copyright,
.footer__credit {
  color: rgba(246, 241, 231, 0.45);
  font-size: 0.75rem;
}

/* ============================================================
   SCROLL REVEAL — subtle, tasteful
   ============================================================ */

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .section > .container > .section__header,
    .section > .container > .proof,
    .section > .container > .index-list,
    .section > .container > .carousel,
    .section > .container > .reassurance__inner,
    .section > .container > .gift-band__inner,
    .section > .container > .invite__inner {
      animation: reveal-up both;
      animation-duration: 1s;
      animation-timeline: view();
      animation-range: entry 0% cover 28%;
    }
  }
}

/* ============================================================
   RESPONSIVE — 1024 / 768 / 480
   ============================================================ */

@media (max-width: 1024px) {
  :root {
    --header-h: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: min(88vw, 420px);
    height: 100dvh;
    padding: 6rem 1.5rem 2rem;
    overflow-y: auto;
    background: var(--plum);
    border-left: 1px solid var(--gold-20);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.5);
    transform: translateX(105%);
    transition: transform 0.45s var(--ease);
  }

  .primary-nav.is-open,
  .site-header.is-open .primary-nav,
  .nav-toggle[aria-expanded="true"] ~ .primary-nav {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    width: 100%;
  }

  .nav__item {
    width: 100%;
  }

  .nav__link {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(246, 241, 231, 0.08);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
  }

  .nav__link::after {
    display: none;
  }

  .nav__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
    margin-top: 2rem;
  }

  .nav__cta {
    width: 100%;
  }

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

  .proof__media img {
    min-height: 360px;
  }

  .gift-band__inner,
  .invite__inner {
    grid-template-columns: 1fr;
  }

  .gift-band__media img {
    min-height: 300px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-y: clamp(3rem, 10vw, 4.5rem);
  }

  .hero {
    min-height: min(92svh, 760px);
  }

  .hero__content {
    gap: 1.25rem;
  }

  .hero__aside {
    position: static;
    max-width: none;
    margin-top: 2rem;
    padding-top: 1rem;
    padding-left: 0;
    border-top: 1px solid var(--gold-35);
    border-left: 0;
    text-align: left;
  }

  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip__item {
    padding: 1rem 1.25rem;
  }

  .index-list__item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .index-list__number {
    font-size: 3rem;
    line-height: 0.9;
  }

  .testimonials__header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .carousel__viewport {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .carousel__arrow {
    grid-row: 2;
    justify-self: center;
  }

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

  .contact-list__item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__col--brand {
    max-width: none;
  }

  .footer__legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .trust-strip__inner {
    grid-template-columns: 1fr;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }

  .gift-band__media img,
  .proof__media img {
    min-height: 260px;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__media img,
  .proof__media img,
  .gift-band__media img {
    transform: none !important;
  }
}