@font-face {
  font-family: 'Instrument Sans Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url('/fonts/instrument-sans-latin-wght-normal.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Playfair Display Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url('/fonts/playfair-display-latin-wght-normal.woff2') format('woff2-variations');
}

:root {
  --ink-950: oklch(0.145 0.02 260);
  --ink-800: oklch(0.24 0.02 260);
  --ink-600: oklch(0.145 0.02 260 / .7);
  --brand-950: oklch(0.145 0.02 260);
  --brand-900: oklch(0.42 0.09 55);
  --brand-800: oklch(0.48 0.09 55);
  --brand-700: oklch(0.55 0.09 55);
  --brand-100: oklch(0.92 0.025 65);
  --brand-50: oklch(0.965 0.012 75);
  --ivory: oklch(0.975 0.006 80);
  --sand: oklch(0.90 0.03 65);
  --gold: oklch(0.55 0.09 55);
  --gold-light: oklch(0.88 0.04 75);
  --white: #fff;
  --success: oklch(0.55 0.14 145);
  --success-bright: oklch(0.68 0.17 145);
  --success-strong: oklch(0.49 0.14 145);
  --line: oklch(0.145 0.02 260 / .10);
  --line-strong: oklch(0.145 0.02 260 / .20);
  --shadow-sm: 0 10px 30px oklch(0.145 0.02 260 / .07);
  --shadow-md: 0 24px 64px oklch(0.145 0.02 260 / .12);
  --shadow-focus: 0 0 0 4px oklch(0.55 0.09 55 / .22);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --font-display: 'Playfair Display Variable', Georgia, serif;
  --font-body: 'Instrument Sans Variable', -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink-950);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before { display: none; }
::selection { color: var(--brand-950); background: var(--gold-light); }
a { color: inherit; text-underline-offset: .22em; text-decoration-thickness: 1px; }
img { display: block; max-width: 100%; }
svg { flex: 0 0 auto; }
h1, h2, h3 {
  margin: 0 0 .6em;
  color: var(--ink-950);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.75rem, 5.2vw, 4.75rem); }
h2 { font-size: clamp(2.1rem, 3.8vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.55rem); }
p { margin: 0 0 1rem; }
ul, ol { padding-left: 1.25rem; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 4px; }

.container { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.narrow { max-width: 850px; }
.profile-portrait { width: 100%; height: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.section-offset { margin-top: 90px; }
.section { padding-block: clamp(76px, 8vw, 120px); }
.section-tight { padding-block: 64px; }
.surface { position: relative; background: rgba(255, 255, 255, .84); }
.surface::before { content: ''; position: absolute; inset: 0; z-index: -1; box-shadow: inset 0 1px var(--line), inset 0 -1px var(--line); }
.muted { color: var(--ink-600); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 760;
  line-height: 1.3;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px rgba(185, 138, 75, .12); }
.lead { max-width: 750px; color: var(--ink-600); font-size: clamp(1.08rem, 1.8vw, 1.32rem); line-height: 1.65; }
.icon { display: block; }
.skip-link { position: fixed; left: 20px; top: -100px; z-index: 999; padding: 12px 18px; color: var(--white); background: var(--brand-900); }
.skip-link:focus { top: 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(16, 61, 59, .1);
  background: oklch(0.975 0.006 80 / .92);
  backdrop-filter: blur(20px) saturate(1.25);
}
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 26px; }
.brand, .footer-brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand { margin-right: auto; }
.brand-logo { display: block; width: 44px; height: 44px; flex: 0 0 auto; }
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand-logo { width: 44px; height: 44px; padding: 3px; border-radius: var(--radius-sm); background: var(--ivory); }
.brand strong, .brand small, .footer-brand strong, .footer-brand small { display: block; line-height: 1.2; }
.brand strong, .footer-brand strong { font-family: var(--font-display); font-size: 1.34rem; font-weight: 400; letter-spacing: -.02em; }
.brand small, .footer-brand small { margin-top: 3px; color: var(--ink-600); font-size: .67rem; font-weight: 650; letter-spacing: .09em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 1.8vw, 26px); }
.desktop-nav a { position: relative; display: inline-flex; min-height: 48px; padding-block: 13px; align-items: center; font-size: .88rem; font-weight: 680; text-decoration: none; letter-spacing: .01em; }
.desktop-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 7px; height: 1px; background: var(--gold); transition: right .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.button {
  display: inline-flex;
  min-height: 52px;
  padding: 14px 23px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink-950);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink-950);
  box-shadow: 0 8px 22px oklch(0.145 0.02 260 / .12);
  font-size: .88rem;
  font-weight: 720;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-2px); background: var(--brand-900); box-shadow: 0 14px 34px oklch(0.145 0.02 260 / .18); }
