:root {
  --paper: #efe9e2;
  --card-bg: #fbf8f4;
  --blush: #f7ece8;
  --ink: #2a2724;
  --mut: #6a6154;
  --mut-2: #8a8177;
  --gold: #b8975a;
  --gold-dark: #7a6127;
  --gold-soft: #d8c39a;
  --line: #e4dcd0;
  --line-2: #ddd2c0;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --hand: 'Caveat', cursive;
  --body: system-ui, -apple-system, sans-serif;
  --wrap: 1160px;
  --shadow-soft: 0 10px 30px -12px rgba(122, 97, 39, .18);
  --shadow-lift: 0 16px 40px -14px rgba(122, 97, 39, .26);
  --ease-out: cubic-bezier(.22, .8, .3, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); -webkit-font-smoothing: antialiased; position: relative; }
/* feines Papierkorn über allem — kaum sichtbar, nimmt die "flache Fläche" weg */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 2;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
a { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 60px; }
::selection { background: #ecd9b8; color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ————— Scroll-Reveal-System —————
   Initial-Versteck NUR wenn JS da ist (html.js) UND Motion erlaubt —
   ohne JS / mit reduced-motion bleibt alles sofort sichtbar. */
@media (prefers-reduced-motion: no-preference) {
  html.js .rv { opacity: 0; transform: translateY(26px); }
  html.js .rv.in { opacity: 1; transform: none; transition: opacity .8s ease, transform .8s var(--ease-out); }
  html.js .rv-l { opacity: 0; transform: translateX(-34px); }
  html.js .rv-r { opacity: 0; transform: translateX(34px); }
  html.js .rv-l.in, html.js .rv-r.in { opacity: 1; transform: none; transition: opacity .85s ease, transform .85s var(--ease-out); }
  html.js [data-d="1"] { transition-delay: .08s; }
  html.js [data-d="2"] { transition-delay: .16s; }
  html.js [data-d="3"] { transition-delay: .24s; }
  html.js [data-d="4"] { transition-delay: .32s; }
  html.js [data-d="5"] { transition-delay: .40s; }
  html.js [data-d="6"] { transition-delay: .48s; }
}

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font: 600 15px/1 var(--body); padding: 15px 26px; border-radius: 9px; cursor: pointer; text-align: center; border: none; transition: transform .22s var(--ease-out), box-shadow .22s ease, background .18s ease, border-color .18s ease, color .18s ease; }
.btn-gold { color: #fff; background: var(--gold); box-shadow: 0 6px 18px -8px rgba(122, 97, 39, .45); }
.btn-gold:hover { background: #a9884b; transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(122, 97, 39, .5); }
.btn-gold:active { transform: translateY(0); box-shadow: 0 4px 12px -8px rgba(122, 97, 39, .4); }
.btn-ghost { color: var(--mut); border: 1.4px solid #c9bfae; background: #fff; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn[disabled] { opacity: .55; pointer-events: none; }

/* header */
.site-header { background: rgba(251, 248, 244, .92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 16px 0; position: sticky; top: 0; z-index: 50; border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease; }
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 24px -18px rgba(42, 39, 36, .25); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--ink); letter-spacing: .01em; display: inline-flex; align-items: center; gap: 9px; }
.logo b { color: var(--gold); font-weight: 600; }
.logo .rings { flex: none; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a:not(.btn) { font: 500 14px/1 var(--body); color: var(--mut); position: relative; padding: 4px 0; }
.nav__links a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1.5px; background: var(--gold); transition: right .25s var(--ease-out); }
.nav__links a:not(.btn):hover, .nav__links a.active { color: var(--gold-dark); }
.nav__links a:not(.btn):hover::after, .nav__links a.active::after { right: 0; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 4px; background: none; border: none; cursor: pointer; padding: 15px 12px; margin: -9px -6px; }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-mobile { display: none; flex-direction: column; gap: 4px; background: var(--card-bg); padding: 0 20px 18px; }
.nav-mobile a { padding: 15px 0; font: 500 15px/1 var(--body); color: var(--mut); border-top: 1px solid var(--line); }
.nav-mobile.open { display: flex; }

/* badge */
.badge { display: inline-flex; align-items: center; gap: 7px; border: 1.2px solid var(--gold-soft); background: #fbf3e4; color: #977536; border-radius: 100px; font: 600 12px/1.3 var(--body); padding: 8px 15px; }
.gdot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: none; }
.badge.gold-solid { border-color: var(--gold); background: #f6ecd6; color: var(--gold-dark); }

/* hero */
.hero { background: linear-gradient(180deg, var(--blush) 0%, #f5e9e3 78%, var(--paper) 100%); padding: 72px 0 64px; position: relative; overflow: hidden; }
.hero::before { /* zarte Gold-Ringe als Hintergrund-Ornament */
  content: ""; position: absolute; right: -120px; top: -140px; width: 480px; height: 480px; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 480'%3E%3Cg fill='none' stroke='%23b8975a' stroke-width='1'%3E%3Ccircle cx='210' cy='240' r='150' opacity='.14'/%3E%3Ccircle cx='300' cy='210' r='150' opacity='.1'/%3E%3C/g%3E%3C/svg%3E");
}
.hero__grid { display: flex; align-items: center; gap: 44px; position: relative; }
.hero__txt { flex: 1.25; }
.hero__txt h1 { font-family: var(--serif); font-weight: 500; font-size: 48px; line-height: 1.1; color: var(--ink); margin: 18px 0 14px; }
.hero__txt h1 .uline { position: relative; white-space: nowrap; }
.hero__txt h1 .uline svg { position: absolute; left: 0; right: 0; bottom: -7px; width: 100%; height: 12px; color: var(--gold); opacity: .85; }
.hero__txt p.sub { font: 400 17px/1.55 var(--body); color: var(--mut); max-width: 460px; margin: 0 0 24px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero__hand { font: 500 19px/1.2 var(--hand); color: var(--gold-dark); margin: 14px 0 0; }
.hero__img { flex: 1; position: relative; }
.hero__img::before { content: ""; position: absolute; inset: 6% 4%; border-radius: 50%; background: radial-gradient(closest-side, rgba(214, 178, 116, .28), rgba(214, 178, 116, 0) 72%); }
.hero__img img { width: 100%; max-width: 430px; height: auto; margin: 0 auto; position: relative; mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(90% 90% at 50% 50%, #000 62%, transparent 97%);
  mask-image: radial-gradient(90% 90% at 50% 50%, #000 62%, transparent 97%);
  filter: drop-shadow(0 18px 30px rgba(122, 97, 39, .14)); }
@media (prefers-reduced-motion: no-preference) {
  .hero__img img { animation: dove-float 7s ease-in-out infinite; }
  @keyframes dove-float { 50% { transform: translateY(-11px) rotate(.5deg); } }
  /* Einzugs-Choreografie beim Laden (nur oberhalb der Falte) */
  html.js .hero .badge, html.js .hero h1, html.js .hero .sub, html.js .hero .hero__cta, html.js .hero .hero__hand { opacity: 0; transform: translateY(18px); animation: hero-in .9s var(--ease-out) forwards; }
  html.js .hero h1 { animation-delay: .1s; }
  html.js .hero .sub { animation-delay: .2s; }
  html.js .hero .hero__cta { animation-delay: .3s; }
  html.js .hero .hero__hand { animation-delay: .42s; }
  html.js .hero__img { opacity: 0; animation: hero-in 1.1s var(--ease-out) .25s forwards; }
  @keyframes hero-in { to { opacity: 1; transform: none; } }
}

/* section generic */
section.pad { padding: 78px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head .eyebrow { font: 600 12px/1 var(--body); letter-spacing: .1em; text-transform: uppercase; color: var(--mut-2); margin-bottom: 12px; }
.section-head h2 { font-family: var(--serif); font-weight: 500; font-size: 36px; color: var(--ink); margin: 0; }
.flourish { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 16px auto 0; color: var(--gold); }
.flourish::before, .flourish::after { content: ""; height: 1px; width: 64px; background: linear-gradient(90deg, transparent, var(--gold-soft)); }
.flourish::after { background: linear-gradient(270deg, transparent, var(--gold-soft)); }
.flourish svg { flex: none; }

/* icons — echte Goldlinien-Icons */
.ico { width: 44px; height: 44px; border-radius: 12px; border: 1.4px solid #d9c9a4; background: linear-gradient(160deg, #fdf7ea, #f8eed9); display: flex; align-items: center; justify-content: center; color: var(--gold-dark); flex: none; transition: background .3s ease, border-color .3s ease, transform .3s var(--ease-out); }
.ico svg { width: 22px; height: 22px; }

/* features */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fcard { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px 22px; transition: transform .3s var(--ease-out), box-shadow .3s ease, border-color .3s ease; }
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--gold-soft); }
.fcard:hover .ico { background: var(--gold); border-color: var(--gold); color: #fff; transform: rotate(-4deg) scale(1.04); }
.fcard .ico { margin-bottom: 15px; }
.fcard h3 { font: 700 15px/1.3 var(--body); color: #3a352e; margin: 0 0 6px; }
.fcard p { font: 400 13.5px/1.55 var(--body); color: var(--mut-2); margin: 0; }

/* gift highlight */
.goldframe { border: 1.5px solid #cdb37c; background: linear-gradient(#fdf7ea, #faf1df); border-radius: 16px; padding: 34px 36px; display: flex; gap: 32px; align-items: center; position: relative; overflow: hidden; box-shadow: var(--shadow-soft); }
.goldframe::before { content: ""; position: absolute; right: -40px; bottom: -60px; width: 240px; height: 240px; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cpath d='M120 210c-40-32-80-58-80-98a44 44 0 0 1 80-26 44 44 0 0 1 80 26c0 40-40 66-80 98z' fill='none' stroke='%23b8975a' stroke-width='1.2' opacity='.16'/%3E%3C/svg%3E"); }
.goldframe .col { flex: 1; position: relative; }
.goldframe h3 { font-family: var(--serif); font-weight: 500; font-size: 27px; color: var(--ink); margin: 10px 0 8px; }
.goldframe p { font: 400 14.5px/1.6 var(--body); color: var(--mut); margin: 0 0 12px; }
.goldframe .mini { background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 14px 16px; display: flex; gap: 12px; align-items: center; margin-bottom: 10px; transition: transform .25s var(--ease-out), box-shadow .25s ease; }
.goldframe .mini:hover { transform: translateX(4px); box-shadow: var(--shadow-soft); }
.goldframe .mini:last-child { margin-bottom: 0; }
.goldframe .mini .ico { margin: 0; width: 38px; height: 38px; }
.goldframe .mini .ico svg { width: 19px; height: 19px; }
.goldframe .mini strong { font: 600 13.5px/1.35 var(--body); color: #3a352e; }
.goldframe .mini > div { min-width: 0; }
.goldframe .mini span.sub { display: block; font: 400 12px/1.4 var(--body); color: var(--mut-2); }

/* how it works strip on home */
.steps-strip { background: var(--card-bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps-strip .section-head h2 { font-size: 27px; }
.strip-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stepcard { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; transition: transform .3s var(--ease-out), box-shadow .3s ease, border-color .3s ease; }
.stepcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--gold-soft); }
.stepn { width: 36px; height: 36px; border-radius: 50%; border: 1.6px solid var(--gold); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; font: 600 21px/1 var(--hand); flex: none; background: #fbf3e4; margin-bottom: 12px; }
.stepcard h3 { font: 700 15px/1.3 var(--body); color: #3a352e; margin: 0 0 6px; }
.stepcard p { font: 400 13.5px/1.55 var(--body); color: var(--mut-2); margin: 0; }

/* pricing card */
.pcard-solo { max-width: 470px; margin: 0 auto; background: #fff; border: 1.5px solid var(--gold-soft); border-radius: 16px; padding: 30px 32px; text-align: center; box-shadow: var(--shadow-soft); transition: transform .3s var(--ease-out), box-shadow .3s ease; }
.pcard-solo:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.pcard-solo .eyebrow { font: 600 12px/1 var(--body); letter-spacing: .1em; text-transform: uppercase; color: var(--mut-2); }
.pcard-solo .price { font-family: var(--serif); font-weight: 500; font-size: 38px; color: var(--ink); margin: 10px 0 4px; }
.pcard-solo .price span { font-size: 16px; color: var(--mut-2); }
.pcard-solo .note { font: 400 13.5px/1.5 var(--body); color: var(--mut); margin: 0 0 14px; }
.pcard-solo .btn { width: 100%; margin-top: 8px; }

/* pricing page full */
.goldframe.price-full { flex-direction: column; text-align: center; max-width: 470px; margin: 0 auto; padding: 34px 36px; }
.price-full .eyebrow { font: 600 12px/1 var(--body); letter-spacing: .1em; text-transform: uppercase; color: var(--mut-2); }
.price-full .big { font-family: var(--serif); font-weight: 500; font-size: 56px; line-height: 1; color: var(--ink); margin: 10px 0 6px; }
.price-full .note { font: 400 13.5px/1.4 var(--body); color: var(--mut-2); margin-bottom: 18px; }
.price-full .feats { display: flex; flex-direction: column; gap: 11px; width: 100%; text-align: left; margin-bottom: 18px; }
.price-full .feats .row { display: flex; gap: 10px; align-items: flex-start; }
.price-full .chk { width: 17px; height: 17px; flex: none; margin-top: 1px; color: var(--gold); }
.price-full .feats span.txt { font: 400 14px/1.45 var(--body); color: #3a352e; }
.price-full .btn { width: 100%; }
.price-full .fine { font: 400 12.5px/1.3 var(--body); color: var(--mut-2); margin-top: 12px; }
.hormozi { font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.45; color: var(--ink); text-align: center; max-width: 520px; margin: 30px auto 0; }
.hormozi b { color: var(--gold-dark); font-weight: 600; white-space: nowrap; }
.trustrow { display: flex; gap: 14px; align-items: center; justify-content: center; margin-top: 26px; flex-wrap: wrap; }

/* FAQ */
.faq-band { background: var(--card-bg); border-top: 1px solid var(--line); }
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 640px; margin: 0 auto; }
.faqitem { background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 16px 20px; cursor: pointer; transition: border-color .25s ease, box-shadow .25s ease; }
.faqitem:hover { border-color: var(--gold-soft); box-shadow: var(--shadow-soft); }
.faqitem .q { display: flex; justify-content: space-between; align-items: center; }
.faqitem .q h3 { font-family: var(--serif); font-weight: 500; font-size: 17.5px; color: var(--ink); margin: 0; }
.faqitem .q .plus { font: 600 24px/1 var(--hand); color: var(--gold-dark); transition: transform .3s var(--ease-out); flex: none; margin-left: 12px; }
.faqitem.open .q .plus { transform: rotate(45deg); }
.faqitem .a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease-out); }
.faqitem.open .a-wrap { grid-template-rows: 1fr; }
.faqitem .a { overflow: hidden; font: 400 14px/1.6 var(--body); color: var(--mut); }
.faqitem.open .a { margin-top: 10px; }

/* ctaband */
.ctaband { background: linear-gradient(180deg, var(--paper), var(--blush)); padding: 64px 0; text-align: center; position: relative; overflow: hidden; }
.ctaband__inner { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; position: relative; }
.ctaband img { width: 120px; height: auto; mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(85% 85% at 50% 50%, #000 58%, transparent 96%);
  mask-image: radial-gradient(85% 85% at 50% 50%, #000 58%, transparent 96%); }
.ctaband h2 { font-family: var(--serif); font-weight: 500; font-size: 30px; color: var(--ink); margin: 0 0 16px; }

/* page hero (Unterseiten) */
.page-hero { background: linear-gradient(180deg, var(--blush), #f5e9e3); padding: 60px 0 50px; text-align: center; position: relative; overflow: hidden; }
.page-hero h1 { font-family: var(--serif); font-weight: 500; font-size: 42px; color: var(--ink); margin: 14px 0 12px; }
.page-hero p { font: 400 15px/1.55 var(--body); color: var(--mut); max-width: 460px; margin: 0 auto; }

/* zigzag steps */
.zigzag { padding: 64px 0; }
.zstep { display: flex; align-items: center; gap: 48px; margin-bottom: 64px; }
.zstep:last-child { margin-bottom: 0; }
.zstep.rev { flex-direction: row-reverse; }
.zstep__media { flex: 1; }
.zstep__media img { width: 100%; max-width: 280px; margin: 0 auto; mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(88% 88% at 50% 50%, #000 60%, transparent 97%);
  mask-image: radial-gradient(88% 88% at 50% 50%, #000 60%, transparent 97%); }
.zstep__card { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-soft); padding: 26px; display: flex; align-items: center; justify-content: center; min-height: 210px; color: var(--gold-dark); }
.zstep__card svg { width: 100%; max-width: 280px; height: auto; }
.zstep__txt { flex: 1.15; }
.zstep__num-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.zstep__num-row .stepn { margin-bottom: 0; }
.zstep__num-row .label { font: 600 11px/1 var(--body); letter-spacing: .07em; text-transform: uppercase; color: var(--mut-2); }
.zstep__txt h3 { font-family: var(--serif); font-weight: 500; font-size: 29px; color: var(--ink); margin: 0 0 10px; }
.zstep__txt p { font: 400 15.5px/1.6 var(--body); color: var(--mut); margin: 0 0 12px; }
.zstep__checks { display: flex; flex-direction: column; gap: 9px; }
.zstep__checks .row { display: flex; gap: 9px; align-items: center; }
.zstep__checks .chk { width: 16px; height: 16px; flex: none; color: var(--gold); }
.zstep__checks span.txt { font: 400 13.5px/1.45 var(--body); color: var(--mut); }

/* auth */
.authwrap { background: var(--card-bg); padding: 64px 24px; display: flex; align-items: center; justify-content: center; }
.authcard { width: 430px; max-width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 34px 32px; box-shadow: var(--shadow-soft); }
.authcard .kicker { text-align: center; }
.authcard .kicker .mono { font: 600 12px/1 var(--body); letter-spacing: .07em; text-transform: uppercase; color: var(--mut-2); }
.authcard h2 { font-family: var(--serif); font-weight: 500; font-size: 29px; color: var(--ink); margin: 6px 0 20px; text-align: center; }
.tabs { display: flex; gap: 4px; background: #f4ece2; border: 1px solid #e6dccd; border-radius: 9px; padding: 4px; margin-bottom: 22px; }
.tabs button { flex: 1; text-align: center; font: 600 13px/1 var(--body); color: var(--mut); padding: 14px 0; border-radius: 6px; border: none; background: none; cursor: pointer; transition: background .2s ease, color .2s ease; }
.tabs button.active { color: #fff; background: var(--gold); }
.field-label { font: 600 11.5px/1 var(--body); color: var(--mut); margin-bottom: 6px; }
.field-label .opt { color: #b0a693; font-weight: 400; }
.field { width: 100%; font: 400 15px/1.3 var(--body); color: var(--ink); background: #fff; border: 1px solid var(--line-2); border-radius: 8px; padding: 12px 13px; margin-bottom: 14px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.field:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184, 151, 90, .16); }
.reg-only { display: block; }
.mode-login .reg-only { display: none; }
.login-only { display: none; }
.mode-login .login-only { display: block; }
.authcard .btn { width: 100%; }
.authnote { margin: 14px 0 0; text-align: center; font: 400 12.5px/1.5 var(--body); color: var(--mut-2); }
.autherr { display: none; margin: 0 0 14px; padding: 11px 13px; border-radius: 8px; border: 1px solid #e4c4bc; background: #fbf0ed; color: #8c4a3c; font: 500 13px/1.45 var(--body); }
.autherr.show { display: block; }
.authback { text-align: center; margin-top: 16px; }
.authback a { font: 600 12.5px/1 var(--body); color: var(--gold-dark); display: inline-block; padding: 13px 12px; margin: -6px 0; }
.auth-success { text-align: center; padding: 8px 0 4px; }
.auth-success .ico { margin: 0 auto 16px; width: 56px; height: 56px; border-radius: 50%; }
.auth-success .ico svg { width: 26px; height: 26px; }
.auth-success h3 { font-family: var(--serif); font-weight: 500; font-size: 25px; margin: 0 0 10px; color: var(--ink); }
.auth-success p { font: 400 14px/1.6 var(--body); color: var(--mut); margin: 0 0 6px; }
.auth-success .hand { font: 500 20px/1.3 var(--hand); color: var(--gold-dark); margin-top: 14px; }

/* footer */
.site-footer { background: #f4efe7; padding: 30px 0; border-top: 1px solid var(--line); }
.site-footer .wrap { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.site-footer .brand-col .logo { font-size: 16px; }
.site-footer .brand-col p { font: 600 10.5px/1.6 var(--body); letter-spacing: .04em; text-transform: uppercase; color: #9a9084; margin: 6px 0 0; }
.footer-cols { display: flex; gap: 44px; }
.footer-col { display: flex; flex-direction: column; }
.footer-col a { font: 500 13px/1 var(--body); color: var(--mut); transition: color .2s ease; padding: 9px 0; }
.footer-col a:hover { color: var(--gold-dark); }

/* placeholder pages */
.placeholder { background: var(--blush); color: var(--ink); padding: 110px 0; text-align: center; }
.placeholder h1 { font-family: var(--serif); font-weight: 500; font-size: 38px; margin: 0 0 16px; }
.placeholder p { font: 400 15px/1.6 var(--body); color: var(--mut); max-width: 520px; margin: 0 auto 26px; }

@media (max-width: 900px) {
  .wrap { padding: 0 22px; }
  .hero { padding: 40px 0 44px; }
  .hero__grid { flex-direction: column-reverse; gap: 10px; text-align: center; }
  .hero__img img { max-width: 300px; }
  .hero__txt p.sub { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__txt h1 { font-size: 31px; }
  .grid-3, .strip-3 { grid-template-columns: 1fr; }
  .goldframe { flex-direction: column; align-items: stretch; text-align: center; padding: 24px 22px; }
  .goldframe .col { width: 100%; }
  .goldframe .mini { text-align: left; width: 100%; }
  .zstep, .zstep.rev { flex-direction: column; gap: 20px; }
  .zstep__num-row { justify-content: flex-start; }
  .page-hero h1 { font-size: 31px; }
  .section-head h2 { font-size: 29px; }
  .nav__links { display: none; }
  .nav-toggle { display: flex; }
  .ctaband__inner { flex-direction: column; }
  .site-footer .wrap { flex-direction: column; }
  .footer-cols { gap: 28px; }
  .hormozi { font-size: 19px; padding: 0 8px; }
}
@media (max-width: 560px) {
  section.pad, .zigzag, .steps-strip { padding: 44px 0; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
