/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Brand palette — exact values, never introduce new hues */
  --burgundy: #4D0F14;
  --rose:     #C7A49E;
  --beige:    #D9C3AC;
  --cream:    #EEE4DA;
  --white:    #FFFFFF;
  --black:    #000000;

  /* Derived via opacity/mix only — no new colors */
  --ink:       rgba(0,0,0,.87);
  --ink-soft:  rgba(0,0,0,.64);
  --ink-mute:  rgba(0,0,0,.46);
  --line:      rgba(0,0,0,.12);
  --line-soft: rgba(0,0,0,.07);

  --bg:        var(--cream);
  --surface:   var(--white);
  --burgundy-tint:   rgba(77,15,20,.05);
  --burgundy-tint-2: rgba(77,15,20,.10);
  --rose-tint:       rgba(199,164,158,.32);
  --beige-tint:      rgba(217,195,172,.45);

  --on-dark:       var(--cream);
  --on-dark-soft:  rgba(238,228,218,.76);
  --on-dark-mute:  rgba(238,228,218,.52);
  --on-dark-line:  rgba(238,228,218,.18);

  --burgundy-hover: color-mix(in srgb, var(--burgundy) 86%, black 14%);
  --burgundy-deep:  color-mix(in srgb, var(--burgundy) 92%, black 8%);

  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --ease-out:  cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.25, .46, .45, .94);
  --ease-in:   cubic-bezier(.7, 0, .84, 0);

  --container: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 30px;

  --nav-h: 84px;

  /* Fluid type scale */
  --fs-h1: clamp(2.3rem, 1.55rem + 3.3vw, 4.3rem);
  --fs-h2: clamp(1.85rem, 1.3rem + 2.3vw, 2.95rem);
  --fs-h3: clamp(1.3rem, 1.1rem + 0.85vw, 1.75rem);
  --fs-sub: clamp(1.05rem, 0.98rem + 0.32vw, 1.35rem);
  --fs-body: clamp(1rem, 0.97rem + 0.12vw, 1.125rem);
  --fs-small: 0.9rem;
  --fs-eyebrow: 0.8rem;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-weight: 500;
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

/* Subtle paper grain across the whole page — adds depth without competing with content */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 2000;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 190px 190px;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-weight: 700;
  text-wrap: balance;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--burgundy);
}
::selection { background: var(--burgundy); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--burgundy); color: var(--cream);
  border-radius: var(--radius-sm); font-weight: 600; font-size: .9rem;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.eyebrow.on-dark { color: var(--rose); }

.section {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7.5rem);
}
.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--fs-h2); margin-top: .85rem; }
.section-head .lede {
  margin-top: 1.1rem;
  font-size: var(--fs-sub);
  font-weight: 500;
  color: var(--ink-soft);
  max-width: 58ch;
}
.section-head.center .lede { margin-inline: auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap;
}

/* Reveal-on-scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s var(--ease-soft), transform .85s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal][data-reveal-delay="4"] { transition-delay: .32s; }

/* Signature decorative star mark */
.star-mark {
  display: block;
  fill: currentColor;
}
/* Blurred star-shaped glow — ambient background texture, never a sharp icon */
.star-glow {
  position: absolute;
  width: var(--size, 420px);
  height: var(--size, 420px);
  color: var(--burgundy);
  opacity: var(--opacity, .06);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}
.star-glow.on-dark { color: var(--rose); opacity: var(--opacity, .1); }

/* Keep decorative texture behind real content in every section */
.hero > .container,
.section > .container { position: relative; z-index: 1; }

