/* ==========================================================================
   PENTRARRI GROUP — Design System
   Editorial Luxury · Black, Gold, Cream
   ========================================================================== */

/* --- Reset & Base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Skip link (a11y) --------------------------------------------------- */
.skip-link {
  position: absolute; left: 0; top: 0;
  transform: translateY(-150%);
  background: var(--black); color: var(--ivory);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem; font-weight: 600;
  z-index: 1000;
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); outline: 2px solid var(--gold); outline-offset: 2px; }

main:focus { outline: none; }

/* --- Tokens ------------------------------------------------------------- */
:root {
  /* Colour */
  --black: #0a0a0a;
  --anthracite: #1a1a1a;
  --charcoal: #2a2a2a;
  --gold: #c9a961;
  --gold-bright: #d9b96f;
  --gold-soft: rgba(201, 169, 97, 0.15);
  --cream: #f5f1e8;
  --ivory: #faf7f0;
  --paper: #ffffff;
  --line: #e6e1d5;
  --line-dark: rgba(255,255,255,0.10);
  --text: #1a1a1a;
  --text-muted: #666666;
  --text-light: #999999;
  --text-on-dark: #f5f1e8;
  --text-on-dark-muted: #a8a39a;

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

  /* Layout */
  --container: 1280px;
  --container-narrow: 960px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 10vw, 8rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.4s var(--ease);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--ivory);
  font-weight: 400;
}

/* --- Typography --------------------------------------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { color: var(--text-muted); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow--center { justify-content: center; }

.lede {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.7;
}

em.gold { color: var(--gold); font-style: italic; }

/* --- Container ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn--primary { background: var(--black); color: var(--ivory); }
.btn--primary:hover { background: var(--gold); color: var(--black); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--black); }
.btn--ghost:hover { background: var(--black); color: var(--ivory); }
.btn--gold { background: var(--gold); color: var(--black); }
.btn--gold:hover { background: var(--black); color: var(--gold); }

.btn .arrow { display: inline-block; transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }

/* --- Header / Navigation ------------------------------------------------ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(250, 247, 240, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(250, 247, 240, 0.95);
  border-bottom-color: var(--line);
  padding: 0.85rem 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.brand { display: flex; align-items: center; }
.brand__logo {
  height: 64px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
  transition: opacity var(--transition);
}
.brand__logo--dark {
  mix-blend-mode: normal;
  height: 72px;
}

.nav__menu { display: flex; align-items: center; gap: 2.25rem; }
.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition);
}
.nav__link::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }

.nav__cta { padding: 0.7rem 1.4rem; font-size: 0.8rem; }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
}
.nav__toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--black); margin: 5px auto;
  transition: all var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 960px) {
  /* Remove backdrop-filter on mobile: it creates a containing block for
     position:fixed children, breaking the slide-in menu. */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(250, 247, 240, 0.97);
  }
  .site-header.scrolled {
    background: var(--ivory);
  }

  .nav__menu {
    position: fixed; inset: 72px 0 0 0;
    background: var(--ivory);
    flex-direction: column; justify-content: center;
    gap: 2rem; padding: 2rem;
    transform: translateX(100%); transition: transform var(--transition);
    border-top: 1px solid var(--line);
    z-index: 110; /* above header (100) so it covers the page reliably */
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__link { font-size: 1.5rem; font-family: var(--font-display); }
  .nav__cta { padding: 1rem 2rem; font-size: 0.875rem; }

  /* Toggle stays above the menu so user can close it */
  .nav__toggle {
    display: block;
    position: relative;
    z-index: 120;
  }
}

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(8rem, 18vw, 11rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  background: var(--ivory);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, var(--gold-soft) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(10,10,10,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.25;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
}

.hero__content { animation: fadeUp 0.9s var(--ease) both; }
.hero__eyebrow { margin-bottom: 1.5rem; }
.hero__title {
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero__lede { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 56ch; }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero__trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero__trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.hero__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  animation: fadeUp 1.1s 0.15s var(--ease) both;
}

.hero__illustration {
  width: 100%;
  height: auto;
  display: block;
}

.hero__mockup-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 64px rgba(0,0,0,0.13));
  /* Soft fade-out on left edge and bottom to blend with hero background */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 12%, black 85%, transparent 100%),
    linear-gradient(to bottom, black 75%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, black 12%, black 85%, transparent 100%),
    linear-gradient(to bottom, black 75%, transparent 100%);
  -webkit-mask-composite: intersect;
  mask-composite: intersect;
}

/* Floating accent badges */
.hero__badge {
  position: absolute;
  background: var(--ivory);
  padding: 0.9rem 1.1rem;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.18);
  display: flex; align-items: center; gap: 0.75rem;
  border-left: 2px solid var(--gold);
}
.hero__badge svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.hero__badge--top { top: 8%; right: -4%; animation: float 6s ease-in-out infinite; }
.hero__badge--bottom { bottom: 14%; right: -4%; animation: float 7s ease-in-out infinite reverse; }
.hero__badge-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  display: block;
}
.hero__badge-label { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.04em; display: block; }

