/* =====================================================================
   Vignoble Digital — design system
   Palette : bordeaux profond + crème + doré discret + noir doux.
   Mobile-first, animations sobres, sans framework.
   ===================================================================== */

:root {
  --burgundy:        #5B1F2E;
  --burgundy-dark:   #3D1420;
  --burgundy-light:  #7A2F3F;
  --gold:            #C9A961;
  --gold-dark:       #A88842;
  --gold-light:      #E0C788;
  --cream:           #F7F2E9;
  --cream-dark:      #EDE3D0;
  --offwhite:        #FDFBF5;
  --ink:             #1A1413;
  --ink-2:           #2D2421;
  --mute:            #6E5E58;
  --line:            #E6DECD;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(60,28,20,.06), 0 1px 6px rgba(60,28,20,.05);
  --shadow-md: 0 8px 24px rgba(60,28,20,.10), 0 2px 6px rgba(60,28,20,.06);
  --shadow-lg: 0 28px 56px rgba(60,28,20,.18), 0 8px 16px rgba(60,28,20,.08);

  --container: 1180px;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-2);
  background: var(--offwhite);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--burgundy); text-decoration: none; }
a:hover { color: var(--gold-dark); }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display); color: var(--ink);
  letter-spacing: -.005em; line-height: 1.2;
  margin: 0 0 .6em; font-weight: 600;
}
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.text-gold { color: var(--gold-dark); }
.text-burgundy { color: var(--burgundy); }

.skip-link {
  position: absolute; left: -9999px; top: -9999px;
  background: var(--burgundy); color: #fff; padding: .8em 1.2em;
  border-radius: var(--radius-sm); z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .9em 1.4em;
  border-radius: var(--radius-md);
  font-weight: 600; font-size: .95rem; letter-spacing: .005em;
  line-height: 1; border: 1px solid transparent;
  cursor: pointer; text-align: center;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--burgundy);
  color: #fff;
  box-shadow: 0 8px 22px rgba(91,31,46,.22);
}
.btn--primary:hover { background: var(--burgundy-dark); color: #fff; box-shadow: 0 12px 28px rgba(91,31,46,.28); transform: translateY(-1px); }
.btn--gold {
  background: var(--gold);
  color: var(--burgundy-dark);
  box-shadow: 0 8px 22px rgba(201,169,97,.22);
}
.btn--gold:hover { background: var(--gold-dark); color: var(--burgundy-dark); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream-dark); }
.btn--ghost-light {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.08); color: #fff; }
.btn--lg { padding: 1.05em 1.6em; font-size: 1rem; }
.btn--sm { padding: .65em 1em; font-size: .85rem; border-radius: var(--radius-sm); }
.btn--block { display: flex; width: 100%; }