/* Starfield texture for burgundy sections — tiny scattered dots, brand colors only */
.starfield { position: relative; isolation: isolate; }
.starfield > .container { position: relative; z-index: 1; }
.questions-block.starfield > * { position: relative; z-index: 1; }
.starfield::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .5;
  background-image:
    radial-gradient(1.6px 1.6px at 8% 22%, rgba(238,228,218,.5), transparent 60%),
    radial-gradient(1.4px 1.4px at 22% 68%, rgba(199,164,158,.55), transparent 60%),
    radial-gradient(1.8px 1.8px at 38% 14%, rgba(238,228,218,.4), transparent 60%),
    radial-gradient(1.4px 1.4px at 54% 78%, rgba(199,164,158,.5), transparent 60%),
    radial-gradient(1.6px 1.6px at 68% 34%, rgba(238,228,218,.45), transparent 60%),
    radial-gradient(1.4px 1.4px at 81% 62%, rgba(199,164,158,.5), transparent 60%),
    radial-gradient(1.8px 1.8px at 92% 20%, rgba(238,228,218,.4), transparent 60%),
    radial-gradient(1.4px 1.4px at 14% 88%, rgba(199,164,158,.45), transparent 60%),
    radial-gradient(1.6px 1.6px at 63% 92%, rgba(238,228,218,.4), transparent 60%),
    radial-gradient(1.4px 1.4px at 88% 84%, rgba(199,164,158,.4), transparent 60%);
}

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 1.05em 1.9em;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .3s var(--ease-out), color .3s var(--ease-out);
}
.btn-primary {
  background: var(--burgundy);
  color: var(--cream);
  box-shadow: 0 10px 26px -10px rgba(77,15,20,.55);
}
.btn-primary:hover {
  background: var(--burgundy-hover);
  transform: translateY(-3px);
  box-shadow: 0 20px 38px -12px rgba(77,15,20,.6);
}
.btn-primary:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-ghost {
  background: transparent;
  color: var(--burgundy);
  border: 1.5px solid var(--burgundy);
}
.btn-ghost:hover {
  background: var(--burgundy);
  color: var(--cream);
  transform: translateY(-3px);
}

.btn-on-dark {
  background: var(--cream);
  color: var(--burgundy);
  box-shadow: 0 10px 26px -10px rgba(0,0,0,.35);
}
.btn-on-dark:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 20px 38px -12px rgba(0,0,0,.4);
}

.btn-ghost-on-dark {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--on-dark-line);
}
.btn-ghost-on-dark:hover {
  border-color: var(--cream);
  transform: translateY(-3px);
}

.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* =============================================================
   5. Header / Nav
   ============================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(238,228,218,.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: box-shadow .4s var(--ease-out), border-color .4s var(--ease-out), background-color .4s var(--ease-out);
}
.site-header.is-scrolled {
  border-color: var(--line-soft);
  box-shadow: 0 8px 30px -18px rgba(0,0,0,.35);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}
.brand-logo { display: flex; align-items: center; }
.brand-logo img { height: 70px; width: auto; }

.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: clamp(1.2rem, 2vw, 2.2rem); }
.nav-link {
  position: relative;
  font-size: .92rem; font-weight: 600;
  padding-block: .3rem;
  color: var(--ink-soft);
  transition: color .3s var(--ease-out);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1.5px; background: var(--burgundy);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-link:hover { color: var(--burgundy); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta { display: none; }

.hamburger {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--burgundy);
  position: relative;
  transition: transform .35s var(--ease-soft), opacity .3s var(--ease-out);
}
.hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 1.5px; background: var(--burgundy);
  transition: transform .35s var(--ease-soft), top .35s var(--ease-soft);
}
.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }
.hamburger[aria-expanded="true"] span { background: transparent; }
.hamburger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: var(--cream);
  padding: 2.2rem var(--gutter);
  display: flex; flex-direction: column; gap: 2rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
  overflow-y: auto;
}
.mobile-nav.is-open { clip-path: inset(0 0 0 0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-nav a { font-size: 1.5rem; font-weight: 700; color: var(--burgundy); }
.mobile-nav .btn { align-self: flex-start; }

@media (min-width: 960px) {
  .main-nav { display: block; }
  .header-cta { display: inline-flex; }
  .hamburger { display: none; }
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  padding-block: clamp(3rem, 6vw, 4rem) clamp(4rem, 8vw, 6rem);
  overflow: clip;
}
.hero .container {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy .eyebrow { margin-bottom: 1.4rem; }
.hero-title {
  font-size: var(--fs-h1);
  max-width: 15ch;
}
.hero-sub {
  margin-top: 1.5rem;
  font-size: var(--fs-sub);
  font-weight: 500;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-actions { margin-top: 2.2rem; }

.hero-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 420px);
}
.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 80px -30px rgba(77,15,20,.35), 0 14px 30px -14px rgba(0,0,0,.25);
}
.hero-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%;
  transition: transform 1.2s var(--ease-soft);
}
.hero:hover .hero-frame img { transform: scale(1.04); }
.hero-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(77,15,20,.16), transparent 45%);
  pointer-events: none;
}
.hero-frame-ring {
  position: absolute; inset: -18px;
  border: 1.5px solid var(--burgundy);
  opacity: .28;
  border-radius: calc(var(--radius-lg) + 18px);
  pointer-events: none;
  z-index: -1;
}
.hero-badge {
  position: absolute; left: -1.6rem; bottom: -1.6rem;
  background: var(--burgundy);
  color: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  display: flex; align-items: center; gap: .8rem;
  box-shadow: 0 20px 40px -16px rgba(77,15,20,.5);
  max-width: 250px;
}
.hero-badge .star-mark { width: 24px; height: 24px; flex-shrink: 0; color: var(--rose); }
.hero-badge span { font-size: .8rem; font-weight: 600; line-height: 1.4; color: var(--on-dark-soft); }