@media (max-width: 960px) {
  .hero__visual { max-width: 520px; margin: 0 auto; }
  .hero__badge--top { right: -1%; }
  .hero__badge--bottom { right: -1%; bottom: 6%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --- Section base ------------------------------------------------------- */
.section {
  padding-block: var(--section-y);
  position: relative;
}
.section--dark { background: var(--black); color: var(--text-on-dark); }
.section--dark p { color: var(--text-on-dark-muted); }
.section--cream { background: var(--cream); }

.section__head {
  max-width: 720px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__title { margin-block: 1.25rem 1.5rem; }
.section__lede { font-size: 1.0625rem; line-height: 1.7; }

/* --- Trust bar ---------------------------------------------------------- */
.trust-bar {
  background: var(--black);
  color: var(--text-on-dark);
  padding: 1.25rem 0;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.trust-bar__track {
  display: flex; gap: 4rem; align-items: center;
  font-size: 0.85rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.trust-bar__item { display: flex; align-items: center; gap: 1rem; }
.trust-bar__dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

.service {
  background: var(--ivory);
  padding: 2.5rem;
  display: flex; flex-direction: column;
  gap: 1rem;
  transition: background var(--transition);
  position: relative;
  min-height: 280px;
}
.service:hover { background: var(--paper); }
.service:hover .service__num { color: var(--gold); }
.service:hover .service__icon { transform: translateY(-3px); }

.service__num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-light);
  transition: color var(--transition);
}
.service__icon {
  width: 36px; height: 36px;
  color: var(--gold);
  transition: transform var(--transition);
}
.service__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
.service__text { font-size: 0.9375rem; line-height: 1.65; color: var(--text-muted); }

.service__feature {
  background: var(--black);
  color: var(--ivory);
}
.service__feature .service__num { color: var(--gold); }
.service__feature .service__title { color: var(--ivory); }
.service__feature .service__text { color: var(--text-on-dark-muted); }
.service__feature:hover { background: var(--anthracite); }

/* --- Why / Benefits ----------------------------------------------------- */
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) { .benefits { grid-template-columns: 1fr; } }

.benefits__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream);
  overflow: hidden;
}
.benefits__visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      transparent 0, transparent 28px,
      rgba(201,169,97,0.08) 28px, rgba(201,169,97,0.08) 29px);
}
.benefits__stat {
  position: absolute;
  background: var(--black); color: var(--ivory);
  padding: 1.75rem 2rem;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.benefits__stat--1 { top: 10%; left: 8%; }
.benefits__stat--2 { top: 38%; right: 8%; background: var(--gold); color: var(--black); }
.benefits__stat--3 { bottom: 10%; left: 14%; }
.benefits__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
}
.benefits__stat-label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.85; }

.benefits__list {
  display: flex; flex-direction: column;
  gap: 1.5rem; margin-top: 2rem;
}
.benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.benefit:last-child { border-bottom: 0; }
.benefit__icon {
  width: 38px; height: 38px;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit__icon svg { width: 18px; height: 18px; }
.benefit__title {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.benefit__text { font-size: 0.9rem; line-height: 1.6; color: var(--text-muted); margin: 0; }

/* --- Process (horizontal timeline) -------------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

/* Horizontal connector line — sits at icon centre: padding-top + half icon */
.process::before {
  content: "";
  position: absolute;
  left: calc(100% / 12);
  right: calc(100% / 12);
  top: calc(1.5rem + 32px);
  height: 1px;
  background: rgba(201, 169, 97, 0.3);
  z-index: 0;
}

.process__step {
  position: relative;
  padding: 1.5rem 0.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.process__step:hover {
  border-color: rgba(201, 169, 97, 0.5);
  background: var(--ivory);
  box-shadow: 0 8px 40px -12px rgba(201, 169, 97, 0.18);
  z-index: 2;
}

/* Connector dot sits exactly on the line: padding-top + 32px(icon centre) - 3.5px(half dot) */
.process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(1.5rem + 28.5px);
  transform: translateX(50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  z-index: 3;
}

.process__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid rgba(201, 169, 97, 0.4);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  margin-bottom: 1rem;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}
.process__icon svg { width: 24px; height: 24px; color: var(--gold); }
.process__step:hover .process__icon {
  background: var(--gold-soft);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(201, 169, 97, 0.07);
}

.process__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(201, 169, 97, 0.3);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
  transition: color 0.22s ease;
}
.process__step:hover .process__num { color: var(--gold); }

.process__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.process__text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.process__bar {
  display: block;
  width: 28px; height: 1px;
  background: rgba(201, 169, 97, 0.5);
  margin: 0 auto;
  transition: width 0.22s ease, background 0.22s ease;
}
.process__step:hover .process__bar { width: 44px; background: var(--gold); }

/* Featured step — no permanent highlight, same default as other steps */
.process__step--featured .process__title { font-weight: 700; }

/* Section heading modifier */
.process__heading { font-weight: 700; }
.process__heading em { color: var(--gold); font-style: italic; font-weight: 400; }

/* Trust bar below process */
.process__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}
.process__trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.process__trust-icon {
  width: 44px; height: 44px;
  background: var(--gold-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.process__trust-icon svg { width: 20px; height: 20px; color: var(--gold); }
.process__trust-item div { display: flex; flex-direction: column; gap: 0.15rem; }
.process__trust-item strong { font-size: 0.875rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.process__trust-item span { font-size: 0.75rem; color: var(--text-muted); }

/* Responsive: hide connectors, restack */
@media (max-width: 900px) {
  .process { grid-template-columns: repeat(3, 1fr); }
  .process::before { display: none; }
  .process__step:not(:last-child)::after { display: none; }
  .process__trust { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .process__trust { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 360px) {
  .process { grid-template-columns: 1fr; }
  .process__trust { grid-template-columns: 1fr; }
}

/* --- Pricing ------------------------------------------------------------ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2.5rem;
  display: flex; flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: all var(--transition);
}
.plan:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15); }

.plan--featured {
  background: var(--black);
  color: var(--ivory);
  border-color: var(--black);
  transform: translateY(-12px);
}
.plan--featured:hover { transform: translateY(-16px); }
.plan--featured p { color: var(--text-on-dark-muted); }
@media (max-width: 900px) { .plan--featured { transform: none; } .plan--featured:hover { transform: translateY(-4px); } }

.plan__badge {
  position: absolute; top: -12px; right: 2.5rem;
  background: var(--gold); color: var(--black);
  padding: 0.4rem 0.9rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
}

.plan__header {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.plan--featured .plan__header { border-bottom-color: var(--line-dark); }

.plan__name {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.plan__tag {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.plan--featured .plan__tag { color: var(--text-on-dark-muted); }

.plan__price { display: flex; align-items: baseline; gap: 0.4rem; }
.plan__price-prefix { font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.05em; }
.plan__price-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1;
  color: var(--text);
}
.plan--featured .plan__price-amount { color: var(--gold); }
.plan__price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.plan__features {
  display: flex; flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}
.plan__feature {
  display: flex; gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.plan__feature svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.plan .btn { width: 100%; justify-content: center; margin-top: auto; }

.pricing__note {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 760px;
  margin-inline: auto;
}

/* --- Wedding section ---------------------------------------------------- */
.wedding {
  background:
    linear-gradient(135deg, rgba(245,241,232,0.95), rgba(245,241,232,0.95)),
    radial-gradient(circle at 30% 30%, var(--gold-soft), transparent 60%);
  position: relative;
  overflow: hidden;
}
.wedding::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.wedding__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) { .wedding__inner { grid-template-columns: 1fr; } }

.wedding__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.wedding__feature {
  background: var(--paper);
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex; align-items: center; gap: 0.6rem;
}
.wedding__feature svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

.wedding__visual {
  position: relative;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.wedding__rings-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 2rem;
}
.wedding__rings-svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 8px 28px rgba(201, 169, 97, 0.25));
}
.wedding__rings-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--text);
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* --- About -------------------------------------------------------------- */
.about {
  background: var(--black);
  color: var(--text-on-dark);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) { .about__inner { grid-template-columns: 1fr; } }

.about__title { color: var(--ivory); }
.about__text { font-size: 1.0625rem; line-height: 1.75; color: var(--text-on-dark-muted); margin-bottom: 1.25rem; }
.about__text strong { color: var(--ivory); font-weight: 500; }

.about__values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-dark);
}
.about__value {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--ivory);
  letter-spacing: 0.04em;
}
.about__value svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* --- Contact ------------------------------------------------------------ */
.contact {
  background: var(--ivory);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}