/* ---------------- Header / nav ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(253,251,245,.94);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand:hover { color: var(--ink); }
.brand__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: 50%;
}
.brand--footer .brand__mark { background: rgba(255,255,255,.08); }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--burgundy); }
.brand__sub  { font-size: .74rem; color: var(--mute); letter-spacing: .03em; text-transform: uppercase; }
.brand--footer .brand__name { color: var(--gold); }
.brand--footer .brand__sub  { color: rgba(255,255,255,.6); }

.primary-nav { display: flex; align-items: center; gap: 1.2rem; }
.primary-nav__list {
  display: flex; gap: 1.4rem; list-style: none; margin: 0; padding: 0;
}
.primary-nav__list > li > a {
  font-size: .94rem; font-weight: 500; color: var(--ink-2);
  position: relative; padding: .25em 0;
}
.primary-nav__list > li > a:hover { color: var(--burgundy); }
.primary-nav__list > li > a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.primary-nav__list > li > a:hover::after { transform: scaleX(1); }
.primary-nav__cta { display: flex; align-items: center; gap: .8rem; }
.nav__phone { font-weight: 700; color: var(--burgundy); }

.nav-toggle {
  display: none; position: relative;
  background: transparent; border: 0;
  width: 48px; height: 48px; margin-right: -10px; padding: 0;
  cursor: pointer; border-radius: 10px;
  -webkit-tap-highlight-color: transparent;
  transition: background-color .15s ease;
}
.nav-toggle:hover { background: var(--cream); }
.nav-toggle:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.nav-toggle__bars { position: absolute; top: 50%; left: 50%; width: 24px; height: 18px; transform: translate(-50%,-50%); }
.nav-toggle__bars span {
  position: absolute; left: 0; right: 0; height: 2.5px;
  background: var(--burgundy); border-radius: 2px;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), opacity .15s ease, top .25s ease;
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle__bars span:nth-child(3) { top: calc(100% - 2.5px); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; transform: translateY(-50%) scaleX(.4); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0; z-index: 84;
  background: rgba(26,20,19,.5);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, visibility 0s linear .2s;
}
body.has-nav-open .nav-backdrop { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity .22s ease; }

/* Dropdowns (desktop) */
.primary-nav__list .has-dropdown { position: relative; }
.primary-nav__toggle {
  display: inline-flex; align-items: center; gap: .35rem;
  background: transparent; border: 0; padding: .25em 0;
  font: inherit; cursor: pointer; color: var(--ink-2);
  font-size: .94rem; font-weight: 500;
}
.primary-nav__toggle:hover { color: var(--burgundy); }
.primary-nav__caret { transition: transform .2s ease; }
.has-dropdown.is-open .primary-nav__caret { transform: rotate(180deg); }
.dropdown { list-style: none; margin: 0; padding: 0; display: none; }
@media (min-width: 881px) {
  .dropdown {
    position: absolute; top: calc(100% + 14px); left: -16px;
    min-width: 360px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: .55rem;
    opacity: 0; transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .15s ease, transform .18s ease;
    display: block;
  }
  .has-dropdown.is-open .dropdown,
  .has-dropdown:focus-within .dropdown { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .has-dropdown::after { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 18px; }
  .dropdown li { margin: 0; }
  .dropdown a { display: block; padding: .65rem .8rem; border-radius: var(--radius-sm); text-decoration: none; }
  .dropdown a:hover, .dropdown a:focus-visible { background: var(--cream); outline: none; }
  .dropdown__title { display: block; font-weight: 700; color: var(--ink); font-size: .98rem; line-height: 1.2; }
  .dropdown__blurb { display: block; color: var(--mute); font-size: .82rem; line-height: 1.45; margin-top: .15rem; }
  .dropdown--compact { min-width: 240px; }
  .dropdown--compact a { font-weight: 600; color: var(--ink); font-size: .95rem; }
}

/* Mobile nav */
@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-header__inner { height: 64px; gap: .6rem; }
  .brand__mark { width: 36px; height: 36px; }
  .brand__name { font-size: 1.08rem; }
  .brand__sub { font-size: .68rem; }

  .primary-nav {
    position: fixed; top: 64px; left: 0; right: 0;
    height: calc(100dvh - 64px); height: calc(100vh - 64px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    background: var(--offwhite);
    padding: 1.2rem 1.25rem calc(1.6rem + env(safe-area-inset-bottom, 0px));
    transform: translateY(-10px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .25s cubic-bezier(.2,.7,.3,1), opacity .22s ease, visibility 0s linear .25s;
    box-shadow: 0 18px 40px rgba(60,28,20,.18);
    overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
    z-index: 90;
  }
  .primary-nav.is-open {
    transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto;
    transition: transform .26s cubic-bezier(.2,.7,.3,1), opacity .22s ease;
  }
  .primary-nav__list { flex-direction: column; gap: 0; margin: 0 0 1rem; border-top: 1px solid var(--line); }
  .primary-nav__list > li { border-bottom: 1px solid var(--line); }
  .primary-nav__list > li > a {
    display: flex; align-items: center; min-height: 52px;
    padding: .8rem 0; font-size: 1.04rem; font-weight: 600; color: var(--ink);
  }
  .primary-nav__list > li > a::after { display: none; }
  .primary-nav__cta { flex-direction: column; align-items: stretch; gap: .7rem; }
  .primary-nav__cta .btn { width: 100%; padding: 1.05em 1.2em; font-size: 1rem; }

  /* Mobile dropdowns: accordion */
  .has-dropdown { border-bottom: 1px solid var(--line); }
  .primary-nav__toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; min-height: 52px; padding: .8rem 0;
    font-size: 1.04rem; font-weight: 600; color: var(--ink);
  }
  .has-dropdown.is-open > .primary-nav__toggle { color: var(--burgundy); }
  .has-dropdown.is-open .dropdown { display: block; }
  .dropdown {
    padding: .1rem 0 .8rem .9rem; margin-top: 0; border-top: 0;
    border-left: 2px solid var(--gold);
    background: var(--cream); border-radius: 0 0 8px 8px;
  }
  .dropdown li a {
    display: block; min-height: 44px; padding: .65rem 0;
    border-bottom: 1px dotted rgba(0,0,0,.08); font-size: 1rem;
    color: var(--ink-2); font-weight: 500;
  }
  .dropdown li:last-child a { border-bottom: 0; }
  .dropdown__title { font-weight: 600; }
  .dropdown__blurb { display: none; }
  body.has-nav-open { overflow: hidden; }
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative; padding: 4rem 0 3rem;
  background: var(--burgundy);
  color: var(--cream);
  overflow: hidden; isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 480px at 12% 18%, rgba(201,169,97,.22), transparent 62%),
    radial-gradient(900px 500px at 100% 0%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, var(--burgundy-dark) 0%, var(--burgundy) 60%, var(--burgundy-dark) 100%);
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 95%, rgba(201,169,97,.05) 95%),
    linear-gradient(90deg, transparent 95%, rgba(201,169,97,.05) 95%);
  background-size: 36px 36px; opacity: .4; pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center;
}
.hero__copy { color: var(--cream); max-width: 820px; }
.hero__eyebrow {
  display: inline-block; margin: 0 0 1rem;
  padding: .4em .9em; background: rgba(201,169,97,.16);
  border: 1px solid rgba(201,169,97,.4); color: var(--gold-light);
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  border-radius: 999px;
}
.hero__title {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  color: #fff; margin: 0 0 1rem; line-height: 1.12;
}
.hero__title .accent { color: var(--gold-light); }
.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,.86); max-width: 60ch;
}
.hero__cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.5rem 0 .8rem; }