@media (min-width: 720px) {
  .hero-badge { left: -2.2rem; bottom: -2rem; }
}
@media (min-width: 960px) {
  .hero .container { grid-template-columns: 1.05fr .95fr; }
  .hero-visual { justify-self: end; width: 100%; max-width: 460px; }
}

/* =============================================================
   7. Sobre mí
   ============================================================= */
.about { background: var(--bg); }
.about .container {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
}
.about-visual { position: relative; justify-self: center; width: min(100%, 400px); }
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -24px rgba(0,0,0,.28);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-copy h2.headline {
  font-size: var(--fs-h2);
  max-width: 16ch;
}
.about-lead {
  margin-top: 1.3rem;
  font-size: var(--fs-sub);
  color: var(--ink-soft);
  font-weight: 500;
}
.about-blocks {
  margin-top: 2rem;
  display: grid;
  gap: 1.6rem;
}
.about-blocks p { font-size: var(--fs-body); color: var(--ink-soft); }

.pull-quote {
  position: relative;
  margin: 1rem 0 0.5rem;
  padding-left: 1.4rem;
  border-left: 3px solid var(--burgundy);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.3;
}

.philosophy-card {
  margin-top: 2.2rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line-soft);
}
.philosophy-card h3 { font-size: var(--fs-h3); }
.philosophy-card p { margin-top: .9rem; color: var(--ink-soft); }
.philosophy-card p + p { margin-top: .7rem; }

.about-signature {
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  text-align: right;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--burgundy);
}

@media (min-width: 960px) {
  .about .container { grid-template-columns: .85fr 1.15fr; align-items: start; }
  .about-visual { justify-self: start; position: sticky; top: calc(var(--nav-h) + 2.5rem); }
}

/* =============================================================
   8. Servicios
   ============================================================= */
.services { background: var(--surface); }
.service-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}
.service-card {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: clamp(1.7rem, 3vw, 2.3rem);
  border: 1px solid var(--line-soft);
  transition: transform .55s var(--ease-soft), box-shadow .55s var(--ease-soft), border-color .4s;
  --rx: 0deg; --ry: 0deg;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
}
.service-card:hover {
  border-color: rgba(77,15,20,.25);
  box-shadow: 0 30px 60px -28px rgba(77,15,20,.35);
}
.service-num {
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  color: var(--rose);
  background: var(--burgundy);
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  margin-bottom: 1.3rem;
}
.service-card h3 { font-size: var(--fs-h3); }
.service-meta {
  display: block; margin-top: .35rem;
  font-size: .84rem; font-weight: 600; color: var(--burgundy);
}
.service-card p.service-desc {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: .98rem;
}
.service-footer {
  margin-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
}
.service-format { font-size: .82rem; color: var(--ink-mute); font-weight: 600; }
.service-link {
  font-size: .86rem; font-weight: 700; color: var(--burgundy);
  display: inline-flex; align-items: center; gap: .4em;
  transition: gap .3s var(--ease-out);
}
.service-link:hover { gap: .65em; }

@media (min-width: 720px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================
   9. Beneficios
   ============================================================= */
.benefits { background: var(--rose-tint); }
.benefit-grid {
  display: grid;
  gap: 1.2rem 2rem;
  grid-template-columns: 1fr;
}
.benefit-item {
  display: flex; gap: 1rem;
  align-items: flex-start;
  padding-block: .9rem;
  border-bottom: 1px solid rgba(77,15,20,.14);
}
.benefit-item .star-mark {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: .2rem;
  color: var(--burgundy);
}
.benefit-item p { font-size: 1.02rem; color: var(--ink); font-weight: 500; }

.questions-block {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  background: var(--burgundy);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--on-dark);
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}
.questions-block h3 { color: var(--on-dark); font-size: var(--fs-h3); max-width: 22ch; }
.questions-block .lede { color: var(--on-dark-soft); margin-top: .8rem; max-width: 40ch; font-weight: 500; }
.questions-list { display: grid; gap: 1rem; }
.questions-list li {
  font-size: 1.15rem; font-weight: 600;
  padding-block: 1rem;
  border-bottom: 1px solid var(--on-dark-line);
}
.questions-list li:last-child { border-bottom: none; }