@media (max-width: 900px) { .contact__inner { grid-template-columns: 1fr; } }

.contact__heading { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 1rem; }

.contact__details {
  display: flex; flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.contact__detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem; align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.contact__detail:last-child { border-bottom: 0; }
.contact__detail-icon {
  width: 42px; height: 42px;
  background: var(--black);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.contact__detail-icon svg { width: 18px; height: 18px; }
.contact__detail-label {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.contact__detail-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
}
.contact__detail-value a { transition: color var(--transition); }
.contact__detail-value a:hover { color: var(--gold); }

/* --- Form --------------------------------------------------------------- */
.form {
  background: var(--paper);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

.form__field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.form__label .req,
.form__check .req { color: var(--gold); }
.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  transition: all var(--transition);
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--black);
  background: var(--paper);
}
.form__textarea { min-height: 140px; resize: vertical; }
.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form__check {
  display: flex; gap: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.form__check input { margin-top: 4px; flex-shrink: 0; accent-color: var(--gold); }
.form__check a { color: var(--text); text-decoration: underline; text-decoration-color: var(--gold); }

.form .btn { width: 100%; justify-content: center; padding: 1.1rem; }

.form__success {
  display: none;
  padding: 1rem 1.25rem;
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.form__success.show { display: block; }

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

/* --- Final CTA ---------------------------------------------------------- */
.final-cta {
  background: var(--black);
  color: var(--text-on-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at center, var(--gold-soft) 0%, transparent 60%);
}
.final-cta__inner { position: relative; max-width: 720px; margin: 0 auto; }
.final-cta__title {
  color: var(--ivory);
  margin-block: 1.5rem;
}
.final-cta__title em { color: var(--gold); font-style: italic; }
.final-cta__text { color: var(--text-on-dark-muted); margin-bottom: 2.5rem; font-size: 1.0625rem; }
.final-cta .btn { padding: 1.1rem 2.25rem; font-size: 0.9rem; }

/* --- Footer ------------------------------------------------------------- */
.footer {
  background: var(--anthracite);
  color: var(--text-on-dark-muted);
  padding-block: 4rem 1.5rem;
  border-top: 1px solid var(--line-dark);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__top { grid-template-columns: 1fr; } }

.footer .brand__name-main { color: var(--ivory); }
.footer__about { font-size: 0.9rem; line-height: 1.7; margin-top: 1.25rem; max-width: 38ch; }

.footer__title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer__list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__link {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--gold); }
.footer__link--static { cursor: default; pointer-events: none; }
.footer__link--static:hover { color: inherit; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
}
.footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* --- Animations --------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }

/* --- Legal page styling ------------------------------------------------- */
.legal {
  padding-top: clamp(8rem, 14vw, 10rem);
  padding-bottom: var(--section-y);
}
.legal__title { margin-bottom: 1.5rem; }
.legal__lede { color: var(--text-muted); margin-bottom: 3rem; max-width: 65ch; }
.legal__stand { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--text-muted); font-size: 0.9rem; }

.legal-content { max-width: 800px; }
.legal-content h2 {
  font-size: 1.5rem;
  margin-block: 3rem 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}
.legal-content h3 {
  font-size: 1.125rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-block: 1.75rem 0.75rem;
  letter-spacing: 0;
}
.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 0.85rem;
}
.legal-content ul {
  list-style: none;
  margin-bottom: 1rem;
  padding-left: 0;
}
.legal-content ul li {
  position: relative;
  padding-left: 1.5rem;
}
.legal-content ul li::before {
  content: "—";
  position: absolute; left: 0; top: 0;
  color: var(--gold);
}
.legal-content a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.placeholder {
  background: var(--gold-soft);
  padding: 2px 8px;
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
}

/* ==========================================================================
   MOBILE OPTIMIZATIONS
   Goal: keep desktop intact. Match the design mocks for mobile.
   ========================================================================== */

