/* ========================================================================== 
   CARE FISIOTERAPIA — DESIGN SYSTEM
   Static, responsive and dependency-free interface
   ========================================================================== */

:root {
    --ink: #173f3d;
    --ink-deep: #0d2f2e;
    --ink-dark: #082625;
    --mint: #68b59f;
    --mint-bright: #86d0ba;
    --mint-soft: #dff1eb;
    --mint-pale: #f0f8f5;
    --gold: #c8a764;
    --gold-light: #e5d19f;
    --cream: #f8f5ef;
    --paper: #fffdf9;
    --white: #ffffff;
    --text: #243d3b;
    --text-soft: #5f7471;
    --line: rgba(23, 63, 61, 0.14);
    --line-light: rgba(255, 255, 255, 0.15);
    --shadow-sm: 0 12px 32px rgba(13, 47, 46, 0.08);
    --shadow-md: 0 24px 70px rgba(13, 47, 46, 0.14);
    --shadow-lg: 0 40px 100px rgba(4, 28, 27, 0.26);
    --container: 1240px;
    --header-h: 82px;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --radius-pill: 999px;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --ease-soft: cubic-bezier(.2, .8, .2, 1);
    --font-display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Helvetica, Arial, sans-serif;
    --font-body: "Aptos", "Segoe UI Variable Text", "Segoe UI", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4, blockquote { margin-top: 0; }
button { color: inherit; }

::selection { color: var(--ink-dark); background: var(--mint-bright); }

:focus-visible {
    outline: 3px solid rgba(104, 181, 159, 0.78);
    outline-offset: 4px;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

svg {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section-pad { padding: 128px 0; }
.section-dark { color: var(--white); background: var(--ink-deep); }

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ink-dark);
    border-radius: 10px;
    transform: translateY(-150%);
    transition: transform .25s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1100;
    height: 3px;
    pointer-events: none;
}
.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--mint-bright), var(--gold-light));
    box-shadow: 0 0 14px rgba(134, 208, 186, .65);
}

/* Typography */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--mint);
    font-size: .74rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.eyebrow::before {
    width: 28px;
    height: 1px;
    content: "";
    background: currentColor;
}
.eyebrow-light { color: var(--mint-bright); }
.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 6px rgba(134, 208, 186, .12);
}
.eyebrow:has(.eyebrow-dot)::before { display: none; }

.display-heading {
    max-width: 900px;
    margin-bottom: 0;
    color: var(--ink-deep);
    font-family: var(--font-display);
    font-size: clamp(2.45rem, 5vw, 5.1rem);
    font-weight: 540;
    line-height: .99;
    letter-spacing: -.055em;
}
.display-heading.light { color: var(--white); }

.section-summary {
    max-width: 470px;
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
    line-height: 1.7;
}
.section-summary.light-muted,
.light-muted { color: rgba(255,255,255,.65); }

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, .65fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 74px;
}

.section-kicker {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-soft);
}
.section-kicker span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    font-size: .72rem;
    font-weight: 800;
}
.section-kicker p {
    margin: 4px 0 0;
    font-size: .8rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* Buttons and links */
.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 22px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-size: .9rem;
    font-weight: 750;
    line-height: 1.1;
    letter-spacing: -.01em;
    cursor: pointer;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .25s, background .25s, border-color .25s;
}
.button::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(110deg, transparent 22%, rgba(255,255,255,.33) 44%, transparent 66%);
    transform: translateX(-150%);
    transition: transform .8s var(--ease);
}
.button:hover::after { transform: translateX(150%); }
.button:hover { transform: translateY(-3px); }
.button svg { position: relative; z-index: 1; width: 19px; height: 19px; }
.button span { position: relative; z-index: 1; }
.button-sm { min-height: 46px; padding: 10px 18px; font-size: .83rem; }
.button-lg { min-height: 60px; padding: 17px 28px; font-size: .96rem; }
.button-full { width: 100%; }
.button-primary {
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 12px 28px rgba(13,47,46,.18);
}
.button-primary:hover { background: var(--ink-dark); box-shadow: 0 16px 38px rgba(13,47,46,.28); }
.button-accent {
    color: var(--ink-dark);
    background: linear-gradient(135deg, var(--mint-bright), var(--mint));
    box-shadow: 0 18px 40px rgba(104,181,159,.22);
}
.button-accent:hover { box-shadow: 0 22px 50px rgba(104,181,159,.34); }
.button-outline {
    color: var(--ink);
    border-color: var(--line);
    background: rgba(255,255,255,.55);
}
.button-outline:hover { border-color: var(--mint); background: var(--white); }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    font-size: .9rem;
    font-weight: 750;
}
.text-link svg { transition: transform .3s var(--ease); }
.text-link:hover svg { transform: translateX(5px); }
.text-link-light { color: rgba(255,255,255,.82); }

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-h);
    border-bottom: 1px solid rgba(255,255,255,.09);
    color: var(--white);
    background: rgba(9, 39, 38, .34);
    backdrop-filter: blur(16px) saturate(130%);
    -webkit-backdrop-filter: blur(16px) saturate(130%);
    transition: height .35s var(--ease), color .35s, background .35s, border-color .35s, box-shadow .35s;
}
.site-header.is-scrolled,
.light-header .site-header {
    height: 72px;
    color: var(--ink-deep);
    background: rgba(255,253,249,.88);
    border-bottom-color: var(--line);
    box-shadow: 0 12px 36px rgba(13,47,46,.07);
}
.header-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.brand { display: block; width: 166px; flex: 0 0 auto; }
.brand img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    transition: filter .35s, transform .35s var(--ease);
}
.brand:hover img { transform: scale(1.025); }
.site-header.is-scrolled .brand img,
.light-header .brand img,
.footer-logo img { filter: none; }

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 30px);
}
.nav-link {
    position: relative;
    padding: 27px 0;
    color: inherit;
    font-size: .79rem;
    font-weight: 650;
    opacity: .72;
    transition: opacity .25s, color .25s;
}
.nav-link::after {
    position: absolute;
    right: 0;
    bottom: 19px;
    left: 0;
    height: 1px;
    content: "";
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s var(--ease);
}
.nav-link:hover,
.nav-link.active { opacity: 1; }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.site-header:not(.is-scrolled) .header-cta {
    color: var(--ink-dark);
    background: var(--mint-bright);
    box-shadow: none;
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 19px;
    height: 1.5px;
    margin: 4px auto;
    background: currentColor;
    transition: transform .3s var(--ease), opacity .2s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 990;
    display: grid;
    place-items: stretch;
    color: var(--white);
    background: rgba(4,28,27,.68);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu-panel {
    width: min(480px, 100%);
    height: 100%;
    margin-left: auto;
    padding: calc(var(--header-h) + 32px) 30px 30px;
    background: var(--ink-dark);
    transform: translateX(100%);
    transition: transform .55s var(--ease);
    overflow-y: auto;
}
.mobile-menu.active .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-topline {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line-light);
    color: rgba(255,255,255,.5);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.mobile-menu nav { display: grid; margin: 26px 0 40px; }
.mobile-menu nav a {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 5vw, 2rem);
    letter-spacing: -.03em;
}
.mobile-menu nav a span { color: var(--mint-bright); font-family: var(--font-body); font-size: .65rem; letter-spacing: .1em; }