.button-small { min-height: 48px; padding: 11px 20px; font-size: .83rem; }
.button-secondary { color: var(--ink-950); background: transparent; box-shadow: none; }
.button-secondary:hover { color: var(--white); background: var(--ink-950); }
.button-light { color: var(--brand-900); border-color: var(--white); background: var(--white); }
.button[data-lead-channel='whatsapp'] { color: var(--ink-950); border-color: var(--success-bright); background: var(--success-bright); }
.button[data-lead-channel='whatsapp']:hover { color: var(--white); border-color: var(--success-strong); background: var(--success-strong); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.mobile-menu { display: none; }

.hero { position: relative; overflow: hidden; padding: clamp(68px, 8vw, 126px) 0 clamp(96px, 10vw, 150px); }
.hero::before { content: ''; position: absolute; inset: 0 0 auto auto; width: 58vw; height: 100%; background: linear-gradient(135deg, transparent, oklch(0.92 0.025 65 / .72)); clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%); z-index: -1; }
.hero::after { display: none; }
.brand-orbit { pointer-events: none; }
.hero-brand-orbit { position: absolute; top: 16px; right: 24px; width: 120px; height: 120px; z-index: 0; color: var(--brand-700); opacity: .12; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(50px, 7vw, 110px); }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { max-width: 760px; margin-bottom: 0; }
.hero h1 span { display: block; color: var(--brand-700); font-style: normal; }
.hero-copy .lead { max-width: 650px; margin: 30px 0 34px; }
.trust-line { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; color: var(--ink-600); font-size: .76rem; font-weight: 650; }
.trust-line span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .55); }
.trust-line .icon { color: var(--gold); }
.portrait-wrap { position: relative; max-width: 490px; margin-inline: auto; }
.portrait-wrap::before { content: ''; position: absolute; inset: 7% -6% -5% 11%; border-radius: var(--radius-md); background: var(--brand-100); transform: rotate(2deg); }
.portrait-frame { position: relative; overflow: hidden; aspect-ratio: 4 / 5.15; border: 8px solid rgba(255, 255, 255, .88); border-radius: var(--radius-md); background: var(--brand-100); box-shadow: var(--shadow-md); }
.portrait-frame picture { display: block; width: 100%; height: 100%; }
.portrait-frame::after { content: ''; position: absolute; inset: auto 0 0; height: 25%; background: linear-gradient(transparent, rgba(6, 45, 44, .18)); pointer-events: none; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.portrait-note { position: absolute; left: -52px; bottom: 30px; display: flex; max-width: 290px; padding: 18px 20px; align-items: center; gap: 14px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-sm); color: rgba(255,255,255,.75); background: oklch(0.145 0.02 260 / .96); box-shadow: var(--shadow-md); backdrop-filter: blur(10px); font-size: .75rem; line-height: 1.5; }
.portrait-note strong { display: block; margin-bottom: 3px; color: var(--white); font-family: var(--font-display); font-size: 1rem; font-weight: 600; }
.portrait-note-icon { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--gold-light); background: rgba(255,255,255,.08); }
.portrait-accent { position: absolute; right: -44px; top: 54px; z-index: 2; display: grid; width: 88px; height: 88px; place-items: center; border: 1px solid rgba(185, 138, 75, .35); border-radius: 50%; background: rgba(248, 247, 242, .88); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); }
.portrait-accent span { color: var(--gold); font-size: .61rem; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; transform: rotate(8deg); }