@media (min-width: 720px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .questions-block { grid-template-columns: .8fr 1.2fr; align-items: center; }
}

/* =============================================================
   11. Para quién / quote section
   ============================================================= */
.for-whom {
  background: var(--surface);
  text-align: center;
}
.for-whom .container { max-width: 900px; }
.for-whom .eyebrow { justify-content: center; }
.for-whom blockquote {
  margin-top: 1.4rem;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.4rem);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.28;
}
.for-whom p.support {
  margin: 1.6rem auto 0;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: var(--fs-sub);
}

/* =============================================================
   12. CTA final
   ============================================================= */
.cta-final {
  background: var(--burgundy);
  color: var(--on-dark);
  text-align: center;
  overflow: clip;
}
.cta-final .container { max-width: 820px; position: relative; z-index: 2; }
.cta-final .star-mark.big { width: 52px; height: 52px; color: var(--rose); margin-inline: auto; }
.cta-final h2 {
  color: var(--on-dark);
  margin-top: 1.6rem;
  font-size: var(--fs-h2);
}
.cta-final p.sub {
  margin-top: 1.1rem;
  color: var(--on-dark-soft);
  font-size: var(--fs-sub);
  font-weight: 500;
}
.cta-final .cta-actions { justify-content: center; margin-top: 2.3rem; }

/* =============================================================
   13. Contacto
   ============================================================= */
.contact { background: var(--bg); }
.contact .container {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
}
.contact-intro .lede { margin-top: 1.1rem; }
.contact-note {
  margin-top: 2rem;
  display: flex; gap: 1rem;
  padding: 1.3rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
}
.contact-note .star-mark { width: 24px; height: 24px; color: var(--burgundy); flex-shrink: 0; }
.contact-note p { font-size: .92rem; color: var(--ink-soft); }

.whatsapp-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border: 1px solid var(--line-soft);
  box-shadow: 0 30px 70px -34px rgba(0,0,0,.25);
}
.whatsapp-card-head {
  display: flex; align-items: flex-start; gap: 1rem;
}
.whatsapp-card-head .star-mark { width: 30px; height: 30px; color: var(--burgundy); flex-shrink: 0; margin-top: .2rem; }
.whatsapp-card-head h3 { font-size: var(--fs-h3); }
.whatsapp-card-head p { margin-top: .4rem; color: var(--ink-soft); }

.whatsapp-cta {
  display: flex; width: 100%; margin-top: 1.8rem;
}

.whatsapp-quick {
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
}
.whatsapp-quick-label {
  display: block; font-size: .82rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: .9rem;
}
.whatsapp-quick-links { display: flex; flex-wrap: wrap; gap: .7rem; }
.whatsapp-quick-links a {
  font-size: .86rem; font-weight: 600;
  padding: .6rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  transition: border-color .3s var(--ease-out), color .3s var(--ease-out), background-color .3s var(--ease-out);
}
.whatsapp-quick-links a:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
  background: var(--burgundy-tint);
}

@media (min-width: 960px) {
  .contact .container { grid-template-columns: .8fr 1.2fr; align-items: start; }
}

/* =============================================================
   14. Footer
   ============================================================= */
.site-footer {
  background: var(--burgundy);
  color: var(--on-dark-soft);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer-top {
  display: flex; flex-direction: column; gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--on-dark-line);
}
.footer-logo img { height: 92px; width: auto; }
.footer-tagline { margin-top: 1rem; max-width: 40ch; font-size: .95rem; color: var(--on-dark-soft); }
.footer-nav ul { display: flex; flex-wrap: wrap; gap: 1.4rem 1.8rem; }
.footer-nav a { font-size: .9rem; font-weight: 600; color: var(--on-dark-soft); transition: color .3s; }
.footer-nav a:hover { color: var(--cream); }
.footer-bottom {
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  font-size: .82rem; color: var(--on-dark-mute);
}

@media (min-width: 720px) {
  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

/* =============================================================
   15. Responsive breakpoints (global adjustments)
   ============================================================= */
@media (min-width: 540px) { }
@media (min-width: 720px) { }
@media (min-width: 960px) { }
@media (min-width: 1280px) { }

/* =============================================================
   16. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero:hover .hero-frame img { transform: none; }
}