/* Hero */
.hero {
    position: relative;
    min-height: 820px;
    padding: calc(var(--header-h) + 86px) 0 46px;
    overflow: hidden;
    isolation: isolate;
}
.hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    content: "";
    background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 90%);
}
.hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: radial-gradient(circle at 50% 20%, transparent, rgba(4,28,27,.48) 80%);
}
.hero-orb {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .18;
}
.hero-orb-one { top: 110px; left: -130px; width: 430px; height: 430px; background: var(--mint-bright); animation: orbDrift 12s ease-in-out infinite alternate; }
.hero-orb-two { right: -120px; bottom: 30px; width: 380px; height: 380px; background: var(--gold); animation: orbDrift 15s ease-in-out infinite alternate-reverse; }
@keyframes orbDrift { to { transform: translate3d(45px, -24px, 0) scale(1.08); } }

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(440px, .97fr);
    gap: clamp(55px, 7vw, 105px);
    align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-title {
    max-width: 760px;
    margin-bottom: 28px;
    font-family: var(--font-display);
    font-size: clamp(3.35rem, 6.7vw, 6.7rem);
    font-weight: 520;
    line-height: .89;
    letter-spacing: -.065em;
}
.hero-title em { color: var(--mint-bright); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-lead {
    max-width: 650px;
    margin-bottom: 34px;
    color: rgba(255,255,255,.68);
    font-size: clamp(1.05rem, 1.55vw, 1.28rem);
    line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-top: 34px;
    color: rgba(255,255,255,.64);
    font-size: .78rem;
}
.hero-trust div { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 15px; height: 15px; color: var(--mint-bright); stroke-width: 2.4; }

.hero-visual { position: relative; min-width: 0; perspective: 1200px; }
.hero-image-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 220px 220px 28px 28px;
    box-shadow: var(--shadow-lg);
    transform: rotateY(var(--tilt-x, 0deg)) rotateX(var(--tilt-y, 0deg));
    transition: transform .25s ease-out;
}
.hero-image-frame picture,
.hero-image-frame img { width: 100%; height: 100%; }
.hero-image-frame img { object-fit: cover; object-position: 50% 50%; transform: scale(1.02); }
.image-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,28,27,.68), transparent 48%); }
.hero-image-label {
    position: absolute;
    right: 25px;
    bottom: 25px;
    left: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 17px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    color: rgba(255,255,255,.88);
    background: rgba(6,38,36,.58);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-size: .77rem;
    font-weight: 650;
}
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint-bright); box-shadow: 0 0 0 6px rgba(134,208,186,.14); }
.floating-care-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    color: var(--ink-deep);
    background: rgba(255,253,249,.93);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: floatCard 5s ease-in-out infinite;
}
.floating-card-top { top: 18%; left: -55px; }
.floating-card-bottom { right: -38px; bottom: 17%; animation-delay: -2.4s; }
@keyframes floatCard { 50% { transform: translateY(-10px); } }
.mini-icon { display: grid; width: 39px; height: 39px; place-items: center; flex: 0 0 auto; border-radius: 12px; color: var(--ink); background: var(--mint-soft); }
.mini-icon svg { width: 20px; height: 20px; }
.floating-care-card strong { display: block; font-size: .78rem; line-height: 1.2; }
.floating-care-card span { display: block; margin-top: 3px; color: var(--text-soft); font-size: .67rem; }

.hero-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 62px;
    color: rgba(255,255,255,.42);
    font-size: .68rem;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.hero-foot i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* Manifesto */
