:root {
  --ink: #24201e;
  --ink-soft: #5f5852;
  --night: #171514;
  --night-2: #24201e;
  --paper: #fffdf9;
  --warm: #f7f3ec;
  --warm-2: #eee6da;
  --gold: #d4a44d;
  --gold-dark: #9f6f22;
  --gold-pale: #f5e4bd;
  --line: rgba(36, 32, 30, 0.13);
  --white-line: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 12px 30px rgba(38, 31, 26, 0.08);
  --shadow-md: 0 18px 45px rgba(35, 27, 21, 0.12);
  --shadow-lg: 0 28px 70px rgba(35, 27, 21, 0.15);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 38px;
  --container: min(1180px, calc(100% - 40px));
  --serif: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid rgba(212, 164, 77, 0.55); outline-offset: 4px; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #111;
  background: #fff;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; }
.section--compact { padding: 76px 0; }
.section--warm { background: var(--warm); }
.section--dark { color: #fff; background: var(--night); }
.section-header { max-width: 760px; margin-bottom: 48px; }
.section-header--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: .77rem;
  font-weight: 760;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.section--dark .eyebrow, .hero .eyebrow { color: #e8c681; }
.display-title,
h1, h2, h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.75rem, 6.4vw, 5.85rem); }
h2 { margin-bottom: 18px; font-size: clamp(2.15rem, 4.3vw, 4.15rem); }
h3 { margin-bottom: 10px; font-size: clamp(1.35rem, 2vw, 1.75rem); }
p { margin-top: 0; }
.lead { color: var(--ink-soft); font-size: clamp(1.04rem, 1.6vw, 1.22rem); }
.section--dark .lead { color: rgba(255,255,255,.72); }
.muted { color: var(--ink-soft); }
.gold { color: var(--gold-dark); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 730;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--gold {
  color: #211b15;
  background: linear-gradient(135deg, #edc875 0%, #d9a441 100%);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow:
    0 8px 22px rgba(212, 164, 77, .25),
    inset 0 1px 0 rgba(255, 255, 255, .35);
}

.button--gold:hover {
  color: #17120e;
  background: linear-gradient(135deg, #f3d58d 0%, #dfad4e 100%);
  box-shadow:
    0 12px 28px rgba(212, 164, 77, .34),
    inset 0 1px 0 rgba(255, 255, 255, .4);
  transform: translateY(-2px);
}
.button--outline { border-color: var(--line); background: rgba(255,255,255,.66); }
.button--outline:hover { border-color: var(--gold); }
.button--dark { color: #fff; background: var(--night); }
.button--light-outline { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.03); }
.button--block { width: 100%; }
.button svg { width: 19px; height: 19px; flex: 0 0 auto; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-weight: 740;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }

.topbar {
  padding: 8px 0;
  color: rgba(255,255,255,.78);
  background: #0f0e0d;
  font-size: .82rem;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar a { color: #f0d18f; font-weight: 700; text-decoration: none; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid var(--white-line);
  color: #fff;
  background: rgba(23,21,20,.93);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.header-inner { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { display: block; width: 276px; height: auto; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 25px; }
.site-nav > a:not(.button) {
  position: relative;
  padding: 10px 0;
  color: rgba(255,255,255,.83);
  font-size: .91rem;
  font-weight: 640;
  text-decoration: none;
}

.site-nav > a.button {
  min-height: 44px;
  padding: 11px 24px;
  border-radius: 14px;
  white-space: nowrap;
  font-size: .9rem;
  font-weight: 700;
}
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.site-nav > a:not(.button):hover::after,
.site-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav > a[aria-current="page"] { color: #fff; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-6.5px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: clip;
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(212,164,77,.14), transparent 32%),
    linear-gradient(135deg, #171514 0%, #201c1a 58%, #151312 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -250px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(212,164,77,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(212,164,77,.025), 0 0 0 160px rgba(212,164,77,.018);
  pointer-events: none;
}
.hero__grid { position: relative; z-index: 1; display: grid; min-height: 700px; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 66px; padding: 74px 0 82px; }
.hero h1 { max-width: 820px; margin-bottom: 24px; }
.hero h1 em { color: #e8c681; font-style: normal; }
.hero__copy .lead { max-width: 650px; margin-bottom: 32px; color: rgba(255,255,255,.73); }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px; margin: 32px 0 0; padding: 0; list-style: none; }
.hero__trust li { padding: 8px 13px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: rgba(255,255,255,.75); font-size: .84rem; }
.hero__visual { position: relative; }
.hero__image-frame { position: relative; overflow: hidden; border-radius: 160px 18px 160px 18px; box-shadow: var(--shadow-lg); }
.hero__image-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.27); border-radius: inherit; pointer-events: none; }
.hero__image-frame img { width: 100%; min-height: 530px; object-fit: cover; object-position: 52% 50%; }
.hero__badge {
  position: absolute;
  right: -20px;
  bottom: 48px;
  width: 170px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: rgba(25,22,20,.88);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}
.hero__badge strong { display: block; color: #e8c681; font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.hero__badge span { color: rgba(255,255,255,.7); font-size: .78rem; }

.quick-strip { position: relative; z-index: 3; margin-top: -30px; }
.quick-strip__inner { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); border-radius: 22px; background: var(--paper); box-shadow: var(--shadow-sm); }
.quick-item { display: flex; align-items: center; gap: 14px; padding: 21px 25px; }
.quick-item + .quick-item { border-left: 1px solid var(--line); }
.quick-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: var(--gold-dark); background: var(--gold-pale); }
.quick-icon svg { width: 20px; height: 20px; }
.quick-item strong { display: block; font-size: .94rem; }
.quick-item span { display: block; color: var(--ink-soft); font-size: .8rem; }

.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-card {
  min-height: 255px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.6);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(212,164,77,.5); box-shadow: var(--shadow-sm); }
.service-icon { display: grid; width: 48px; height: 48px; margin-bottom: 25px; place-items: center; border-radius: 16px; color: var(--gold-dark); background: var(--gold-pale); }
.service-icon svg { width: 25px; height: 25px; }
.service-card p { margin-bottom: 0; color: var(--ink-soft); font-size: .94rem; }

.approach { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 74px; }
.approach__panel { position: relative; min-height: 490px; padding: 48px; overflow: hidden; border-radius: var(--radius-lg); color: #fff; background: var(--night); }
.approach__panel::before { content: ""; position: absolute; inset: auto -100px -180px auto; width: 380px; height: 380px; border: 1px solid rgba(212,164,77,.2); border-radius: 50%; }
.approach__panel .display-title { max-width: 460px; margin-bottom: 26px; font-size: clamp(2.1rem, 4vw, 3.6rem); }
.approach__panel p { max-width: 470px; color: rgba(255,255,255,.68); }
.approach__steps { display: grid; gap: 16px; }
.step { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 23px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.step__number { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 50%; color: #fff; background: var(--night); font-family: var(--serif); font-size: 1.25rem; }
.step h3 { margin-bottom: 5px; font-family: var(--sans); font-size: 1.02rem; font-weight: 760; letter-spacing: 0; }
.step p { margin-bottom: 0; color: var(--ink-soft); font-size: .9rem; }

.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.result-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: 0 8px 25px rgba(33,27,23,.045); }
.result-card__media { position: relative; display: grid; height: 300px; place-items: center; overflow: hidden; background: #eee9e2; }
.result-card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s ease; }
.result-card:hover .result-card__media img { transform: scale(1.015); }
.result-card__tag { position: absolute; top: 15px; left: 15px; padding: 7px 11px; border-radius: 999px; color: #fff; background: rgba(23,21,20,.82); font-size: .72rem; font-weight: 760; letter-spacing: .04em; backdrop-filter: blur(7px); }
.result-card__body { padding: 22px; }
.result-card__body h3 { margin-bottom: 7px; font-family: var(--sans); font-size: 1.03rem; font-weight: 760; letter-spacing: 0; }
.result-card__body p { min-height: 48px; margin-bottom: 15px; color: var(--ink-soft); font-size: .88rem; }
.result-open { padding: 0; border: 0; color: var(--gold-dark); background: transparent; font-size: .87rem; font-weight: 760; cursor: pointer; }
.results-more { margin-top: 42px; text-align: center; }
.results-disclaimer { max-width: 800px; margin: 28px auto 0; color: var(--ink-soft); font-size: .78rem; text-align: center; }
.extra-results { margin-top: 22px; padding-top: 32px; border-top: 1px solid var(--line); }
.extra-results__title { margin-bottom: 24px; text-align: center; }

.store-teaser { position: relative; overflow: hidden; }
.store-teaser::before { content: ""; position: absolute; inset: 0; opacity: .26; background-image: radial-gradient(rgba(212,164,77,.26) 1px, transparent 1px); background-size: 24px 24px; pointer-events: none; }
.store-teaser .container { position: relative; z-index: 1; }
.product-preview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.product-preview { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.product-preview__media { height: 250px; overflow: hidden; background: #fff; }
.product-preview__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s ease; }
.product-preview:hover img { transform: scale(1.025); }
.product-preview__body { padding: 22px; }
.product-preview__body h3 { font-family: var(--sans); font-size: 1.05rem; font-weight: 760; letter-spacing: 0; }
.price { color: var(--gold-dark); font-size: 1.16rem; font-weight: 800; }
.price small { color: var(--ink-soft); font-size: .74rem; font-weight: 600; }
.store-teaser__cta { display: flex; justify-content: center; margin-top: 34px; }

.training-band { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; overflow: hidden; border-radius: var(--radius-lg); background: var(--night); box-shadow: var(--shadow-lg); }
.training-band__image img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.training-band__copy { display: flex; flex-direction: column; justify-content: center; padding: 52px; color: #fff; }
.training-band__copy p { color: rgba(255,255,255,.7); }


.video-spotlight { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 34px; }
.video-spotlight__copy { max-width: 520px; }
.video-spotlight__list { margin: 0 0 28px; padding-left: 18px; color: var(--ink-soft); }
.video-spotlight__list li + li { margin-top: 8px; }
.video-embed { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #111; box-shadow: var(--shadow-md); }
.video-embed iframe { display: block; width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; }

.faq-list { max-width: 900px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 2px; font-weight: 740; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold-dark); font-size: 1.55rem; font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }
.faq-item__body { max-width: 790px; padding: 0 0 24px; color: var(--ink-soft); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; }
.contact-card { padding: 38px; border-radius: var(--radius-lg); color: #fff; background: var(--night); }
.contact-card h2 { font-size: clamp(2.3rem,4.4vw,3.7rem); }
.contact-card > p { color: rgba(255,255,255,.7); }
.contact-list { display: grid; gap: 16px; margin: 30px 0; }
.contact-item { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; }
.contact-item__icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: #1b1714; background: var(--gold); }
.contact-item__icon svg { width: 18px; height: 18px; }
.contact-item strong { display: block; font-size: .84rem; }
.contact-item a, .contact-item span { color: rgba(255,255,255,.7); font-size: .87rem; text-decoration: none; }
.map-card { min-height: 560px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--warm); }
.map-card iframe { width: 100%; height: 100%; min-height: 560px; border: 0; }

.site-footer { padding: 58px 0 25px; color: rgba(255,255,255,.7); background: #0f0e0d; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr; gap: 60px; padding-bottom: 40px; }
.footer-brand img { display: block; width: 310px; height: auto; margin-bottom: 22px; object-fit: contain; }
.footer-brand p { max-width: 440px; font-size: .88rem; }
.footer-col h3 { color: #fff; font-family: var(--sans); font-size: .88rem; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { display: block; width: fit-content; margin: 9px 0; color: rgba(255,255,255,.68); font-size: .88rem; text-decoration: none; }
.footer-col a:hover { color: #f0d18f; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .76rem; }
.footer-bottom a { color: inherit; }

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  max-width: calc(100vw - 44px);
  padding: 10px 20px 10px 11px;
  border-radius: 999px;
  color: #fff;
  background: #188c51;
  box-shadow: 0 14px 32px rgba(24, 127, 75, 0.30);
  font-size: .9rem;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  background: #159357;
  box-shadow: 0 18px 38px rgba(24, 127, 75, 0.36);
  transform: translateY(-3px);
}

.whatsapp-float__icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #188c51;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.whatsapp-float__icon svg {
  display: block;
  width: 18px;
  height: 18px;
  overflow: visible;
}

.lightbox { width: min(1000px, calc(100% - 28px)); max-height: calc(100vh - 28px); padding: 0; overflow: hidden; border: 0; border-radius: 24px; background: #fff; box-shadow: var(--shadow-lg); }
.lightbox::backdrop { background: rgba(10,9,8,.78); backdrop-filter: blur(4px); }
.lightbox__grid { display: grid; max-height: calc(100vh - 28px); grid-template-columns: 1.2fr .8fr; }
.lightbox__media { display: grid; min-height: 560px; place-items: center; overflow: auto; background: #ebe6df; }
.lightbox__media img { max-height: calc(100vh - 28px); object-fit: contain; }
.lightbox__copy { overflow: auto; padding: 45px 34px; }
.lightbox__close { position: absolute; z-index: 2; top: 14px; right: 14px; display: grid; width: 42px; height: 42px; place-items: center; border: 0; border-radius: 50%; color: #fff; background: rgba(23,21,20,.8); cursor: pointer; }
.lightbox__copy .eyebrow { margin-top: 20px; }

/* Store page */
.page-hero { position: relative; overflow: hidden; padding: 92px 0 80px; color: #fff; background: var(--night); }
.page-hero::after { content: ""; position: absolute; inset: -300px -100px auto auto; width: 630px; height: 630px; border: 1px solid rgba(212,164,77,.17); border-radius: 50%; box-shadow: 0 0 0 95px rgba(212,164,77,.025), 0 0 0 190px rgba(212,164,77,.015); }
.page-hero__inner { position: relative; z-index: 1; max-width: 850px; }
.page-hero h1 { margin-bottom: 22px; font-size: clamp(3rem, 7vw, 6rem); }
.page-hero .lead { max-width: 690px; color: rgba(255,255,255,.72); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; color: rgba(255,255,255,.55); font-size: .8rem; }
.breadcrumbs a { color: #e8c681; text-decoration: none; }
.shop-controls { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
.filters { display: flex; flex-wrap: wrap; gap: 9px; }
.filter-btn { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: .85rem; font-weight: 700; cursor: pointer; }
.filter-btn[aria-pressed="true"] { color: #fff; border-color: var(--night); background: var(--night); }
.shop-count { color: var(--ink-soft); font-size: .86rem; }
.shop-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.shop-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: 0 8px 25px rgba(33,27,23,.04); }
.shop-card[hidden] { display: none; }
.shop-card__media { position: relative; display: grid; height: 315px; place-items: center; overflow: hidden; background: #f8f7f5; }
.shop-card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s ease; }
.shop-card:hover .shop-card__media img { transform: scale(1.02); }
.shop-card__category { position: absolute; top: 15px; left: 15px; padding: 7px 11px; border-radius: 999px; color: #fff; background: rgba(23,21,20,.84); font-size: .7rem; font-weight: 760; }
.shop-card__body { display: flex; flex: 1; flex-direction: column; padding: 25px; }
.shop-card__body h2 { margin-bottom: 8px; font-family: var(--sans); font-size: 1.22rem; font-weight: 780; letter-spacing: 0; }
.shop-card__meta { margin-bottom: 15px; color: var(--gold-dark); font-size: .78rem; font-weight: 760; letter-spacing: .04em; text-transform: uppercase; }
.shop-card__desc { color: var(--ink-soft); font-size: .9rem; }
.shop-card__price { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.shop-card__price strong { display: block; color: var(--gold-dark); font-size: 1.35rem; }
.shop-card__price span { color: var(--ink-soft); font-size: .78rem; }
.shop-card .button { margin-top: 17px; }
.shop-note { margin-top: 40px; padding: 23px 26px; border: 1px solid rgba(212,164,77,.35); border-radius: 20px; background: #fff9eb; color: #62543f; font-size: .83rem; }
.purchase-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.purchase-step { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.purchase-step__num { display: grid; width: 46px; height: 46px; margin-bottom: 20px; place-items: center; border-radius: 50%; color: #fff; background: var(--night); font-family: var(--serif); font-size: 1.2rem; }
.purchase-step h3 { font-family: var(--sans); font-size: 1rem; font-weight: 760; letter-spacing: 0; }
.purchase-step p { margin-bottom: 0; color: var(--ink-soft); font-size: .88rem; }

/* Privacy page */
.prose { max-width: 860px; margin-inline: auto; }
.prose h2 { margin-top: 48px; font-size: 2rem; }
.prose h3 { margin-top: 30px; font-family: var(--sans); font-size: 1.05rem; font-weight: 760; letter-spacing: 0; }
.prose p, .prose li { color: var(--ink-soft); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  :root { --container: min(100% - 34px, 980px); }
  .brand img { width: 235px; }
  .site-nav { gap: 18px; }
  .site-nav > a { font-size: .85rem; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .hero__badge { right: 10px; }
  .services-grid, .results-grid, .shop-grid { grid-template-columns: repeat(2,1fr); }
  .approach { gap: 36px; }
  .product-preview-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 840px) {
  .topbar__inner span:last-child { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 80px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 22px 26px;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: rgba(23,21,20,.99);
    box-shadow: 0 22px 45px rgba(0,0,0,.3);
    transform: translateY(-150%);
    visibility: hidden;
    transition: transform .25s ease, visibility .25s ease;
  }
  .site-nav.is-open { transform: translateY(0); visibility: visible; }
  .site-nav > a { padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .95rem; }
  .site-nav > a.button {
    width: 100%;
    min-height: 48px;
    margin-top: 14px;
    padding: 13px 22px;
    border-bottom: 0;
    border-radius: 14px;
  }
  .hero__grid { min-height: auto; grid-template-columns: 1fr; padding: 66px 0 80px; }
  .hero__copy { max-width: 720px; }
  .hero__visual { max-width: 670px; }
  .hero__image-frame img { min-height: 460px; }
  .quick-strip { margin-top: -22px; }
  .quick-strip__inner { grid-template-columns: 1fr; }
  .quick-item + .quick-item { border-top: 1px solid var(--line); border-left: 0; }
  .approach, .training-band, .contact-grid, .video-spotlight { grid-template-columns: 1fr; }
  .approach__panel { min-height: 380px; }
  .product-preview-grid { grid-template-columns: 1fr 1fr; }
  .product-preview:last-child { grid-column: 1 / -1; }
  .training-band__image img { min-height: 360px; }
  .video-spotlight__copy { max-width: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .lightbox__grid { grid-template-columns: 1fr; overflow: auto; }
  .lightbox__media { min-height: 300px; }
  .lightbox__media img { max-height: 60vh; }
  .purchase-steps { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 28px); --radius-lg: 28px; }
  body { font-size: 15.5px; }
  .section { padding: 78px 0; }
  .section--compact { padding: 58px 0; }
  .topbar { text-align: center; }
  .topbar__inner { justify-content: center; }
  .header-inner { min-height: 70px; }
  .brand img { width: 205px; }
  .site-nav { inset: 70px 0 auto; }
  .hero__grid { padding: 54px 0 70px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4.25rem); }
  .hero__copy .lead { font-size: 1rem; }
  .hero__image-frame { border-radius: 90px 16px 90px 16px; }
  .hero__image-frame img { min-height: 380px; object-position: 57% 50%; }
  .hero__badge { right: 8px; bottom: 20px; width: 150px; padding: 15px; }
  .button-row .button { width: 100%; }
  .quick-item { padding: 17px 18px; }
  .services-grid, .results-grid, .shop-grid, .product-preview-grid { grid-template-columns: 1fr; }
  .product-preview:last-child { grid-column: auto; }
  .service-card { min-height: auto; }
  .approach__panel { min-height: 360px; padding: 32px; }
  .step { grid-template-columns: 46px 1fr; padding: 18px; }
  .step__number { width: 42px; height: 42px; }
  .result-card__media { height: 255px; }
  .training-band__copy { padding: 34px 26px; }
  .training-band__image img { min-height: 300px; }
  .contact-card { padding: 30px 24px; }
  .map-card, .map-card iframe { min-height: 410px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-brand img { width: 250px; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    gap: 9px;
    width: auto;
    height: auto;
    max-width: calc(100vw - 28px);
    padding: 9px 17px 9px 10px;
    border-radius: 999px;
    font-size: .86rem;
  }
  .whatsapp-float__icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
  .whatsapp-float__icon svg {
    width: 18px;
    height: 18px;
  }
  .lightbox__copy { padding: 32px 22px; }
  .page-hero { padding: 70px 0 64px; }
  .shop-controls { align-items: flex-start; flex-direction: column; }
  .shop-card__media { height: 290px; }
}