/* --- Mobile-only elements (hidden on desktop by default) ---------------- */
.benefits__stat-icon,
.benefits__eyebrow-mobile,
.benefits__cta-block,
.process__cta-block,
.pricing__controls,
.pricing__alt,
.pricing__trust,
.wedding__accordion,
.wedding__cta-mobile,
.wedding__trust,
.about__accordion,
.about__cta-mobile,
.about__value-sub,
.service__indicator,
.hero__trust-sub,
.hero__mockup,
.sticky-cta { display: none; }

/* Hero trust title: keep original desktop look (strong defaults to bold) */
.hero__trust-title {
  font-weight: inherit;
  color: inherit;
}
.hero__trust-text { display: contents; }

/* --- Service: details/summary acts like static card on desktop ---------- */
.service__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  cursor: default;
}
.service__head::-webkit-details-marker { display: none; }
.service__head::marker { display: none; }

/* --- Tablet (641px – 900px) fine-tuning --------------------------------- */
@media (min-width: 641px) and (max-width: 900px) {
  .hero__title { font-size: clamp(2.25rem, 5vw, 3.5rem); }
  .pricing { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-4px); }
  .hero__badge { padding: 0.8rem 1rem; }
  .hero__badge-num { font-size: 1.5rem; }
}

/* --- Mobile (max 720px) ------------------------------------------------- */
@media (max-width: 720px) {
  :root {
    --section-y: clamp(3rem, 9vw, 4.5rem);
    --gutter: 1.25rem;
  }

  /* --- Header / Navigation --- */
  .site-header { padding: 0.85rem 0; }
  .site-header.scrolled { padding: 0.65rem 0; }
  .brand__logo { height: 48px; }
  .nav { gap: 1rem; }

  .nav__menu {
    inset: 0;
    padding: 5.5rem 1.75rem 2rem;
    gap: 1.25rem;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .nav__menu li { width: 100%; }
  .nav__link {
    font-size: 1.5rem;
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }
  .nav__cta {
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  /* --- Hero --- */
  .hero {
    padding-top: 6rem;
    padding-bottom: 1rem;
  }
  .hero::after { background-size: 60px 60px; opacity: 0.18; }

  /* Reorder mobile: title → lede → CTAs → visual → trust */
  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .hero__content {
    display: contents;
    animation: none;
  }
  .hero__eyebrow { order: 1; }
  .hero__title   { order: 2; }
  .hero__lede    { order: 3; }
  .hero__ctas    { order: 4; }
  .hero__visual  { order: 5; }
  .hero__trust   { order: 6; }

  .hero__eyebrow { margin-bottom: 1rem; font-size: 0.7rem; letter-spacing: 0.2em; }
  .hero__eyebrow::before { width: 20px; }

  .hero__title {
    font-size: clamp(2rem, 9vw, 2.625rem);
    line-height: 1.12;
    margin-bottom: 1.125rem;
  }
  .hero__lede {
    font-size: 0.9625rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }

  .hero__ctas {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    /* Stretch beyond the container gutter so the buttons feel wider */
    margin-inline: calc(var(--gutter) * -0.6);
  }
  /* Slightly rounded CTAs (matches trust-pills) */
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 1.05rem 1.25rem;
    border-radius: 10px;
  }

  /* Trust badges — 4 in a row with icon + title + subtitle, vertical (mock 2) */
  .hero__trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem 0.35rem;
    padding-top: 1.75rem;
    margin-top: 0.25rem;
    border-top: 1px solid var(--line);
  }
  .hero__trust-item {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 0.15rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    font-size: inherit;
    color: inherit;
  }
  .hero__trust-item svg {
    width: 24px; height: 24px;
    padding: 0;
    flex-shrink: 0;
    color: var(--gold);
    stroke-width: 1.5;
  }
  /* Mobile: text uses flex-column layout (overrides display:contents default) */
  .hero__trust-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    width: 100%;
  }
  .hero__trust-title {
    font-weight: 600;
    font-size: 0.7rem;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: 0;
  }
  .hero__trust-sub {
    display: block;
    font-size: 0.58rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0;
    max-width: none;
    word-break: keep-all;
    hyphens: auto;
  }

  /* Hero visual on mobile: full-width image, keypoints in 2-col row below */
  .hero__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
    max-width: 100%;
    margin: 0;
    overflow: visible;
    position: relative;
  }
  .hero__illustration { display: none !important; }

  /* Image at full natural size — no cropping, no overlay, no browser frame */
  .hero__mockup {
    display: block;
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    height: auto;
    border-radius: 14px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 18px 40px -14px rgba(15, 18, 40, 0.22);
    position: relative;
    margin: 0;
    animation: none;
  }
  .hero__mockup-bar,
  .hero__mockup-overlay { display: none; }
  .hero__mockup-screen {
    position: relative;
    aspect-ratio: auto;
    height: auto;
    min-height: 0;
    overflow: hidden;
    background: transparent;
  }
  .hero__mockup-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    filter: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  /* Keypoint cards (+37% / 100%) — row of 2 below image */
  .hero__badge {
    position: static;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: none;
    border-radius: 12px;
    padding: 1rem 0.85rem;
    gap: 0.4rem;
    box-shadow: 0 10px 22px -12px rgba(0, 0, 0, 0.15);
    animation: none;
    top: auto; bottom: auto; left: auto; right: auto;
  }
  .hero__badge--top { grid-column: 1; }
  .hero__badge--bottom { grid-column: 2; }
  .hero__badge svg { width: 24px; height: 24px; color: var(--gold); }
  .hero__badge > div { text-align: center; }
  .hero__badge-num {
    font-size: 1.4rem;
    display: block;
  }
  .hero__badge-label {
    font-size: 0.66rem;
    letter-spacing: 0.04em;
    display: block;
    margin-top: 0.2rem;
    line-height: 1.25;
  }

  /* --- Trust bar (marquee) --- */
  .trust-bar { padding: 1rem 0; }
  .trust-bar__track {
    gap: 2.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    animation-duration: 22s;
  }

  /* --- Section heads --- */
  .section__head { margin-bottom: 2.5rem; }
  .section__title { font-size: clamp(1.625rem, 7vw, 2.125rem); line-height: 1.15; }
  .section__lede { font-size: 0.95rem; line-height: 1.65; }

  /* --- Services — accordion (mock style, compact) --- */
  .services-grid {
    counter-reset: service;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
  }
  .service {
    counter-increment: service;
    display: block;
    padding: 0;
    min-height: auto;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }
  .service:hover { background: var(--paper); }
  .service[open] {
    border-color: rgba(201, 169, 97, 0.45);
    box-shadow: 0 6px 24px -14px rgba(201, 169, 97, 0.35);
  }

  /* Featured service: same paper background as others on mobile */
  .service__feature {
    background: var(--paper);
    color: var(--text);
  }
  .service__feature .service__num { color: var(--text-light); }
  .service__feature .service__title { color: var(--text); }
  .service__feature .service__text { color: var(--text-muted); }
  .service__feature:hover { background: var(--paper); }

  /* Summary becomes the clickable header with grid layout */
  .service__head {
    display: grid;
    grid-template-columns: 44px 1fr 16px;
    align-items: center;
    column-gap: 0.85rem;
    padding: 0.9rem 1rem;
    cursor: pointer;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
    flex-direction: row;
    gap: 0;
  }
  .service__head::-webkit-details-marker { display: none; }
  .service__head::marker { display: none; }

  .service__icon {
    grid-column: 1;
    width: 44px; height: 44px;
    padding: 11px;
    background: var(--gold-soft);
    border-radius: 50%;
    color: var(--gold);
    box-sizing: border-box;
    margin: 0;
  }
  .service:hover .service__icon { transform: none; }

  /* Hide separate num span — replaced by counter on title */
  .service__num { display: none; }

  .service__title {
    grid-column: 2;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 0;
    line-height: 1.25;
    margin: 0;
    color: var(--text);
  }
  .service__title::before {
    content: counter(service, decimal-leading-zero) " ";
    color: var(--gold);
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.4em;
    margin-right: 0.5rem;
    vertical-align: -0.04em;
  }

  /* +/× indicator (mobile only) */
  .service__indicator {
    display: block;
    grid-column: 3;
    position: relative;
    width: 14px; height: 14px;
    justify-self: end;
  }
  .service__indicator::before,
  .service__indicator::after {
    content: "";
    position: absolute;
    background: var(--gold);
    transition: transform 0.25s ease;
  }
  .service__indicator::before {
    top: 50%; left: 0; right: 0;
    height: 1.5px;
    transform: translateY(-50%);
  }
  .service__indicator::after {
    top: 0; bottom: 0; left: 50%;
    width: 1.5px;
    transform: translateX(-50%);
  }
  .service[open] .service__indicator::after {
    transform: translateX(-50%) scaleY(0);
  }

  .service__text {
    padding: 0 1rem 1rem 3.85rem;
    font-size: 0.82rem;
    line-height: 1.55;
    margin: 0;
    color: var(--text-muted);
  }

  /* --- Benefits — flex column reorder, stats with icons (mock style) --- */
  .benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .benefits__content { display: contents; }
  .benefits__intro { order: 1; }
  .benefits__visual { order: 2; }
  .benefits__eyebrow-mobile { order: 3; display: inline-flex; margin-bottom: 0; }
  .benefits__list { order: 4; margin-top: 0; gap: 1.25rem; }
  .benefits__cta-block { order: 5; }

  .benefits__visual {
    aspect-ratio: auto;
    background: transparent;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
    padding: 0;
    overflow: visible;
  }
  .benefits__visual::before { display: none; }

  /* Stats in gold theme (mock-feedback: "farbig mit der webseiten farbe") */
  .benefits__stat {
    position: static;
    background: linear-gradient(160deg, rgba(201, 169, 97, 0.18), rgba(201, 169, 97, 0.06));
    border: 1px solid rgba(201, 169, 97, 0.35);
    border-radius: 14px;
    padding: 1.5rem 0.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.45rem;
    color: var(--text);
    box-shadow: 0 8px 24px -14px rgba(201, 169, 97, 0.4);
  }
  .benefits__stat--2 {
    background: linear-gradient(160deg, rgba(201, 169, 97, 0.28), rgba(201, 169, 97, 0.12));
    color: var(--text);
  }
  .benefits__stat--3 { aspect-ratio: auto; flex-direction: column; align-items: center; padding: 1.5rem 0.75rem 1.25rem; }

  .benefits__stat-icon {
    display: block;
    width: 40px; height: 40px;
    padding: 7px;
    background: var(--paper);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    color: var(--gold);
    margin-bottom: 0.25rem;
    box-sizing: border-box;
  }

  .benefits__stat-num {
    font-size: clamp(1.5rem, 6vw, 1.875rem);
    line-height: 1;
    margin: 0;
    color: var(--gold);
    position: relative;
    padding-bottom: 0.55rem;
    white-space: nowrap;
    font-weight: 600;
  }
  .benefits__stat--2 .benefits__stat-num { color: var(--gold); }
  .benefits__stat-num::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 22px;
    height: 1.5px;
    background: var(--gold);
  }
  .benefits__stat-label {
    font-size: 0.72rem;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 500;
    font-family: var(--font-body);
    line-height: 1.4;
    color: var(--text);
    opacity: 1;
  }
  .benefits__stat--2 .benefits__stat-label { color: var(--text); }

  /* Inline CTA blocks in benefits + process: replaced by sticky CTA */
  .benefits__cta-block,
  .process__cta-block { display: none; }

  .benefit {
    padding-bottom: 1.25rem;
    gap: 1rem;
    grid-template-columns: 40px 1fr;
  }
  .benefit__icon {
    width: 40px; height: 40px;
    border-radius: 8px;
  }
  .benefit__icon svg { width: 18px; height: 18px; }
  .benefit__title { font-size: 0.95rem; margin-bottom: 0.3rem; }
  .benefit__text { font-size: 0.85rem; line-height: 1.5; }

  /* Inline CTA blocks fully hidden on mobile (replaced by sticky CTA) */
  .benefits__cta-block,
  .process__cta-block,
  .benefits__cta-btn,
  .process__cta-btn,
  .benefits__trust-line,
  .process__trust-line { display: none !important; }

  /* --- Process — card layout (mock style) --- */
  .process {
    counter-reset: step;
    grid-template-columns: 1fr;
    gap: 0.625rem;
    margin-bottom: 1.5rem;
    position: static;
    display: flex;
    flex-direction: column;
  }
  .process::before { display: none; }
  .process__step::after { display: none; }

  .process__step {
    counter-increment: step;
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    row-gap: 0.35rem;
    text-align: left;
    padding: 1.1rem 1.25rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    align-items: center;
  }
  .process__step:hover {
    background: var(--paper);
    border-color: var(--line);
    box-shadow: none;
  }
  .process__step:hover .process__icon {
    background: var(--gold-soft);
    border-color: transparent;
    box-shadow: none;
  }

  .process__icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    width: 48px; height: 48px;
    padding: 12px;
    background: var(--gold-soft);
    border: none;
    margin: 0;
    box-sizing: border-box;
  }
  .process__icon svg { width: 22px; height: 22px; }

  .process__num { display: none; } /* replaced by counter on title */
  .process__title {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0;
    margin: 0;
    line-height: 1.2;
  }
  .process__title::before {
    content: counter(step, decimal-leading-zero) " ";
    color: var(--gold);
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.4em;
    margin-right: 0.5rem;
    vertical-align: -0.04em;
  }
  .process__text {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    font-size: 0.82rem;
    line-height: 1.45;
    margin: 0;
  }
  .process__bar { display: none; }

  /* Hide desktop trust bar (replaced by sticky CTA) */
  .process__trust { display: none; }

  /* --- Pricing — slider (mock style) --- */
  .pricing {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 0.875rem;
    padding: 1rem var(--gutter);
    margin: 0 calc(var(--gutter) * -1);
    grid-template-columns: none;
    max-width: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .pricing::-webkit-scrollbar { display: none; }

  .plan {
    flex: 0 0 calc(100% - 2rem);
    scroll-snap-align: center;
    margin: 0;
    padding: 1.5rem 1.4rem;
    gap: 1rem;
  }
  .plan--featured { transform: none; order: 0; }
  .plan--featured:hover { transform: translateY(-4px); }
  .plan__badge {
    right: 1.4rem;
    top: -10px;
    font-size: 0.65rem;
    padding: 0.35rem 0.8rem;
  }
  .plan__name { font-size: 1.5rem; }
  .plan__tag { font-size: 0.8rem; margin-bottom: 1rem; }
  .plan__price-amount { font-size: 2.25rem; }
  .plan__price-note { font-size: 0.8rem; }
  .plan__features { gap: 0.7rem; }
  .plan__feature { font-size: 0.85rem; }
  .plan__feature svg { width: 15px; height: 15px; margin-top: 3px; }
  .plan .btn { padding: 1rem; font-size: 0.85rem; }

  /* Slider controls */
  .pricing__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.75rem;
  }
  .pricing__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--paper);
    border: 1px solid var(--line);
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0;
  }
  .pricing__arrow:hover { border-color: var(--gold); color: var(--gold); }
  .pricing__arrow:disabled { opacity: 0.35; cursor: not-allowed; }
  .pricing__arrow svg { width: 18px; height: 18px; }

  .pricing__dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .pricing__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--line);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .pricing__dot.is-active {
    background: var(--gold);
    width: 22px;
    border-radius: 4px;
  }

  /* "Nicht das Richtige?" alt box */
  .pricing__alt {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    margin-top: 1.5rem;
  }
  .pricing__alt-icon {
    width: 44px; height: 44px;
    background: var(--gold-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
  }
  .pricing__alt-icon svg { width: 22px; height: 22px; }
  .pricing__alt-content { flex: 1; min-width: 0; }
  .pricing__alt-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.2rem;
    color: var(--text);
    letter-spacing: 0;
  }
  .pricing__alt-text {
    font-size: 0.8rem;
    margin: 0 0 0.4rem;
    line-height: 1.4;
  }
  .pricing__alt-link {
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
  }
  .pricing__alt-link .arrow { display: inline-block; transition: transform var(--transition); }
  .pricing__alt-link:hover .arrow { transform: translateX(4px); }

  /* Trust indicators */
  .pricing__trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
  }
  .pricing__trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    text-align: center;
  }
  .pricing__trust-item svg {
    width: 20px; height: 20px;
    color: var(--gold);
    flex-shrink: 0;
  }
  .pricing__trust-item span {
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.25;
    font-weight: 500;
  }

  .pricing__note { display: none; }

  /* --- Wedding — accordion (mock style) --- */
  .wedding__inner { gap: 1.5rem; }
  .wedding__visual {
    aspect-ratio: auto;
    padding: 1rem 0 0;
    min-height: 180px;
  }
  .wedding__rings-wrap { gap: 1rem; }
  .wedding__rings-svg { max-width: 160px; }
  .wedding__rings-tagline {
    font-size: 1rem;
    line-height: 1.35;
    color: var(--gold);
  }

  /* Hide desktop feature grid, show accordion */
  .wedding__features { display: none; }
  .wedding__cta-desktop { display: none; }

  .wedding__accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
  }
  .wedding__acc-item {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s ease;
  }
  .wedding__acc-item[open] { border-color: rgba(201,169,97,0.45); }

  .wedding__acc-summary {
    list-style: none;
    cursor: pointer;
    padding: 0.95rem 1rem;
    display: grid;
    grid-template-columns: 36px 1fr 24px;
    align-items: center;
    column-gap: 0.85rem;
    -webkit-tap-highlight-color: transparent;
  }
  .wedding__acc-summary::-webkit-details-marker { display: none; }

  .wedding__acc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: var(--gold-soft);
    border-radius: 50%;
    color: var(--gold);
  }
  .wedding__acc-icon svg { width: 16px; height: 16px; }

  .wedding__acc-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.25;
  }

  .wedding__acc-indicator {
    position: relative;
    width: 14px; height: 14px;
    flex-shrink: 0;
    justify-self: end;
  }
  .wedding__acc-indicator::before,
  .wedding__acc-indicator::after {
    content: "";
    position: absolute;
    background: var(--gold);
    transition: transform 0.25s ease;
  }
  .wedding__acc-indicator::before {
    top: 50%; left: 0; right: 0;
    height: 1.5px;
    transform: translateY(-50%);
  }
  .wedding__acc-indicator::after {
    top: 0; bottom: 0; left: 50%;
    width: 1.5px;
    transform: translateX(-50%);
  }
  .wedding__acc-item[open] .wedding__acc-indicator::after {
    transform: translateX(-50%) scaleY(0);
  }

  .wedding__acc-content {
    padding: 0 1rem 1rem 3.85rem;
  }
  .wedding__acc-content p {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0;
  }

  .wedding__cta-mobile {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    padding: 1.05rem 1.5rem;
    margin-top: 0.5rem;
  }

  /* Wedding trust indicators (4 cols) */
  .wedding__trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
  }
  .wedding__trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
  }
  .wedding__trust-item svg {
    width: 20px; height: 20px;
    color: var(--gold);
    flex-shrink: 0;
  }
  .wedding__trust-item span {
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.3;
    display: flex;
    flex-direction: column;
  }
  .wedding__trust-item strong {
    font-weight: 600;
    color: var(--text);
    font-size: 0.7rem;
    margin-bottom: 0.1rem;
  }

  /* --- About — accordion (mock style) --- */
  .about__inner { gap: 1.5rem; }
  .about__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  /* Hide the second paragraph (covered by accordion content) */
  .about__text--desktop { display: none; }

  .about__accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.5rem 0 1.5rem;
  }
  .about__acc-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s ease, background 0.25s ease;
  }
  .about__acc-item[open] {
    border-color: rgba(201,169,97,0.4);
    background: rgba(201,169,97,0.05);
  }

  .about__acc-summary {
    list-style: none;
    cursor: pointer;
    padding: 0.95rem 1rem;
    display: grid;
    grid-template-columns: 36px 1fr 18px;
    align-items: center;
    column-gap: 0.85rem;
    -webkit-tap-highlight-color: transparent;
  }
  .about__acc-summary::-webkit-details-marker { display: none; }

  .about__acc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    color: var(--gold);
  }
  .about__acc-icon svg { width: 22px; height: 22px; }

  .about__acc-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
  }
  .about__acc-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ivory);
    line-height: 1.2;
  }
  .about__acc-desc {
    font-size: 0.78rem;
    color: var(--text-on-dark-muted);
    line-height: 1.4;
  }

  .about__acc-indicator {
    width: 12px; height: 12px;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    justify-self: end;
    margin-bottom: 4px;
  }
  .about__acc-item[open] .about__acc-indicator {
    transform: rotate(225deg);
    margin-bottom: -2px;
  }

  .about__acc-content {
    padding: 0 1rem 1rem 3.85rem;
  }
  .about__acc-content p {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--text-on-dark-muted);
    margin: 0;
  }

  .about__cta-mobile {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    padding: 1.05rem 1.5rem;
    margin: 0.5rem 0 1.5rem;
  }

  /* About values: 4 cols on mobile with subtitle */
  .about__values {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .about__value {
    flex-direction: column;
    text-align: center;
    gap: 0.45rem;
    font-size: 0.7rem;
    align-items: center;
  }
  .about__value svg {
    width: 22px; height: 22px;
    color: var(--gold);
  }
  .about__value-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.25;
  }
  .about__value-text strong {
    color: var(--ivory);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0;
  }
  .about__value-sub {
    display: block;
    color: var(--text-on-dark-muted);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0;
  }

  /* --- Contact --- */
  .contact__inner { gap: 2rem; }
  .contact__heading { font-size: 1.375rem; margin-bottom: 0.75rem; }
  .contact__details { gap: 1rem; margin-top: 2rem; }
  .contact__detail {
    padding-bottom: 1.25rem;
    gap: 1rem;
  }
  .contact__detail-icon { width: 38px; height: 38px; }
  .contact__detail-icon svg { width: 16px; height: 16px; }
  .contact__detail-label { font-size: 0.65rem; letter-spacing: 0.18em; margin-bottom: 0.25rem; }
  .contact__detail-value { font-size: 1.0625rem; }

  /* --- Form --- */
  .form { padding: 1.5rem 1.25rem; }
  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }
  .form__field { margin-bottom: 1rem; }
  .form__label { font-size: 0.7rem; letter-spacing: 0.1em; }
  .form__input,
  .form__textarea,
  .form__select {
    padding: 0.85rem 0.95rem;
    font-size: 16px; /* prevents iOS zoom on focus */
  }
  .form__textarea { min-height: 120px; }
  .form__check { font-size: 0.8rem; line-height: 1.5; }
  .form .btn { padding: 1.05rem; font-size: 0.9rem; }

  /* --- Final CTA --- */
  .final-cta__title { font-size: clamp(1.75rem, 7.5vw, 2.5rem); }
  .final-cta__text { font-size: 0.9625rem; margin-bottom: 2rem; }
  .final-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 1.1rem;
  }

  /* --- Footer --- */
  .footer { padding-block: 3rem 1.5rem; }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    padding-bottom: 2rem;
  }
  .footer__top > div:first-child { grid-column: 1 / -1; }
  .footer .brand__logo--dark { height: 56px; }
  .footer__about {
    font-size: 0.875rem;
    margin-top: 1rem;
    max-width: 100%;
  }
  .footer__title {
    font-size: 0.7rem;
    margin-bottom: 1rem;
    letter-spacing: 0.18em;
  }
  .footer__list { gap: 0.625rem; }
  .footer__link { font-size: 0.85rem; }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 0.75rem;
    padding-top: 1.5rem;
  }
  .footer__legal { gap: 1.25rem; }

  /* --- Buttons (touch targets) --- */
  .btn { padding: 0.95rem 1.5rem; font-size: 0.875rem; }

  /* --- Legal pages --- */
  .legal { padding-top: 6.5rem; }
  .legal-content h2 { font-size: 1.25rem; margin-block: 2rem 0.75rem; }
  .legal-content h3 { font-size: 1rem; }
  .legal-content p,
  .legal-content li { font-size: 0.9rem; line-height: 1.7; }
}