.page-hero { position: relative; overflow: hidden; padding: clamp(80px, 9vw, 132px) 0; color: var(--white); background: linear-gradient(118deg, var(--ink-950), oklch(0.22 0.025 260) 68%, var(--brand-900)); }
.page-hero-brand-orbit { position: absolute; top: 26px; right: 32px; width: 150px; height: 150px; color: var(--gold-light); opacity: .15; }
.page-hero::before { content: ''; position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(90deg, #000, transparent 75%); }
.page-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 240px; align-items: end; gap: 70px; }
.page-hero h1 { max-width: 900px; color: var(--white); font-size: clamp(3.4rem, 7vw, 6.5rem); }
.page-hero .lead { max-width: 800px; color: rgba(255,255,255,.7); }
.page-hero-signature { display: flex; padding: 20px 0 6px; flex-direction: column; align-items: flex-end; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.48); text-align: right; }
.page-hero-signature span { color: var(--gold-light); font-family: var(--font-display); font-size: 2.4rem; font-style: italic; line-height: 1; }
.page-hero-signature small { max-width: 170px; margin-top: 8px; font-size: .64rem; letter-spacing: .11em; text-transform: uppercase; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.care-cards { margin-top: 58px; }
.card { position: relative; overflow: hidden; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.82); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.card::after { display: none; }
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.card:hover::after { transform: scale(1.3); }
.card-icon { position: relative; z-index: 1; display: grid; width: 50px; height: 50px; margin-bottom: 36px; place-items: center; border-radius: var(--radius-sm); color: var(--brand-700); background: var(--brand-100); }
.card-number { position: absolute; top: 26px; right: 27px; z-index: 1; color: var(--gold); font-family: var(--font-display); font-size: 1.1rem; font-style: italic; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--ink-600); }
.card a { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; color: var(--brand-700); font-size: .82rem; font-weight: 730; text-decoration: none; }
.card a .icon { transition: transform .2s ease; }
.card a:hover .icon { transform: translateX(4px); }
.split { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(50px, 8vw, 112px); align-items: start; }
.prose { max-width: 820px; overflow-wrap: break-word; }
.prose > p:first-of-type:not(.eyebrow) { color: var(--ink-800); font-size: 1.12rem; }
.prose h2 { margin-top: 1.55em; }
.prose h3 { margin-top: 1.9em; }
.prose li { margin-bottom: .65rem; padding-left: .4rem; }
.prose li::marker { color: var(--gold); font-weight: 700; }
.prose .notice { margin: 38px 0; padding: 25px 28px; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--ink-800); background: var(--brand-50); box-shadow: var(--shadow-sm); }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0; list-style: none; }
.check-grid li { position: relative; min-height: 58px; margin: 0; padding: 17px 18px 17px 48px; border: 1px solid transparent; border-radius: var(--radius-sm); background: var(--brand-50); transition: border-color .2s ease, background .2s ease; }
.check-grid li:hover { border-color: var(--line); background: var(--white); }
.check-grid li::before { content: '✓'; position: absolute; left: 18px; top: 16px; display: grid; width: 21px; height: 21px; place-items: center; border-radius: 50%; color: var(--brand-700); background: var(--brand-100); font-size: .72rem; font-weight: 800; }
.feature-band { position: relative; overflow: hidden; padding-block: clamp(82px, 8vw, 116px); color: rgba(255,255,255,.72); background: linear-gradient(125deg, var(--ink-950), oklch(0.22 0.025 260)); }
.feature-band::after { content: ''; position: absolute; width: 450px; height: 450px; right: -140px; bottom: -240px; border: 1px solid rgba(234,217,190,.16); border-radius: 50%; box-shadow: 0 0 0 60px rgba(234,217,190,.025), 0 0 0 120px rgba(234,217,190,.02); }
.feature-band h2 { color: var(--white); }
.feature-band-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 7vw, 90px); align-items: center; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mini-card { display: flex; min-height: 112px; padding: 22px; align-items: flex-start; gap: 15px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-sm); background: rgba(255,255,255,.055); backdrop-filter: blur(6px); transition: background .2s ease, transform .2s ease; }
.mini-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.09); }
.mini-card .icon { margin-top: 2px; color: var(--gold-light); }
.mini-card strong { display: block; margin-bottom: 3px; color: var(--white); font-size: .88rem; }
.testimonial { position: relative; max-width: 990px; padding: clamp(48px, 7vw, 86px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.58); box-shadow: var(--shadow-sm); }
.testimonial blockquote { position: relative; z-index: 1; margin: 0; font-family: var(--font-display); font-size: clamp(1.6rem, 3.2vw, 2.7rem); font-weight: 450; line-height: 1.35; letter-spacing: -.025em; }
.quote-mark { position: absolute; right: 7%; top: -20px; color: var(--brand-100); font-family: var(--font-display); font-size: 13rem; line-height: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin: 26px 0 0; color: var(--ink-600); font-size: .8rem; font-weight: 650; letter-spacing: .04em; text-transform: uppercase; }
.testimonial-author span { width: 34px; height: 1px; background: var(--gold); }
.contact-card { position: relative; display: flex; overflow: hidden; align-items: center; justify-content: space-between; gap: 48px; margin-block: clamp(72px, 9vw, 120px); padding: clamp(38px,5vw,68px); border-radius: var(--radius-lg); color: rgba(255,255,255,.7); background: linear-gradient(120deg, var(--ink-950), oklch(0.22 0.025 260)); box-shadow: var(--shadow-md); }
.contact-card::after { content: ''; position: absolute; right: -100px; top: -220px; width: 420px; height: 420px; border: 1px solid rgba(234,217,190,.2); border-radius: 50%; box-shadow: 0 0 0 50px rgba(234,217,190,.03), 0 0 0 100px rgba(234,217,190,.025); }
.contact-card-copy { position: relative; z-index: 1; padding-left: 72px; }
.contact-icon { position: absolute; left: 0; top: 3px; display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; color: var(--gold-light); background: rgba(255,255,255,.07); }
.contact-card h2 { max-width: 680px; color: var(--white); }
.contact-card .button-row { position: relative; z-index: 1; min-width: 240px; flex-direction: column; }
.contact-card .button { color: var(--brand-950); border-color: var(--white); background: var(--white); }
.contact-card .button-secondary { color: var(--white); background: transparent; }
.contact-card .button[data-lead-channel='whatsapp'] { color: var(--ink-950); border-color: var(--success-bright); background: var(--success-bright); }
.contact-card .button[data-lead-channel='whatsapp']:hover { color: var(--white); border-color: var(--success-strong); background: var(--success-strong); }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card { position: relative; display: flex; min-height: 330px; overflow: hidden; padding: 32px; flex-direction: column; border-radius: var(--radius-md); color: var(--white); background: linear-gradient(145deg, oklch(0.22 0.025 260), var(--ink-950)); text-decoration: none; transition: transform .3s ease, box-shadow .3s ease; }
.article-card::after { content: '↗'; position: absolute; right: 28px; bottom: 25px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; font-size: 1.1rem; transition: transform .25s ease; }
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.article-card:hover::after { transform: rotate(45deg); }
.article-card:nth-child(2) { background: linear-gradient(145deg, var(--brand-700), var(--brand-900)); }
.article-card:nth-child(3) { color: var(--ink-950); background: var(--brand-100); }
.article-card:nth-child(3)::after { border-color: var(--line-strong); }
.article-card:nth-child(3) .eyebrow { color: var(--brand-900); }
.article-card h2, .article-card h3 { color: inherit; }
.article-card .eyebrow { margin-bottom: auto; }
.article-card p { max-width: 86%; opacity: .76; }
.media-list { display: grid; gap: 18px; }
.media-item { display: grid; grid-template-columns: 150px 1fr auto; gap: 30px; align-items: center; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transition: transform .2s ease, box-shadow .2s ease; }
.media-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.media-item time, .media-type { color: var(--gold); font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.media-item h2 { margin: 5px 0 8px; font-size: 1.55rem; }
.media-item a { color: var(--brand-700); font-size: .82rem; font-weight: 730; white-space: nowrap; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 1px 0 rgba(255,255,255,.7) inset; }
.info-card h2 { font-size: clamp(1.75rem, 3vw, 2.6rem); }
.info-card h3 { margin-bottom: 14px; }

.site-footer { position: relative; overflow: hidden; padding-top: 88px; color: rgba(255,255,255,.66); background: var(--ink-950); }
.footer-brand-orbit { position: absolute; right: -30px; bottom: -30px; width: 260px; height: 260px; color: var(--gold-light); opacity: .055; }
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.5fr 1fr .72fr .72fr; gap: 54px; }
.footer-brand { margin-bottom: 22px; color: var(--white); }
.footer-brand small { color: rgba(255,255,255,.5); }
.site-footer h3 { color: var(--white); font-family: var(--font-body); font-size: .72rem; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.site-footer a { color: var(--white); }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-links a { font-size: .84rem; text-decoration-color: transparent; transition: color .2s ease, text-decoration-color .2s ease; }
.footer-links a:hover { color: var(--gold-light); text-decoration-color: currentColor; }
.footer-consent-button { min-height: 34px; padding: 0; border: 0; color: var(--white); background: transparent; font: inherit; font-size: .84rem; text-align: left; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: .22em; cursor: pointer; }
.footer-consent-button:hover { color: var(--gold-light); text-decoration-color: currentColor; }
.footer-action, .footer-disclaimer { display: inline-flex; align-items: center; gap: 8px; }
.footer-action { color: var(--gold-light) !important; font-size: .82rem; font-weight: 670; }
.footer-bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 20px; margin-top: 70px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }
.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 45; display: flex; min-height: 48px; padding: 12px 18px; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: var(--white); background: #167a50; box-shadow: 0 14px 34px rgba(0,0,0,.2); font-size: .82rem; font-weight: 720; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,.25); }
.mobile-lead-bar { display: none; }
.consent-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 90; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 20px; width: min(980px, calc(100% - 40px)); margin-inline: auto; padding: 22px; align-items: center; border: 1px solid var(--line-strong); border-radius: var(--radius-md); color: var(--ink-600); background: var(--ivory); box-shadow: 0 28px 80px rgba(19,22,30,.18); }
.consent-banner[hidden] { display: none; }
.consent-icon { display: grid; width: 48px; height: 48px; place-items: center; align-self: start; border-radius: 50%; color: var(--brand-900); background: var(--brand-100); }
.consent-kicker { display: block; margin-bottom: 4px; color: var(--brand-800); font-size: .68rem; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.consent-banner strong { display: block; margin-bottom: 5px; color: var(--ink-950); font-family: var(--font-display); font-size: 1.18rem; font-weight: 580; }
.consent-banner p { max-width: 660px; margin-bottom: 8px; font-size: .82rem; }
.consent-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; font-size: .72rem; }
.consent-meta span { display: inline-flex; min-height: 26px; padding: 3px 9px; align-items: center; border-radius: 999px; color: var(--success-strong); background: color-mix(in oklch, var(--success-bright) 16%, transparent); font-weight: 700; }
.consent-banner a { color: var(--brand-800); font-size: .75rem; font-weight: 650; }
.consent-actions { display: flex; gap: 10px; }
.consent-actions .button { min-height: 46px; padding: 10px 16px; white-space: nowrap; cursor: pointer; }
.consent-actions .button-secondary { color: var(--ink-950); border-color: var(--line-strong); }