.manifesto { background: var(--cream); }
.manifesto-grid {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 70px;
}
.manifesto-content .display-heading { max-width: 1030px; }
.manifesto-columns {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: 70px;
    align-items: start;
    margin-top: 55px;
}
.lead-copy { margin: 0; color: var(--text-soft); font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.58; }
.insight-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.64);
    box-shadow: var(--shadow-sm);
}
.insight-card svg { width: 26px; height: 26px; color: var(--gold); }
.insight-card p { margin: 0; color: var(--text-soft); font-size: .92rem; line-height: 1.65; }
.insight-card strong { color: var(--ink-deep); }
.pain-signals { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 52px; }
.pain-signals span { padding: 10px 15px; border: 1px solid var(--line); border-radius: var(--radius-pill); color: var(--ink); background: rgba(255,255,255,.36); font-size: .74rem; font-weight: 700; }

/* Method */
.method { position: relative; color: var(--white); background: var(--ink-deep); overflow: hidden; }
.method::before { position: absolute; inset: 0; content: ""; opacity: .22; background: radial-gradient(circle at 12% 80%, var(--mint), transparent 32%); pointer-events: none; }
.method-layout { position: relative; display: grid; grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr); gap: 80px; align-items: start; }
.method-media { position: sticky; top: 110px; overflow: hidden; height: 650px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.method-media picture,
.method-media img { width: 100%; height: 100%; }
.method-media img { object-fit: cover; }
.method-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(4,28,27,.8), transparent 60%); }
.method-media-caption { position: absolute; right: 28px; bottom: 28px; left: 28px; z-index: 2; }
.method-media-caption span { display: block; margin-bottom: 8px; color: var(--mint-bright); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.method-media-caption strong { font-family: var(--font-display); font-size: 1.8rem; font-weight: 520; letter-spacing: -.03em; }
.method-steps { border-top: 1px solid var(--line-light); }
.method-step { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 26px; padding: 38px 0; border-bottom: 1px solid var(--line-light); }
.step-number { color: var(--mint-bright); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.step-body h3 { margin-bottom: 14px; font-family: var(--font-display); font-size: clamp(1.65rem, 2.6vw, 2.4rem); font-weight: 520; line-height: 1.06; letter-spacing: -.04em; }
.step-body p { max-width: 680px; margin-bottom: 18px; color: rgba(255,255,255,.62); }
.step-body ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.step-body li { padding: 7px 11px; border: 1px solid var(--line-light); border-radius: var(--radius-pill); color: rgba(255,255,255,.7); font-size: .68rem; font-weight: 650; }

/* Specialties */
.specialties { background: var(--paper); }
.specialty-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.specialty-card {
    position: relative;
    min-height: 360px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 14px 38px rgba(13,47,46,.045);
    transition: transform .5s var(--ease), border-color .35s, box-shadow .5s var(--ease);
    isolation: isolate;
}
.specialty-card::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    opacity: 0;
    background: radial-gradient(450px circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(104,181,159,.18), transparent 42%);
    transition: opacity .35s;
}
.specialty-card:hover { transform: translateY(-9px); border-color: rgba(104,181,159,.52); box-shadow: var(--shadow-md); }
.specialty-card:hover::before { opacity: 1; }
.specialty-icon { display: grid; width: 50px; height: 50px; place-items: center; margin-bottom: 64px; border-radius: 15px; color: var(--ink); background: var(--mint-soft); }
.specialty-icon svg { width: 24px; height: 24px; }
.card-index { position: absolute; top: 29px; right: 29px; color: var(--gold); font-size: .68rem; font-weight: 850; letter-spacing: .12em; }
.specialty-card h3 { max-width: 230px; margin-bottom: 13px; color: var(--ink-deep); font-family: var(--font-display); font-size: 1.65rem; font-weight: 550; line-height: 1.05; letter-spacing: -.035em; }
.specialty-card p { margin-bottom: 20px; color: var(--text-soft); font-size: .87rem; line-height: 1.65; }
.card-detail { position: absolute; right: 28px; bottom: 25px; left: 28px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--ink); font-size: .67rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.specialty-card-featured { grid-column: span 2; display: grid; grid-template-columns: 1.12fr .88fr; min-height: 390px; padding: 0; }
.specialty-photo { min-height: 100%; overflow: hidden; }
.specialty-photo picture,
.specialty-photo img { width: 100%; height: 100%; }
.specialty-photo img { object-fit: cover; transition: transform .8s var(--ease); }
.specialty-card-featured:hover .specialty-photo img { transform: scale(1.055); }
.specialty-featured-copy { position: relative; padding: 28px; }
.specialty-featured-copy .specialty-icon { margin-bottom: 72px; }
.specialty-featured-copy .card-index { top: 30px; right: 28px; }

/* Testimonials */
.testimonials { color: var(--white); background: var(--ink-dark); }
.testimonials-shell { display: grid; grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr); gap: 80px; align-items: center; }
.testimonial-heading .display-heading { font-size: clamp(2.7rem, 4.5vw, 4.8rem); }
.carousel-controls { display: flex; align-items: center; gap: 14px; margin-top: 40px; }
.round-button {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line-light);
    border-radius: 50%;
    color: var(--white);
    background: transparent;
    cursor: pointer;
    transition: color .25s, background .25s, transform .3s var(--ease);
}
.round-button:hover { color: var(--ink-dark); background: var(--mint-bright); transform: translateY(-3px); }
.round-button svg { width: 20px; height: 20px; }
.carousel-dots { display: flex; gap: 7px; }
.dot { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.25); cursor: pointer; transition: width .3s var(--ease), border-radius .3s, background .3s; }
.dot.active { width: 25px; border-radius: 10px; background: var(--mint-bright); }
.testimonial-viewport { overflow: hidden; border: 1px solid var(--line-light); border-radius: var(--radius-lg); background: rgba(255,255,255,.045); box-shadow: 0 30px 80px rgba(0,0,0,.2); }
.testimonial-track { display: flex; transition: transform .75s var(--ease); }
.testimonial-slide { flex: 0 0 100%; min-width: 0; padding: clamp(38px, 5vw, 68px); }
.quote-mark { width: 43px; height: 43px; margin-bottom: 38px; color: var(--mint-bright); stroke-width: 1.3; }
.testimonial-slide blockquote { margin-bottom: 44px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.6rem, 2.8vw, 2.6rem); font-weight: 400; line-height: 1.32; letter-spacing: -.025em; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.avatar { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; color: var(--ink-dark); background: var(--mint-bright); font-size: .72rem; font-weight: 850; }
.testimonial-author strong { display: block; font-size: .86rem; }
.testimonial-author small { display: block; margin-top: 2px; color: rgba(255,255,255,.48); font-size: .72rem; }