@media (min-width: 960px) {
  .hero { padding: 5.5rem 0 4.5rem; }
}

/* ---------------- Sections ---------------- */
.section { padding: 4rem 0; }
@media (min-width: 900px) { .section { padding: 5.5rem 0; } }
.section--cream { background: var(--cream); }
.section--burgundy { background: var(--burgundy); color: var(--cream); }
.section--burgundy h1, .section--burgundy h2, .section--burgundy h3 { color: #fff; }
.section--burgundy p { color: rgba(255,255,255,.85); }

.section__header { max-width: 760px; margin: 0 0 2.6rem; }
.section__header--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__eyebrow {
  display: inline-block; margin: 0 0 .7rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-dark);
}
.section--burgundy .section__eyebrow { color: var(--gold-light); }
.section__title { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: .6rem; }
.section__lead { color: var(--mute); font-size: 1.06rem; max-width: 62ch; }
.section--burgundy .section__lead { color: rgba(255,255,255,.82); }
.section__header--center .section__lead { margin-left: auto; margin-right: auto; }

/* ---------------- Grids of cards ---------------- */
.cards { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 640px)  { .cards--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .cards--3 { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 640px)  { .cards--3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .cards--4 { grid-template-columns: 1fr 1fr 1fr 1fr; } }
@media (min-width: 720px)  { .cards--4 { grid-template-columns: 1fr 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 1.5rem 1.4rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--cream-dark); }
.card__num {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  color: var(--gold-dark); margin: 0 0 .3rem;
}
.card__title { font-size: 1.18rem; margin-bottom: .4rem; }
.card__body { color: var(--mute); font-size: .96rem; margin: 0; }
.card__cta { display: inline-block; margin-top: .9rem; color: var(--burgundy); font-weight: 600; font-size: .92rem; }
.card__cta:hover { color: var(--gold-dark); }

a.card { display: block; color: inherit; text-decoration: none; }
a.card:hover { color: inherit; }

/* Icon circle inside cards */
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  background: var(--cream);
  color: var(--burgundy);
  border-radius: 12px; margin-bottom: 1rem;
}