/* --- Smaller phones (max 480px) ----------------------------------------- */
@media (max-width: 480px) {
  .hero__title { font-size: clamp(1.875rem, 8.5vw, 2.375rem); }
  .hero__trust { gap: 0.75rem 0.25rem; }
  .hero__trust-item { padding: 0; gap: 0.4rem; }
  .hero__trust-item svg { width: 20px; height: 20px; }
  .hero__trust-title { font-size: 0.65rem; }
  .hero__trust-sub { font-size: 0.55rem; line-height: 1.3; }

  /* Services accordion: tighter on small phones */
  .service__head { padding: 0.85rem 0.95rem; column-gap: 0.75rem; }
  .service__icon { width: 40px; height: 40px; padding: 10px; }
  .service__head { grid-template-columns: 40px 1fr 14px; }
  .service__title { font-size: 0.92rem; }
  .service__text { padding: 0 0.95rem 0.95rem 3.5rem; font-size: 0.78rem; }

  /* Benefits stats: stack 1 col on tiny screens for readability */
  .benefits__visual { grid-template-columns: 1fr; }
  .benefits__stat { padding: 1.25rem 1rem; aspect-ratio: auto; }

  .process__step { padding: 1rem; column-gap: 0.85rem; }
  .process__icon { width: 44px; height: 44px; padding: 11px; }
  .process__icon svg { width: 20px; height: 20px; }

  /* Pricing trust: 2 cols on smaller phones */
  .pricing__trust { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .pricing__trust-item span { font-size: 0.7rem; }

  /* Wedding trust: 2 cols on smaller phones */
  .wedding__trust { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .wedding__trust-item span { font-size: 0.7rem; }
  .wedding__trust-item strong { font-size: 0.75rem; }

  /* About values: 2 cols */
  .about__values { grid-template-columns: 1fr 1fr; gap: 0.875rem; }
  .about__value-text strong { font-size: 0.78rem; }
  .about__value-sub { font-size: 0.68rem; }

  .footer__top { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer__top > div:first-child { grid-column: auto; }
}

/* --- Very small phones (max 360px) -------------------------------------- */
@media (max-width: 360px) {
  :root { --gutter: 1rem; }
  .hero__title { font-size: 1.75rem; }
  .section__title { font-size: 1.5rem; }
  /* Fallback: 2x2 trust layout when 4-in-a-row gets too cramped */
  .hero__trust {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.5rem;
  }
  .hero__trust-item svg { width: 24px; height: 24px; }
  .hero__trust-title { font-size: 0.78rem; }
  .hero__trust-sub { font-size: 0.65rem; }
  .plan__badge { right: 1rem; }
  .pricing__trust-item span { font-size: 0.62rem; }
  .wedding__trust-item span { font-size: 0.62rem; }
}

/* --- Touch hover-state cleanup (only for tablets/desktop touch) --------- */
/* Scoped to min-width 721px so phones use their own mobile styles */
@media (hover: none) and (min-width: 721px) {
  .service:hover { background: var(--ivory); }
  .service__feature:hover { background: var(--black); }
  .plan:hover { transform: none; box-shadow: none; }
  .plan--featured:hover { transform: none; }
  .process__step:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }
  .nav__link:hover::after { width: 0; }
}

/* --- Sticky bottom CTA (mobile only) ------------------------------------ */
@media (max-width: 720px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0.85rem;
    left: 0.85rem;
    right: 0.85rem;
    z-index: 90;
    background: var(--gold);
    color: var(--black);
    padding: 0.95rem 1.4rem;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 14px 36px -10px rgba(0, 0, 0, 0.35),
                0 0 0 1px rgba(201, 169, 97, 0.2);
    transform: translateY(calc(100% + 1.5rem));
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.25s ease;
    -webkit-tap-highlight-color: transparent;
    will-change: transform;
  }
  .sticky-cta.is-visible {
    transform: translateY(0);
  }
  /* Hide sticky CTA when mobile menu is open (prevents overlap) */
  body.menu-open .sticky-cta {
    transform: translateY(calc(100% + 2rem));
    pointer-events: none;
  }
  .sticky-cta:hover,
  .sticky-cta:active {
    background: var(--gold-bright);
  }
  .sticky-cta svg {
    width: 18px; height: 18px;
    flex-shrink: 0;
  }
  .sticky-cta__text {
    flex-shrink: 1;
    min-width: 0;
  }
  .sticky-cta .arrow {
    transition: transform 0.25s ease;
  }
  .sticky-cta:hover .arrow {
    transform: translateX(3px);
  }

  /* Add bottom padding to last sections so the sticky CTA doesn't cover content */
  .footer { padding-bottom: 6rem; }
}

/* iOS safe area for sticky CTA (notch / home indicator) */
@supports (padding: max(0px)) {
  @media (max-width: 720px) {
    .sticky-cta {
      bottom: max(0.85rem, env(safe-area-inset-bottom));
    }
  }
}

/* --- Reduced motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