/* Team */
.team { background: var(--cream); }
.team-intro-grid { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 70px; margin-bottom: 74px; }
.founders-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; align-items: start; }
.founder-card { min-width: 0; }
.founder-card-offset { margin-top: 80px; }
.founder-photo { position: relative; overflow: hidden; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); background: var(--mint-soft); }
.founder-photo picture,
.founder-photo img { width: 100%; height: 100%; }
.founder-photo img { object-fit: cover; object-position: center 18%; filter: saturate(.88); transition: transform 1s var(--ease), filter .5s; }
.founder-card:hover .founder-photo img { transform: scale(1.035); filter: saturate(1); }
.founder-photo span { position: absolute; top: 20px; right: 20px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius-pill); color: var(--white); background: rgba(9,39,38,.64); backdrop-filter: blur(10px); font-size: .66rem; font-weight: 750; }
.founder-copy { padding: 28px 10px 0; }
.founder-copy .role { margin-bottom: 8px; color: var(--mint); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.founder-copy h3 { margin-bottom: 13px; color: var(--ink-deep); font-family: var(--font-display); font-size: clamp(2rem, 3vw, 3rem); font-weight: 540; line-height: 1; letter-spacing: -.05em; }
.founder-copy > p:last-child { max-width: 570px; margin-bottom: 0; color: var(--text-soft); font-size: .92rem; }
.team-story { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 45px; align-items: center; max-width: 920px; margin: 100px auto 0; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.55); box-shadow: var(--shadow-sm); }
.team-story-image { overflow: hidden; aspect-ratio: 1; border-radius: 22px; }
.team-story-image picture,
.team-story-image img { width: 100%; height: 100%; }
.team-story-image img { object-fit: cover; object-position: center 18%; }
.team-story-copy { padding-right: 28px; }
.team-story-copy > svg { width: 30px; height: 30px; margin-bottom: 18px; color: var(--gold); }
.team-story-copy h3 { margin-bottom: 15px; color: var(--ink-deep); font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 540; line-height: 1.05; letter-spacing: -.04em; }
.team-story-copy p { margin: 0; color: var(--text-soft); }

/* Structure gallery */
.structure { background: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: 1.35fr .65fr .65fr; grid-template-rows: 310px 310px; gap: 16px; }
.gallery-item { position: relative; min-width: 0; padding: 0; overflow: hidden; border: 0; border-radius: var(--radius-md); background: var(--ink); cursor: zoom-in; }
.gallery-large { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery-item picture,
.gallery-item img { width: 100%; height: 100%; }
.gallery-item img { object-fit: cover; transition: transform .9s var(--ease), filter .5s; }
.gallery-item::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(4,28,27,.78), transparent 58%); transition: opacity .35s; }
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.08); }
.gallery-item span { position: absolute; right: 22px; bottom: 20px; left: 22px; z-index: 2; color: var(--white); text-align: left; }
.gallery-item b { display: block; font-family: var(--font-display); font-size: 1.28rem; font-weight: 550; letter-spacing: -.025em; }
.gallery-item small { display: block; margin-top: 2px; color: rgba(255,255,255,.65); font-size: .7rem; }
.gallery-dialog { max-width: min(1000px, calc(100% - 32px)); max-height: calc(100vh - 32px); padding: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-md); color: var(--white); background: var(--ink-dark); box-shadow: var(--shadow-lg); }
.gallery-dialog::backdrop { background: rgba(4,28,27,.82); backdrop-filter: blur(12px); }
.gallery-dialog img { max-width: 100%; max-height: calc(100vh - 115px); object-fit: contain; }
.gallery-dialog p { margin: 0; padding: 16px 22px; color: rgba(255,255,255,.72); font-size: .85rem; }
.gallery-close { position: absolute; top: 14px; right: 14px; z-index: 2; display: grid; width: 44px; height: 44px; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--white); background: rgba(4,28,27,.65); cursor: pointer; backdrop-filter: blur(10px); }
.gallery-close svg { width: 20px; height: 20px; }

/* FAQ */
.faq { background: var(--mint-pale); }
.faq-grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: 100px; align-items: start; }
.faq-heading { position: sticky; top: 110px; }
.faq-heading .display-heading { font-size: clamp(2.8rem, 4.5vw, 4.7rem); }
.faq-heading .section-summary { margin: 24px 0 28px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 27px 0; border: 0; color: var(--ink-deep); background: transparent; text-align: left; cursor: pointer; }
.faq-question span { font-family: var(--font-display); font-size: clamp(1.15rem, 1.8vw, 1.55rem); font-weight: 570; letter-spacing: -.025em; }
.faq-question svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--mint); transition: transform .35s var(--ease); }
.faq-item.active .faq-question svg { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 720px; margin: 0; padding: 0 40px 27px 0; color: var(--text-soft); }
.faq-item.active .faq-answer { grid-template-rows: 1fr; }