/* ---------------- Audit form ---------------- */
.audit-form {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.8rem 1.6rem 1.6rem;
  box-shadow: var(--shadow-md);
}
.audit-form__title { font-size: 1.7rem; margin-bottom: .25rem; color: var(--burgundy); }
.audit-form__sub { color: var(--mute); margin-bottom: 1.1rem; font-size: .96rem; }
.audit-form__row { display: grid; grid-template-columns: 1fr; gap: .8rem; margin-bottom: .8rem; }
@media (min-width: 560px) { .audit-form__row { grid-template-columns: 1fr 1fr; } }
.audit-form__field > span {
  display: block; font-size: .76rem; font-weight: 700; letter-spacing: .03em;
  text-transform: uppercase; color: var(--ink); margin-bottom: .35rem;
}
.audit-form__field input, .audit-form__field select, .audit-form__field textarea {
  width: 100%; padding: .85em .95em;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; background: var(--offwhite); color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.audit-form__field input:focus, .audit-form__field select:focus, .audit-form__field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,97,.22);
}
.audit-form__field textarea { resize: vertical; min-height: 100px; }
.audit-form__hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.audit-form__legal { font-size: .78rem; color: var(--mute); margin: .85rem 0 0; }

.form-banner { margin: -.4rem 0 1rem; padding: .9em 1em; border-radius: var(--radius-sm); font-weight: 500; font-size: .93rem; }
.form-banner--ok  { background: #e8f1ea; color: #1f5c34; border: 1px solid #b9d8c2; }
.form-banner--err { background: #fcecea; color: #8a2018; border: 1px solid #f3c5bf; }

/* ---------------- Pricing / offers ---------------- */
.offer-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 1.7rem 1.4rem; display: flex; flex-direction: column; gap: .8rem;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.offer-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.offer-card__name { color: var(--burgundy); font-size: 1.25rem; margin: 0; }
.offer-card__price { color: var(--gold-dark); font-weight: 700; font-size: 1rem; }
.offer-card__body { color: var(--mute); font-size: .96rem; margin: 0; }
.offer-card__cta { margin-top: auto; }

/* ---------------- Final CTA section ---------------- */
.final-cta {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(700px 360px at 0% 10%, rgba(201,169,97,.18), transparent 60%),
    radial-gradient(800px 420px at 100% 110%, rgba(201,169,97,.10), transparent 65%);
  pointer-events: none;
}
.final-cta__inner { position: relative; max-width: 800px; margin: 0 auto; text-align: center; }
.final-cta__title { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: .6rem; }
.final-cta__sub   { color: rgba(255,255,255,.85); font-size: 1.06rem; margin-bottom: 1.6rem; }
.final-cta__row   { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.final-cta__fine  { color: rgba(255,255,255,.55); font-size: .82rem; margin: 1.2rem 0 0; }

/* ---------------- Sub-page hero (services / zones / blog / contact) ---------------- */
.sub-hero { position: relative; padding: 3.5rem 0 2.5rem; background: var(--burgundy); color: var(--cream); overflow: hidden; isolation: isolate; }
.sub-hero__bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(800px 420px at 8% 18%, rgba(201,169,97,.20), transparent 62%), linear-gradient(180deg, var(--burgundy-dark), var(--burgundy)); }
.sub-hero__inner { position: relative; z-index: 1; max-width: 820px; }
.sub-hero__crumbs { font-size: .82rem; color: rgba(255,255,255,.65); margin: 0 0 1rem; }
.sub-hero__crumbs a { color: var(--gold-light); }
.sub-hero__crumbs a:hover { color: #fff; }
.sub-hero__crumbs span[aria-hidden] { margin: 0 .4rem; color: rgba(255,255,255,.35); }
.sub-hero__eyebrow {
  display: inline-block; padding: .35em .8em;
  background: rgba(201,169,97,.16); border: 1px solid rgba(201,169,97,.4);
  color: var(--gold-light); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; border-radius: 999px; margin: 0 0 1rem;
}
.sub-hero__title { color: #fff; font-size: clamp(2rem, 3.8vw, 2.8rem); margin: 0 0 .8rem; }
.sub-hero__dek { color: rgba(255,255,255,.86); font-size: 1.06rem; line-height: 1.55; max-width: 60ch; margin: 0 0 1.4rem; }
.sub-hero__price { color: var(--gold-light); font-weight: 700; margin: .6rem 0 1.2rem; }
.sub-hero__cta-row { display: flex; flex-wrap: wrap; gap: .7rem; }

/* ---------------- Article reading layout (blog) ---------------- */
.article { padding: 3.5rem 0 1rem; }
.article__wrap { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 960px) { .article__wrap { grid-template-columns: 240px 1fr; gap: 3rem; align-items: start; } }
.article__toc { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.1rem 1.2rem; }
@media (min-width: 960px) { .article__toc { position: sticky; top: 90px; } }
.article__toc-title { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; margin: 0 0 .6rem; }
.article__toc ol { list-style: none; padding: 0; margin: 0; }
.article__toc li { margin-bottom: .35rem; }
.article__toc a { display: block; color: var(--ink-2); font-size: .88rem; line-height: 1.4; padding: .25rem 0; }
.article__toc a:hover { color: var(--burgundy); }
.article__body { max-width: 720px; color: var(--ink-2); font-size: 1.06rem; line-height: 1.75; }
.article__body .lead { font-size: 1.18rem; color: var(--ink); margin: 0 0 1.6rem; }
.article__body h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); color: var(--burgundy); margin: 2.4rem 0 .8rem; scroll-margin-top: 100px; }
.article__body h3 { font-size: 1.2rem; color: var(--ink); margin: 1.6rem 0 .5rem; }
.article__body p { margin: 0 0 1.1rem; }
.article__body ul, .article__body ol { margin: 0 0 1.2rem 1.4rem; padding: 0; }
.article__body li { margin-bottom: .35rem; }
.article__body a { color: var(--burgundy); text-decoration: underline; text-underline-offset: 3px; }
.article__body a:hover { color: var(--gold-dark); }
.article__body strong { color: var(--ink); }

.cta-box {
  background: linear-gradient(160deg, var(--burgundy), var(--burgundy-dark));
  color: #fff; border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem; margin: 2rem 0 2.5rem;
  position: relative; overflow: hidden; box-shadow: var(--shadow-md);
}
.cta-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(500px 240px at 90% 20%, rgba(201,169,97,.22), transparent 60%); pointer-events: none; }
.cta-box > * { position: relative; z-index: 1; }
.cta-box__eyebrow { color: var(--gold-light); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin: 0 0 .35rem; }
.cta-box h3 { color: #fff; font-size: 1.4rem; margin: 0 0 .55rem; }
.cta-box p { color: rgba(255,255,255,.85); margin: 0 0 1.1rem; font-size: .96rem; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--burgundy-dark); color: rgba(255,255,255,.74); padding: 3.2rem 0 0; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 1.8rem; padding-bottom: 2rem; }
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.site-footer__h { font-size: .86rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: .8rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer__col li { margin-bottom: .45rem; font-size: .94rem; }
.site-footer__col a { color: rgba(255,255,255,.74); }
.site-footer__col a:hover { color: #fff; }
.site-footer__about { font-size: .94rem; color: rgba(255,255,255,.66); margin: 1rem 0 0; }
.site-footer__email { color: var(--gold-light); font-weight: 600; }
.site-footer__legal { background: rgba(0,0,0,.18); padding: 1rem 0; }
.site-footer__legal-inner { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between; align-items: center; }
.site-footer__evin { margin: 0; font-size: .82rem; color: rgba(255,255,255,.74); }
.site-footer__evin strong { color: #fff; }
.site-footer__meta { margin: 0; font-size: .8rem; color: rgba(255,255,255,.5); }
.site-footer__meta a { color: rgba(255,255,255,.65); }
.site-footer__meta a:hover { color: #fff; }
.footer__phone { color: var(--gold-light); font-weight: 700; }

/* ---------------- Reveal animation (sobre) ---------------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------------- Misc ---------------- */
.dl-clean { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: .9rem; }
.dl-clean dt { font-weight: 700; color: var(--ink); margin-bottom: .2rem; }
.dl-clean dd { margin: 0; color: var(--mute); }

.list-checks { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.list-checks li { position: relative; padding-left: 1.6rem; margin-bottom: .55rem; color: var(--ink-2); }
.list-checks li::before {
  content: ''; position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; background: var(--gold);
  border-radius: 50%;
}

.objections { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 720px) { .objections { grid-template-columns: 1fr 1fr; } }
.objection {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 1.2rem 1.3rem;
}
.objection__q { font-weight: 700; color: var(--burgundy); margin: 0 0 .35rem; }
.objection__a { margin: 0; color: var(--ink-2); font-size: .96rem; }

@media print {
  .site-header, .nav-toggle, .nav-backdrop, .site-footer { display: none; }
}