@media (max-width: 1100px) {
  .desktop-nav, .desktop-cta { display: none; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary { display: flex; width: 46px; height: 46px; padding: 12px 10px; flex-direction: column; align-items: stretch; justify-content: space-around; border: 1px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { height: 1.5px; background: var(--brand-900); transform-origin: center; transition: transform .2s ease, opacity .2s ease; }
  .mobile-menu[open] summary span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-menu[open] summary span:nth-child(2) { opacity: 0; }
  .mobile-menu[open] summary span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu nav { position: absolute; right: 0; top: 56px; display: flex; width: min(350px, calc(100vw - 30px)); max-height: calc(100vh - 112px); max-height: calc(100dvh - 112px); padding: 16px; overflow-y: auto; overscroll-behavior: contain; scrollbar-gutter: stable; -webkit-overflow-scrolling: touch; touch-action: pan-y; flex-direction: column; gap: 4px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--ivory); box-shadow: var(--shadow-md); }
  .mobile-menu nav > a:not(.button) { display: flex; min-height: 48px; padding: 11px 10px; align-items: center; border-radius: 10px; text-decoration: none; font-weight: 650; }
  .mobile-menu nav > a:not(.button):active { background: var(--brand-50); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 88px; }
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); line-height: 1.62; }
  body::before { display: none; }
  main { overflow: clip; }
  a, button, summary { touch-action: manipulation; -webkit-tap-highlight-color: oklch(0.55 0.09 55 / .14); }
  .container { width: min(100% - max(32px, env(safe-area-inset-left) + env(safe-area-inset-right)), 1220px); }
  .section { padding-block: 68px; }
  .section-offset { margin-top: 56px; }
  .site-header { background: oklch(0.975 0.006 80 / .98); backdrop-filter: none; }
  .header-inner { min-height: 64px; gap: 14px; }
  .brand, .footer-brand { min-height: 44px; }
  .brand-logo { width: 36px; height: 36px; }
  .footer-brand-logo { width: 44px; height: 44px; }
  .brand strong { font-size: 1.08rem; }
  .brand-copy small { display: none; }
  .mobile-menu summary { width: 48px; height: 48px; }
  .hero { padding: 48px 0 72px; }
  .hero::before { width: 100%; height: 46%; clip-path: none; background: linear-gradient(to bottom, transparent, oklch(0.92 0.025 65 / .55)); }
  .hero-brand-orbit { top: 8px; right: 6px; width: 94px; height: 94px; opacity: .1; }
  .hero-grid, .split, .feature-band-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .hero-copy { text-align: left; }
  .hero-copy .eyebrow, .hero-copy .lead { justify-content: flex-start; margin-inline: 0; }
  .hero-copy .lead { margin-block: 22px 26px; }
  .hero-copy .button-row { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero-copy .button { width: 100%; min-height: 54px; }
  .trust-line { justify-content: flex-start; gap: 7px; margin-top: 22px; }
  .portrait-wrap { width: min(100% - 18px, 470px); }
  .portrait-note { left: -8px; }
  .portrait-accent { right: -18px; }
  .page-hero { padding-block: 64px; }
  .page-hero .lead { font-size: 1.02rem; line-height: 1.6; }
  .page-hero-signature { display: none; }
  .cards, .article-grid, .info-grid { grid-template-columns: 1fr; }
  .cards { gap: 16px; }
  .care-cards { margin-top: 38px; }
  .card { padding: 26px; }
  .card-icon { margin-bottom: 26px; }
  .card a { min-height: 44px; align-items: center; }
  .check-grid { grid-template-columns: 1fr; }
  .check-grid li { min-height: 56px; padding-block: 16px; }
  .prose { max-width: 68ch; font-size: 1.01rem; }
  .prose h2 { margin-top: 1.35em; }
  .prose li { margin-bottom: .8rem; }
  .prose .notice { margin-block: 30px; padding: 22px; }
  .article-card { min-height: 270px; }
  .feature-band { padding-block: 72px; }
  .mini-card { min-height: 96px; }
  .contact-card { align-items: stretch; flex-direction: column; }
  .contact-card .button-row { width: 100%; min-width: 0; }
  .contact-card .button { width: 100%; min-height: 52px; }
  .media-item { grid-template-columns: 1fr; gap: 8px; }
  .media-item a { display: inline-flex; min-height: 44px; align-items: center; white-space: normal; }
  .footer-links a, .footer-action { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; }
  .footer-consent-button { min-height: 44px; }
  .whatsapp-float { display: none; }
  .mobile-lead-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 70;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px minmax(116px, .8fr);
    gap: 8px;
    padding: 10px max(14px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
    align-items: center;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 -12px 34px oklch(0.145 0.02 260 / .10);
  }
  .mobile-lead-copy { min-width: 0; line-height: 1.15; }
  .mobile-lead-copy small, .mobile-lead-copy strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .mobile-lead-copy small { margin-bottom: 4px; color: var(--ink-600); font-size: .6rem; letter-spacing: .01em; }
  .mobile-lead-copy strong { color: var(--ink-950); font-size: .79rem; font-weight: 760; }
  .mobile-lead-action { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 7px; border-radius: 999px; font-size: .76rem; font-weight: 700; text-decoration: none; }
  .mobile-lead-phone { color: var(--brand-900); border: 1px solid var(--line-strong); background: var(--white); }
  .mobile-lead-whatsapp { color: var(--white); background: var(--success); box-shadow: 0 8px 20px rgba(22, 115, 76, .2); }
  .site-footer { padding-bottom: 20px; }
  .consent-banner { bottom: calc(78px + env(safe-area-inset-bottom)); grid-template-columns: auto minmax(0, 1fr); gap: 14px; padding: 18px; }
  .consent-actions { grid-column: 1 / -1; }
  .consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  h1 { font-size: clamp(2.25rem, 10vw, 2.75rem); line-height: 1.08; }
  h2 { font-size: clamp(1.9rem, 8.2vw, 2.4rem); line-height: 1.1; }
  h3 { font-size: 1.3rem; }
  .section { padding-block: 64px; }
  .hero h1 span { margin-top: 4px; }
  .trust-line { gap: 7px; }
  .trust-line span { padding: 7px 10px; font-size: .66rem; }
  .portrait-note { right: -6px; bottom: 16px; max-width: none; }
  .portrait-accent { display: none; }
  .page-hero { padding-block: 58px; }
  .page-hero h1 { font-size: clamp(2.55rem, 11.5vw, 3.45rem); }
  .mini-grid { grid-template-columns: 1fr; }
  .mini-card { min-height: 92px; }
  .testimonial { padding: 38px 24px; border-radius: var(--radius-md); }
  .testimonial blockquote { font-size: 1.55rem; }
  .quote-mark { right: 2%; font-size: 9rem; }
  .contact-card { margin-block: 64px; padding: 32px 22px; border-radius: var(--radius-md); }
  .contact-card-copy { padding-left: 0; }
  .contact-icon { position: static; margin-bottom: 22px; }
  .info-card { padding: 24px; }
  .media-item { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
  .footer-disclaimer { align-items: flex-start; }
  .consent-banner { left: 12px; right: 12px; width: calc(100% - 24px); }
  .consent-icon { width: 42px; height: 42px; }
  .consent-actions { grid-template-columns: 1fr; }
}

@media (max-width: 355px) {
  .mobile-lead-bar { grid-template-columns: 48px 1fr; }
  .mobile-lead-copy { display: none; }
}

@media (max-width: 820px) and (orientation: landscape) {
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom)); }
  .mobile-lead-bar { grid-template-columns: minmax(0, 1fr) 48px 128px; padding-block: 7px; }
}

@media (hover: none), (pointer: coarse) {
  .button:hover,
  .card:hover,
  .mini-card:hover,
  .article-card:hover,
  .media-item:hover,
  .whatsapp-float:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