/* Final CTA */
.final-cta { position: relative; padding: 120px 0; overflow: hidden; text-align: center; }
.final-cta::before { position: absolute; top: 0; left: 50%; width: 1px; height: 62px; content: ""; background: linear-gradient(to bottom, transparent, var(--mint-bright)); }
.final-cta-glow { position: absolute; top: -220px; left: 50%; width: 600px; height: 600px; border-radius: 50%; background: var(--mint); filter: blur(130px); opacity: .13; transform: translateX(-50%); }
.final-cta-inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.final-cta h2 { max-width: 1000px; margin-bottom: 22px; font-family: var(--font-display); font-size: clamp(3rem, 6.7vw, 6.5rem); font-weight: 510; line-height: .93; letter-spacing: -.065em; }
.final-cta p { margin-bottom: 32px; color: rgba(255,255,255,.6); font-size: 1.1rem; }
.final-cta .button svg:last-child { margin-left: 4px; }

/* Footer */
.site-footer { padding: 80px 0 20px; color: var(--text); background: var(--cream); }
.footer-main { display: grid; grid-template-columns: 1.35fr .55fr .8fr; gap: 80px; padding-bottom: 60px; }
.footer-brand .brand { width: 185px; margin-bottom: 22px; }
.footer-brand p { max-width: 430px; margin-bottom: 26px; color: var(--text-soft); }
.social-links { display: flex; gap: 10px; }
.social-links a { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); transition: color .25s, background .25s, transform .3s var(--ease); }
.social-links a:hover { color: var(--white); background: var(--ink); transform: translateY(-3px); }
.social-links svg { width: 19px; height: 19px; }
.footer-nav,
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-main h3 { margin-bottom: 12px; color: var(--ink-deep); font-size: .72rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.footer-nav a { color: var(--text-soft); font-size: .85rem; transition: color .2s, transform .25s var(--ease); }
.footer-nav a:hover { color: var(--ink); transform: translateX(4px); }
.footer-contact a,
.footer-contact p { display: flex; align-items: flex-start; gap: 10px; margin: 0; color: var(--text-soft); font-size: .83rem; overflow-wrap: anywhere; }
.footer-contact svg { width: 17px; height: 17px; margin-top: 4px; flex: 0 0 auto; color: var(--mint); }
.footer-contact a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--text-soft); font-size: .7rem; }
.footer-bottom p { margin: 0; }

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 800;
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 17px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: var(--radius-pill);
    color: var(--ink-dark);
    background: var(--mint-bright);
    box-shadow: 0 16px 42px rgba(13,47,46,.22);
    font-size: .76rem;
    font-weight: 800;
    transition: transform .35s var(--ease), box-shadow .35s;
}
.whatsapp-float:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(13,47,46,.32); }
.whatsapp-float svg { width: 20px; height: 20px; }

/* Reveal animation */
.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(5px);
    transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; filter: none; }

/* ========================================================================== 
   BLOG ARCHIVE
   ========================================================================== */
.light-header { background: var(--paper); }
.light-header .site-header { position: fixed; }
.light-page { background: var(--paper); }
.blog-main { padding-top: 72px; }
.blog-hero {
    position: relative;
    padding: 110px 0 86px;
    overflow: hidden;
    color: var(--white);
    background: var(--ink-deep);
}
.blog-hero::before { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at 80% 5%, rgba(104,181,159,.25), transparent 35%), linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: auto, 72px 72px, 72px 72px; }
.blog-hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr); gap: 70px; align-items: end; }
.blog-hero h1 { max-width: 850px; margin-bottom: 0; font-family: var(--font-display); font-size: clamp(3.8rem, 7.5vw, 7.4rem); font-weight: 510; line-height: .88; letter-spacing: -.07em; }
.blog-hero h1 em { color: var(--mint-bright); font-family: Georgia, serif; font-weight: 400; }
.blog-hero-copy p { margin: 0; color: rgba(255,255,255,.64); font-size: 1.08rem; }
.blog-hero-meta { display: flex; gap: 22px; margin-top: 28px; color: rgba(255,255,255,.46); font-size: .7rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }

.featured-story { padding: 90px 0 60px; background: var(--paper); }
.featured-card { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 480px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-md); }
.featured-video-wrap { min-height: 100%; background: var(--ink-dark); }
.responsive-video { position: relative; width: 100%; height: 100%; min-height: 480px; overflow: hidden; }
.responsive-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.featured-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 5vw, 70px); }
.featured-badge { display: inline-flex; width: fit-content; align-items: center; gap: 8px; margin-bottom: 25px; padding: 8px 12px; border-radius: var(--radius-pill); color: #9f2929; background: #fff0f0; font-size: .69rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.featured-badge svg { width: 17px; height: 17px; }
.featured-copy h2 { margin-bottom: 18px; color: var(--ink-deep); font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 530; line-height: .98; letter-spacing: -.055em; }
.featured-copy p { margin-bottom: 28px; color: var(--text-soft); }

.blog-library { padding: 70px 0 130px; }
.blog-library-head { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; margin-bottom: 40px; }
.blog-library-head h2 { margin: 0; color: var(--ink-deep); font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 4.2rem); font-weight: 530; line-height: 1; letter-spacing: -.055em; }
.blog-search { position: relative; width: min(360px, 100%); }
.blog-search svg { position: absolute; top: 50%; left: 17px; width: 18px; height: 18px; color: var(--text-soft); transform: translateY(-50%); }
.blog-search input { width: 100%; height: 50px; padding: 0 18px 0 47px; border: 1px solid var(--line); border-radius: var(--radius-pill); color: var(--ink); background: var(--white); outline: none; transition: border-color .25s, box-shadow .25s; }
.blog-search input:focus { border-color: var(--mint); box-shadow: 0 0 0 4px rgba(104,181,159,.12); }
.blog-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.filter-button { padding: 9px 14px; border: 1px solid var(--line); border-radius: var(--radius-pill); color: var(--text-soft); background: transparent; font-size: .72rem; font-weight: 720; cursor: pointer; transition: color .25s, background .25s, border-color .25s; }
.filter-button:hover,
.filter-button.active { color: var(--white); border-color: var(--ink); background: var(--ink); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 12px 38px rgba(13,47,46,.045); transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .35s; }
.blog-card:hover { transform: translateY(-8px); border-color: rgba(104,181,159,.5); box-shadow: var(--shadow-md); }
.blog-card-image { position: relative; overflow: hidden; aspect-ratio: 1.18 / 1; }
.blog-card-image picture,
.blog-card-image img { width: 100%; height: 100%; }
.blog-card-image img { object-fit: cover; transition: transform .8s var(--ease); }
.blog-card:hover .blog-card-image img { transform: scale(1.055); }
.blog-card-category { position: absolute; top: 15px; left: 15px; padding: 7px 10px; border-radius: var(--radius-pill); color: var(--white); background: rgba(9,39,38,.76); backdrop-filter: blur(10px); font-size: .62rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.blog-card-body { padding: 24px; }
.blog-card-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; color: var(--text-soft); font-size: .65rem; }
.blog-card-meta span { display: flex; align-items: center; gap: 5px; }
.blog-card-meta svg { width: 13px; height: 13px; color: var(--mint); }
.blog-card h3 { margin-bottom: 13px; color: var(--ink-deep); font-family: var(--font-display); font-size: 1.55rem; font-weight: 560; line-height: 1.08; letter-spacing: -.035em; }
.blog-card h3 a { transition: color .25s; }
.blog-card h3 a:hover { color: var(--mint); }
.blog-card-summary { display: -webkit-box; margin-bottom: 22px; overflow: hidden; color: var(--text-soft); font-size: .83rem; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding-top: 18px; border-top: 1px solid var(--line); }
.blog-card-author { color: var(--text-soft); font-size: .66rem; }
.read-link { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.read-link svg { transition: transform .3s var(--ease); }
.read-link:hover svg { transform: translateX(4px); }
.blog-empty { grid-column: 1 / -1; padding: 70px 20px; border: 1px dashed var(--line); border-radius: var(--radius-md); color: var(--text-soft); text-align: center; }

/* ========================================================================== 
   SINGLE POST
   ========================================================================== */
.article-main { padding: 72px 0 0; }
.article-progress { position: fixed; top: 72px; right: 0; left: 0; z-index: 900; height: 2px; background: transparent; }
.article-progress span { display: block; width: 0; height: 100%; background: var(--mint); }
.article-loading { padding: 150px 0; color: var(--text-soft); text-align: center; }
.article-header { padding: 90px 0 60px; background: var(--mint-pale); }
.article-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 55px; color: var(--text-soft); font-size: .75rem; font-weight: 750; }
.article-back svg { transition: transform .3s var(--ease); }
.article-back:hover svg { transform: translateX(-5px); }
.article-category { display: inline-flex; margin-bottom: 22px; padding: 8px 12px; border: 1px solid rgba(104,181,159,.35); border-radius: var(--radius-pill); color: var(--ink); background: rgba(255,255,255,.55); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.article-title { max-width: 1050px; margin-bottom: 30px; color: var(--ink-deep); font-family: var(--font-display); font-size: clamp(3rem, 6.7vw, 6.7rem); font-weight: 510; line-height: .92; letter-spacing: -.065em; }
.article-meta { display: flex; flex-wrap: wrap; gap: 22px; color: var(--text-soft); font-size: .74rem; }
.article-meta span { display: flex; align-items: center; gap: 7px; }
.article-meta svg { width: 15px; height: 15px; color: var(--mint); }
.article-hero { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; transform: translateY(44px); }
.article-hero img { width: 100%; max-height: 690px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.article-layout { display: grid; grid-template-columns: 240px minmax(0, 760px) 150px; gap: 60px; justify-content: center; padding: 125px 0 110px; }
.article-toc { position: sticky; top: 110px; align-self: start; }
.article-toc h2 { margin-bottom: 14px; color: var(--ink-deep); font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.article-toc nav { display: grid; gap: 10px; padding-left: 14px; border-left: 1px solid var(--line); }
.article-toc a { color: var(--text-soft); font-size: .7rem; line-height: 1.45; transition: color .2s, transform .25s; }
.article-toc a:hover { color: var(--ink); transform: translateX(3px); }
.article-body { min-width: 0; color: #334c49; font-size: 1.08rem; line-height: 1.84; }
.article-body > p:first-child { color: var(--ink); font-size: 1.3rem; line-height: 1.7; }
.article-body p { margin-bottom: 1.45em; }
.article-body h3 { margin: 2.2em 0 .7em; color: var(--ink-deep); font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.65rem); font-weight: 560; line-height: 1.1; letter-spacing: -.045em; scroll-margin-top: 110px; }
.article-body ul { margin: 0 0 1.6em; padding-left: 1.25em; }
.article-body li { margin-bottom: .75em; padding-left: .25em; }
.article-body strong { color: var(--ink-deep); }
.article-body blockquote { position: relative; margin: 2.3em 0; padding: 32px 32px 32px 38px; border-left: 3px solid var(--mint); border-radius: 0 var(--radius-md) var(--radius-md) 0; color: var(--ink); background: var(--mint-pale); font-family: Georgia, serif; font-size: 1.32rem; line-height: 1.6; }
.article-share { position: sticky; top: 110px; display: flex; flex-direction: column; align-items: center; gap: 10px; align-self: start; }
.article-share > span { margin-bottom: 5px; color: var(--text-soft); font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; writing-mode: vertical-rl; }
.share-button { display: grid; width: 42px; height: 42px; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: var(--white); cursor: pointer; transition: color .2s, background .2s, transform .3s var(--ease); }
.share-button:hover { color: var(--white); background: var(--ink); transform: translateY(-3px); }
.share-button svg { width: 17px; height: 17px; }
.article-cta { margin-top: 70px; padding: 38px; border-radius: var(--radius-lg); color: var(--white); background: var(--ink-deep); }
.article-cta h3 { margin: 0 0 12px; color: var(--white); font-size: 2rem; }
.article-cta p { color: rgba(255,255,255,.62); }
.article-related { padding: 100px 0 130px; background: var(--cream); }
.article-related-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 35px; }
.article-related h2 { margin: 0; color: var(--ink-deep); font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 530; letter-spacing: -.055em; }

/* Responsive */
@media (max-width: 1160px) {
    .desktop-nav { display: none; }
    .menu-toggle { display: block; }
    .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .85fr); gap: 55px; }
    .hero-title { font-size: clamp(3.2rem, 7vw, 5.6rem); }
    .floating-card-top { left: -24px; }
    .floating-card-bottom { right: -20px; }
    .specialty-grid { grid-template-columns: repeat(2, 1fr); }
    .article-layout { grid-template-columns: 200px minmax(0, 700px) 50px; gap: 35px; }
}

@media (max-width: 960px) {
    .section-pad { padding: 100px 0; }
    .split-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 55px; }
    .hero { padding-top: calc(var(--header-h) + 65px); }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 850px; }
    .hero-visual { width: min(620px, 86%); margin: 10px auto 0; }
    .hero-image-frame { aspect-ratio: 5 / 4; border-radius: 180px 180px 28px 28px; }
    .hero-foot { margin-top: 80px; }
    .manifesto-grid,
    .team-intro-grid { grid-template-columns: 1fr; gap: 30px; }
    .manifesto-columns { gap: 40px; }
    .method-layout { grid-template-columns: 1fr; gap: 50px; }
    .method-media { position: relative; top: auto; height: 560px; }
    .testimonials-shell { grid-template-columns: 1fr; gap: 45px; }
    .carousel-controls { margin-top: 28px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 350px 260px 260px; }
    .gallery-large { grid-column: span 2; grid-row: auto; }
    .gallery-wide { grid-column: span 2; }
    .faq-grid { grid-template-columns: 1fr; gap: 55px; }
    .faq-heading { position: relative; top: auto; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
    .blog-hero-inner { grid-template-columns: 1fr; gap: 28px; }
    .featured-card { grid-template-columns: 1fr; }
    .responsive-video { min-height: 440px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .article-layout { grid-template-columns: minmax(0, 760px); }
    .article-toc,
    .article-share { position: relative; top: auto; }
    .article-toc { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--mint-pale); }
    .article-toc nav { grid-template-columns: repeat(2, 1fr); }
    .article-share { flex-direction: row; justify-content: flex-start; }
    .article-share > span { writing-mode: initial; }
}

@media (max-width: 720px) {
    :root { --header-h: 70px; }
    .container { width: min(calc(100% - 32px), var(--container)); }
    .section-pad { padding: 82px 0; }
    .brand { width: 138px; }
    .header-cta { display: none; }
    .menu-toggle { width: 44px; height: 44px; }
    .hero { min-height: auto; padding: calc(var(--header-h) + 55px) 0 34px; }
    .hero-title { font-size: clamp(3.15rem, 14vw, 5.1rem); }
    .hero-lead { font-size: 1rem; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-actions .text-link { justify-content: center; }
    .hero-trust { display: grid; gap: 10px; }
    .hero-visual { width: 100%; margin-top: 18px; }
    .hero-image-frame { aspect-ratio: 4 / 5; border-radius: 130px 130px 22px 22px; }
    .floating-care-card { min-width: 170px; padding: 11px; }
    .floating-card-top { top: 14%; left: -7px; }
    .floating-card-bottom { right: -7px; bottom: 14%; }
    .mini-icon { width: 34px; height: 34px; }
    .floating-care-card strong { font-size: .7rem; }
    .floating-care-card span { font-size: .6rem; }
    .hero-foot { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 55px; text-align: center; }
    .hero-foot i { display: none; }
    .display-heading { font-size: clamp(2.55rem, 12vw, 4.2rem); }
    .manifesto-columns { grid-template-columns: 1fr; gap: 30px; margin-top: 38px; }
    .lead-copy { font-size: 1.12rem; }
    .pain-signals { margin-top: 36px; }
    .method-media { height: 450px; }
    .method-step { grid-template-columns: 42px 1fr; gap: 14px; padding: 30px 0; }
    .step-body ul { display: grid; }
    .specialty-grid { grid-template-columns: 1fr; }
    .specialty-card { min-height: 330px; }
    .specialty-card-featured { grid-column: auto; grid-template-columns: 1fr; }
    .specialty-photo { height: 220px; }
    .specialty-featured-copy .specialty-icon { margin-bottom: 48px; }
    .testimonial-slide { padding: 35px 27px; }
    .testimonial-slide blockquote { font-size: 1.45rem; }
    .founders-grid { grid-template-columns: 1fr; gap: 58px; }
    .founder-card-offset { margin-top: 0; }
    .team-story { grid-template-columns: 1fr; margin-top: 70px; }
    .team-story-image { aspect-ratio: 4 / 3; }
    .team-story-copy { padding: 5px 5px 18px; }
    .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 270px); }
    .gallery-large,
    .gallery-wide { grid-column: auto; }
    .faq-answer p { padding-right: 0; }
    .final-cta { padding: 95px 0; }
    .final-cta h2 { font-size: clamp(3rem, 14vw, 5.1rem); }
    .footer-main { grid-template-columns: 1fr; gap: 45px; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
    .whatsapp-float { right: 14px; bottom: 14px; width: 52px; height: 52px; min-height: 0; justify-content: center; padding: 0; }
    .whatsapp-float span { display: none; }
    .blog-hero { padding: 85px 0 65px; }
    .blog-hero h1 { font-size: clamp(3.5rem, 16vw, 5.7rem); }
    .blog-hero-meta { flex-direction: column; gap: 7px; }
    .featured-story { padding-top: 55px; }
    .responsive-video { min-height: 260px; }
    .featured-copy { padding: 32px 24px; }
    .blog-library-head { grid-template-columns: 1fr; }
    .blog-search { width: 100%; }
    .blog-grid { grid-template-columns: 1fr; }
    .article-header { padding: 65px 0 40px; }
    .article-back { margin-bottom: 35px; }
    .article-title { font-size: clamp(2.9rem, 14vw, 5rem); }
    .article-hero { width: calc(100% - 32px); transform: translateY(26px); }
    .article-hero img { border-radius: 22px; }
    .article-layout { padding: 85px 0 80px; gap: 40px; }
    .article-toc nav { grid-template-columns: 1fr; }
    .article-body { font-size: 1rem; }
    .article-body > p:first-child { font-size: 1.15rem; }
    .article-cta { padding: 28px 22px; }
    .article-related-head { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 420px) {
    .container { width: min(calc(100% - 24px), var(--container)); }
    .mobile-menu-panel { padding-inline: 22px; }
    .button-lg { padding-inline: 18px; font-size: .88rem; }
    .hero-title { font-size: 3.05rem; }
    .floating-care-card { display: none; }
    .hero-image-frame { border-radius: 95px 95px 20px 20px; }
    .hero-image-label { right: 15px; bottom: 15px; left: 15px; }
    .insight-card { grid-template-columns: 1fr; }
    .method-media { height: 390px; }
    .testimonial-slide blockquote { font-size: 1.3rem; }
    .article-meta { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    .js .reveal { opacity: 1; transform: none; filter: none; }
}

@media print {
    .site-header, .mobile-menu, .whatsapp-float, .scroll-progress, .article-progress, .article-share, .article-toc, .site-footer { display: none !important; }
    body { color: #000; background: #fff; }
    .article-main { padding: 0; }
    .article-header { padding: 20px 0; background: #fff; }
    .article-hero { transform: none; }
    .article-layout { display: block; padding: 40px 0; }
}

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

/* ========================================================================== 
   TEAM UNIFIED SHOWCASE & CREFITO BADGES
   ========================================================================== */
.team-unified-showcase {
    display: grid;
    grid-template-columns: minmax(300px, 420px) 1fr;
    gap: 45px;
    align-items: center;
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
}
.team-unified-photo {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 0.72 / 1;
}
.team-unified-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    background: rgba(18, 59, 56, 0.88);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}
.team-unified-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.team-story-head .heart-icon {
    width: 32px;
    height: 32px;
    color: var(--mint);
    margin-bottom: 12px;
}
.team-story-head h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 530;
    color: var(--ink-deep);
    margin-bottom: 12px;
    line-height: 1.1;
}
.team-story-head p {
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.6;
}
.founders-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}
.founder-profile {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.crefito-tag {
    display: inline-flex;
    width: fit-content;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: var(--mint-pale);
    color: var(--ink-dark);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    border: 1px solid rgba(104, 181, 159, 0.4);
}
.founder-profile h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink-deep);
    margin: 4px 0 0;
}
.founder-role {
    font-size: 0.74rem;
    font-weight: 750;
    color: var(--mint);
    margin: 0;
}
.founder-desc {
    font-size: 0.84rem;
    color: var(--text-soft);
    line-height: 1.5;
    margin: 4px 0 0;
}

/* ========================================================================== 
   UNITS & GOOGLE MAPS SECTION
   ========================================================================== */
.units-section {
    background: var(--cream);
}
.units-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.unit-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(13, 47, 46, 0.05);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.unit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.unit-header {
    margin-bottom: 16px;
}
.unit-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    background: var(--ink-dark);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.unit-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 550;
    color: var(--ink-deep);
    margin-bottom: 10px;
}
.unit-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}
.unit-address svg {
    width: 20px;
    height: 20px;
    color: var(--mint);
    flex-shrink: 0;
    margin-top: 2px;
}
.unit-map-frame {
    width: 100%;
    height: 260px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 20px 0;
    border: 1px solid var(--line);
}
.unit-map-frame iframe {
    width: 100%;
    height: 100%;
}
.unit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}
.unit-actions .button {
    flex: 1;
    min-width: 160px;
    justify-content: center;
}

@media (max-width: 960px) {
    .team-unified-showcase { grid-template-columns: 1fr; gap: 30px; padding: 24px; }
    .founders-details-grid { grid-template-columns: 1fr; }
    .units-grid { grid-template-columns: 1fr; }
}
