/* ============================================
   KODEKS ORDINACIJA — common stylesheet
   ============================================ */

/* ============ DESIGN TOKENS ============ */
:root {
    --c-bg: #FBF7F3;
    --c-bg-warm: #F5E8DC;
    --c-bg-rose: #F1DCCC;
    --c-bg-deep: #E8C8B0;
    --c-ink: #2A1C16;
    --c-ink-soft: #4D352A;
    --c-muted: #8C6E5F;
    --c-muted-light: #B89A8A;
    --c-line: #E5D6C5;
    --c-line-soft: #F0E5D8;
    --c-accent: #C9836B;
    --c-accent-deep: #A55E47;
    --c-accent-light: #F0BFA8;
    --c-gold: #C9A57B;
    --f-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
    --f-deco: 'Italiana', 'Fraunces', Georgia, serif;
    --f-body: 'Manrope', system-ui, -apple-system, sans-serif;
    --radius: 4px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --ease: cubic-bezier(0.215, 0.61, 0.355, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --container: 1320px;
    --gutter: clamp(20px, 4vw, 48px);
    --header-h: 76px;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-ink);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--c-accent); color: var(--c-bg); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.display { font-family: var(--f-display); font-weight: 300; letter-spacing: -0.02em; line-height: 1.02; }
.eyebrow {
    font-size: 11px; font-weight: 500; letter-spacing: 0.24em;
    text-transform: uppercase; color: var(--c-accent-deep);
    display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--c-accent); }

/* ============ HEADER ============ */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--header-h);
    background: rgba(251, 247, 243, 0);
    backdrop-filter: blur(0px);
    transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}
.header.scrolled, .header.solid {
    background: rgba(251, 247, 243, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--c-line-soft);
}
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo {
    font-family: var(--f-display); font-style: italic; font-size: 24px; font-weight: 400;
    letter-spacing: -0.015em; color: var(--c-ink);
    display: flex; align-items: baseline; gap: 10px;
    transition: color 0.3s var(--ease);
}
.logo:hover { color: var(--c-accent-deep); }
.logo__mark {
    display: inline-block; width: 7px; height: 7px; border-radius: 50%;
    background: var(--c-accent); transform: translateY(-2px);
    transition: transform 0.4s var(--ease);
}
.logo:hover .logo__mark { transform: translateY(-2px) scale(1.4); }
.nav { display: flex; gap: 36px; align-items: center; }
.nav__link {
    font-size: 13px; font-weight: 500; color: var(--c-ink-soft);
    transition: color 0.3s var(--ease); position: relative; letter-spacing: 0.02em;
}
.nav__link::after {
    content: ''; position: absolute; left: 0; right: 100%; bottom: -4px;
    height: 1px; background: var(--c-accent); transition: right 0.4s var(--ease);
}
.nav__link:hover { color: var(--c-accent-deep); }
.nav__link:hover::after { right: 0; }
.header__right { display: flex; align-items: center; gap: 22px; }
.lang-switch {
    display: flex; gap: 0; font-size: 11px; font-weight: 600;
    letter-spacing: 0.14em; color: var(--c-muted); font-family: var(--f-body);
}
.lang-switch a { padding: 4px 8px; border-radius: var(--radius); transition: color 0.2s var(--ease); }
.lang-switch a.active { color: var(--c-ink); }
.lang-switch a:not(.active):hover { color: var(--c-accent-deep); }
.lang-switch__sep { color: var(--c-line); padding: 4px 0; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px; font-size: 12px; font-weight: 600;
    letter-spacing: 0.06em; border-radius: 999px;
    transition: all 0.4s var(--ease); position: relative; overflow: hidden;
    text-transform: uppercase; white-space: nowrap;
}
.btn--primary { background: var(--c-ink); color: var(--c-bg); }
.btn--primary:hover { background: var(--c-accent-deep); transform: translateY(-1px); box-shadow: 0 8px 24px -8px rgba(165, 94, 71, 0.4); }
.btn--ghost { border: 1px solid var(--c-ink); color: var(--c-ink); }
.btn--ghost:hover { background: var(--c-ink); color: var(--c-bg); }
.btn--accent { background: var(--c-accent); color: var(--c-bg); }
.btn--accent:hover { background: var(--c-accent-deep); transform: translateY(-1px); box-shadow: 0 8px 24px -8px rgba(165, 94, 71, 0.5); }
.btn--lg { padding: 16px 30px; font-size: 12px; }
.btn__arrow { display: inline-block; transition: transform 0.4s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(5px); }

.menu-toggle { display: none; width: 40px; height: 40px; position: relative; }
.menu-toggle span {
    position: absolute; left: 8px; width: 24px; height: 1.5px;
    background: var(--c-ink); transition: all 0.4s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 20px; }
.menu-toggle span:nth-child(3) { top: 26px; }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg); top: 20px; }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg); top: 20px; }

.mobile-menu {
    position: fixed; inset: 0; background: var(--c-bg); z-index: 99;
    transform: translateY(-100%); transition: transform 0.6s var(--ease-out);
    display: flex; flex-direction: column;
    padding: calc(var(--header-h) + 24px) var(--gutter) 24px;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu nav a {
    font-family: var(--f-display); font-size: 28px; font-weight: 400;
    padding: 12px 0; border-bottom: 1px solid var(--c-line);
    transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.mobile-menu nav a:hover { color: var(--c-accent-deep); padding-left: 12px; }
.mobile-menu__bottom { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; gap: 14px; }

/* ============ HOMEPAGE HERO ============ */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    padding-top: calc(var(--header-h) + 40px); padding-bottom: 60px;
    overflow: hidden; background: var(--c-bg-warm);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; will-change: transform; }
.hero__bg img {
    width: 100%; height: 110%; object-fit: cover;
    filter: brightness(0.92) saturate(0.95);
}
.hero__bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(160deg,
        rgba(42, 28, 22, 0.35) 0%, rgba(42, 28, 22, 0.15) 35%,
        rgba(42, 28, 22, 0.55) 100%);
}
.hero__inner { position: relative; z-index: 2; color: var(--c-bg); width: 100%; }
.hero__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.hero__eyebrow { color: var(--c-accent-light); }
.hero__eyebrow::before { background: var(--c-accent-light); }
.hero__title {
    font-size: clamp(48px, 8.5vw, 124px); font-weight: 300;
    line-height: 0.96; letter-spacing: -0.03em;
    margin-top: 28px; margin-bottom: 0;
}
.hero__title .word {
    display: inline-block; overflow: hidden; vertical-align: baseline;
    line-height: 1.05; padding-bottom: 0.05em;
}
.hero__title .word > span, .hero__title .word > em {
    display: inline-block; transform: translateY(110%); opacity: 0;
    animation: revealUp 1.1s var(--ease-out) forwards;
}
.hero__title em {
    font-style: italic; font-weight: 300;
    color: var(--c-accent-light); font-family: var(--f-display);
}
@keyframes revealUp { to { transform: translateY(0); opacity: 1; } }
.hero__title .word:nth-child(1) > span { animation-delay: 0.3s; }
.hero__title .word:nth-child(2) > * { animation-delay: 0.45s; }
.hero__title .word:nth-child(3) > * { animation-delay: 0.6s; }

.hero__meta {
    justify-self: end; text-align: right; max-width: 360px;
    opacity: 0; transform: translateY(20px);
    animation: fadeIn 1.1s var(--ease-out) 0.85s forwards;
}
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }
.hero__loc {
    font-family: var(--f-display); font-style: italic; font-size: 17px;
    color: var(--c-bg); opacity: 0.95; margin-bottom: 20px; font-weight: 300;
}
.hero__lead { font-size: 15px; line-height: 1.65; margin-bottom: 28px; opacity: 0.92; }
.hero__ctas { display: flex; gap: 10px; justify-content: flex-end; }
.hero .btn--primary { background: var(--c-bg); color: var(--c-ink); }
.hero .btn--primary:hover { background: var(--c-accent-light); color: var(--c-ink); }
.hero .btn--ghost { color: var(--c-bg); border-color: rgba(251, 247, 243, 0.5); }
.hero .btn--ghost:hover { background: var(--c-bg); color: var(--c-ink); border-color: var(--c-bg); }

.hero__scroll {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    color: var(--c-bg); font-family: var(--f-display); font-style: italic;
    font-size: 13px; font-weight: 300; opacity: 0;
    display: flex; align-items: center; gap: 14px; z-index: 3;
    animation: fadeIn 1s var(--ease-out) 1.4s forwards;
}
.hero__scroll::after {
    content: ''; width: 1px; height: 36px; background: currentColor;
    animation: scrollPulse 2.5s var(--ease) infinite; transform-origin: top;
}
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
    50% { transform: scaleY(1); opacity: 0.95; }
}
.hero__deco {
    position: absolute; top: 35%; right: 6%; width: 80px; height: 80px;
    opacity: 0; z-index: 1;
    animation: fadeIn 1.5s var(--ease-out) 1s forwards, floatDeco 6s ease-in-out 2s infinite;
}
@keyframes floatDeco {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}

/* ============ MARQUEE ============ */
.marquee {
    background: var(--c-ink); color: var(--c-bg);
    padding: 16px 0; overflow: hidden; position: relative;
    border-top: 1px solid rgba(251, 247, 243, 0.06);
    border-bottom: 1px solid rgba(251, 247, 243, 0.06);
}
.marquee__track {
    display: flex; white-space: nowrap;
    animation: marquee 35s linear infinite; gap: 50px;
}
.marquee__item {
    font-family: var(--f-display); font-style: italic; font-weight: 300;
    font-size: 22px; display: inline-flex; align-items: center; gap: 50px;
}
.marquee__item::after { content: '✦'; color: var(--c-accent); font-style: normal; font-size: 14px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ SECTION DEFAULTS ============ */
section { padding: clamp(80px, 11vw, 150px) 0; position: relative; }
section.proc-section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }
.section-head {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 60px; align-items: end;
    margin-bottom: clamp(60px, 8vw, 100px);
}
.section-head__title {
    font-size: clamp(36px, 5.5vw, 72px); font-weight: 300;
    line-height: 1.0; letter-spacing: -0.025em;
}
.section-head__title em { font-style: italic; color: var(--c-accent-deep); font-weight: 300; }
.section-head__lead {
    font-size: 17px; line-height: 1.6;
    color: var(--c-muted); max-width: 540px;
}
.section-head__eyebrow { margin-bottom: 24px; }

/* ============ FEATURED CARDS (used on home + service pages "related") ============ */
.featured { background: var(--c-bg); position: relative; }
.featured::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 200px;
    background: linear-gradient(180deg, var(--c-bg-warm) 0%, transparent 100%);
    opacity: 0.5; pointer-events: none;
}
.featured__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.feat-card {
    background: var(--c-bg-warm); border-radius: var(--radius-lg);
    overflow: hidden; display: flex; flex-direction: column; position: relative;
    transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.feat-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -25px rgba(42, 28, 22, 0.25); }
.feat-card__media { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.feat-card__media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.4s var(--ease-out);
}
.feat-card:hover .feat-card__media img { transform: scale(1.07); }
.feat-card__media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(42, 28, 22, 0.15) 100%);
}
.feat-card__body { padding: 32px 32px 36px; display: flex; flex-direction: column; flex: 1; }
.feat-card__num {
    font-family: var(--f-display); font-style: italic;
    font-size: 14px; font-weight: 400; color: var(--c-accent-deep);
    margin-bottom: 18px; letter-spacing: 0.02em;
}
.feat-card__title {
    font-family: var(--f-display); font-size: 30px; font-weight: 400;
    line-height: 1.1; margin-bottom: 12px; letter-spacing: -0.015em;
}
.feat-card__title em { font-style: italic; color: var(--c-accent-deep); }
.feat-card__desc { font-size: 14px; color: var(--c-muted); margin-bottom: 24px; line-height: 1.6; }
.feat-card__tags { display: flex; flex-wrap: wrap; gap: 6px 8px; margin-bottom: 28px; }
.feat-card__tag {
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--c-ink-soft); padding: 6px 14px;
    border: 1px solid var(--c-line); border-radius: 999px;
    background: var(--c-bg); transition: all 0.3s var(--ease);
    cursor: pointer; text-decoration: none;
}
.feat-card__tag:hover {
    background: var(--c-accent); border-color: var(--c-accent);
    color: var(--c-bg); transform: translateY(-2px);
}
.feat-card__cta {
    margin-top: auto; display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
    color: var(--c-ink); transition: gap 0.3s var(--ease), color 0.3s var(--ease);
    text-transform: uppercase;
}
.feat-card__cta:hover { gap: 16px; color: var(--c-accent-deep); }

/* ============ SERVICES CATALOG ============ */
.services { background: var(--c-bg-warm); position: relative; }
.services::before {
    content: ''; position: absolute; top: 50%; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--c-bg-rose) 0%, transparent 70%);
    opacity: 0.4; pointer-events: none;
}
.services__cats {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
    background: var(--c-line); border: 1px solid var(--c-line);
    border-radius: var(--radius-lg); overflow: hidden; position: relative;
}
.cat {
    background: var(--c-bg); padding: 44px 40px 48px;
    display: flex; flex-direction: column;
    transition: background 0.4s var(--ease);
}
.cat:hover { background: var(--c-bg-rose); }
.cat__head {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--c-line);
}
.cat__num { font-family: var(--f-display); font-style: italic; font-size: 14px; color: var(--c-accent-deep); margin-bottom: 6px; }
.cat__title { font-family: var(--f-display); font-size: 28px; font-weight: 400; line-height: 1.1; letter-spacing: -0.015em; }
.cat__list { display: flex; flex-direction: column; gap: 0; }
.cat__item {
    padding: 14px 0; border-bottom: 1px dashed var(--c-line);
    font-size: 15px; color: var(--c-ink-soft);
    display: flex; justify-content: space-between; align-items: center;
    transition: color 0.3s var(--ease), padding-left 0.4s var(--ease);
}
.cat__item:last-child { border-bottom: none; }
.cat__item--link { cursor: pointer; }
.cat__item--link:hover { color: var(--c-accent-deep); padding-left: 8px; }
.cat__item__arrow { font-size: 12px; color: var(--c-muted); transition: transform 0.3s var(--ease), color 0.3s var(--ease); }
.cat__item--link:hover .cat__item__arrow { transform: translateX(4px); color: var(--c-accent-deep); }

/* ============ TEAM ============ */
.team { background: var(--c-bg); position: relative; overflow: hidden; }
.team__head-row {
    display: flex; justify-content: space-between; align-items: end;
    gap: 40px; margin-bottom: clamp(50px, 7vw, 80px);
}
.team__head-row .section-head { margin-bottom: 0; grid-template-columns: 1fr; flex: 1; }
.team__nav { display: flex; gap: 8px; flex-shrink: 0; }
.team__nav-btn {
    width: 50px; height: 50px; border-radius: 50%;
    border: 1px solid var(--c-line); color: var(--c-ink);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; transition: all 0.3s var(--ease); background: var(--c-bg);
}
.team__nav-btn:hover:not(:disabled) {
    background: var(--c-ink); color: var(--c-bg);
    border-color: var(--c-ink); transform: translateY(-2px);
}
.team__nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.team__scroll-wrap { position: relative; }
.team__scroll {
    display: flex; gap: 20px; overflow-x: auto; overflow-y: visible;
    scroll-snap-type: x proximity; scroll-padding-left: var(--gutter);
    scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
    padding: 8px var(--gutter) 32px;
    scrollbar-width: thin; scrollbar-color: var(--c-accent) var(--c-line-soft);
}
.team__scroll::-webkit-scrollbar { height: 4px; }
.team__scroll::-webkit-scrollbar-track { background: var(--c-line-soft); border-radius: 2px; }
.team__scroll::-webkit-scrollbar-thumb { background: var(--c-accent); border-radius: 2px; }

.member {
    flex: 0 0 280px; scroll-snap-align: start; cursor: pointer;
    display: flex; flex-direction: column;
    transition: transform 0.4s var(--ease);
}
.member:hover { transform: translateY(-6px); }
.member__photo {
    aspect-ratio: 3 / 4; border-radius: var(--radius-lg); overflow: hidden;
    background: var(--c-bg-warm); margin-bottom: 18px; position: relative;
}
.member__photo img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
    transition: transform 1.2s var(--ease-out), filter 0.6s var(--ease);
    filter: grayscale(0.1) contrast(1.02);
}
.member:hover .member__photo img { transform: scale(1.06); filter: grayscale(0); }
.member__photo::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(42, 28, 22, 0.4) 100%);
    opacity: 0.6; transition: opacity 0.4s var(--ease);
}
.member:hover .member__photo::after { opacity: 0.85; }
.member__num {
    position: absolute; top: 14px; left: 16px;
    font-family: var(--f-display); font-style: italic;
    font-size: 13px; color: var(--c-bg); z-index: 2;
}
.member__view {
    position: absolute; bottom: 16px; right: 16px;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--c-bg); background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 12px; border-radius: 999px;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); z-index: 2;
}
.member:hover .member__view { opacity: 1; transform: translateY(0); }
.member__name { font-family: var(--f-display); font-size: 22px; font-weight: 400; letter-spacing: -0.01em; margin-bottom: 4px; }
.member__role { font-size: 13px; color: var(--c-muted); letter-spacing: 0.02em; }
.member__exp { font-family: var(--f-display); font-style: italic; font-size: 13px; color: var(--c-accent-deep); margin-top: 8px; }

/* ============ MEMBER MODAL ============ */
.modal {
    position: fixed; inset: 0; z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: 24px; opacity: 0; visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.modal.open { opacity: 1; visibility: visible; }
.modal__overlay {
    position: absolute; inset: 0;
    background: rgba(42, 28, 22, 0.7); backdrop-filter: blur(8px);
}
.modal__content {
    position: relative; background: var(--c-bg);
    border-radius: var(--radius-lg); max-width: 880px; width: 100%;
    max-height: 90vh; overflow: hidden;
    display: grid; grid-template-columns: 1fr 1.2fr;
    transform: translateY(40px) scale(0.96);
    transition: transform 0.5s var(--ease-out);
}
.modal.open .modal__content { transform: translateY(0) scale(1); }
.modal__close {
    position: absolute; top: 16px; right: 16px;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(251, 247, 243, 0.95); color: var(--c-ink);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; line-height: 1; z-index: 5;
    transition: all 0.3s var(--ease);
}
.modal__close:hover { background: var(--c-ink); color: var(--c-bg); transform: rotate(90deg); }
.modal__photo { background: var(--c-bg-warm); overflow: hidden; }
.modal__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.modal__info { padding: 44px 44px 40px; overflow-y: auto; }
.modal__eyebrow { margin-bottom: 16px; }
.modal__name { font-family: var(--f-display); font-size: 36px; font-weight: 400; line-height: 1.05; letter-spacing: -0.015em; margin-bottom: 6px; }
.modal__role { font-family: var(--f-display); font-style: italic; font-size: 17px; color: var(--c-accent-deep); margin-bottom: 28px; }
.modal__bio { font-size: 15px; line-height: 1.65; color: var(--c-ink-soft); margin-bottom: 28px; }
.modal__section { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--c-line); }
.modal__section:last-of-type { border-bottom: none; }
.modal__section h4 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-accent-deep); margin-bottom: 10px; font-weight: 600; }
.modal__section ul { display: flex; flex-direction: column; gap: 6px; }
.modal__section li { font-size: 14px; color: var(--c-ink-soft); line-height: 1.5; padding-left: 16px; position: relative; }
.modal__section li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 1px; background: var(--c-accent); }
.modal__cta { margin-top: 12px; width: 100%; justify-content: center; }

/* ============ GALLERY ============ */
.gallery { background: var(--c-bg-warm); }
.gallery__grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 100px; gap: 16px; }
.gallery__item {
    overflow: hidden; border-radius: var(--radius-lg);
    background: var(--c-bg-deep); position: relative;
}
.gallery__item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.4s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.06); }
.g1 { grid-column: span 5; grid-row: span 5; }
.g2 { grid-column: span 4; grid-row: span 3; }
.g3 { grid-column: span 3; grid-row: span 3; }
.g4 { grid-column: span 4; grid-row: span 2; }
.g5 { grid-column: span 3; grid-row: span 2; }
.g6 { grid-column: span 5; grid-row: span 3; }
.g7 { grid-column: span 4; grid-row: span 3; }
.g8 { grid-column: span 3; grid-row: span 3; }

/* ============ CONTACT / FORM ============ */
.contact { background: var(--c-ink); color: var(--c-bg); position: relative; overflow: hidden; }
.contact::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201, 131, 107, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.contact .eyebrow { color: var(--c-accent-light); }
.contact .eyebrow::before { background: var(--c-accent-light); }
.contact__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; position: relative; }
.contact__left h2 {
    font-family: var(--f-display); font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 300; line-height: 1.05; letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.contact__left h2 em { font-style: italic; color: var(--c-accent-light); }
.contact__lead { font-size: 15px; line-height: 1.55; color: rgba(251, 247, 243, 0.75); margin-bottom: 28px; max-width: 520px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.ci-item { display: flex; flex-direction: column; gap: 2px; padding-top: 14px; border-top: 1px solid rgba(251, 247, 243, 0.12); }
.ci-item__label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(251, 247, 243, 0.5); }
.ci-item__value { font-size: 16px; font-weight: 500; color: var(--c-bg); }
.ci-item__value a { transition: color 0.3s var(--ease); }
.ci-item__value a:hover { color: var(--c-accent-light); }
.ci-item__sub { font-size: 13px; color: rgba(251, 247, 243, 0.6); margin-top: 2px; }

.form-card {
    background: rgba(251, 247, 243, 0.04);
    border: 1px solid rgba(251, 247, 243, 0.14);
    border-radius: var(--radius-lg);
    padding: 44px 40px; backdrop-filter: blur(20px);
}
.form-card h3 { font-family: var(--f-display); font-size: 30px; font-weight: 400; margin-bottom: 12px; line-height: 1.15; }
.form-card h3 em { font-style: italic; color: var(--c-accent-light); }
.form-card p { color: rgba(251, 247, 243, 0.65); font-size: 14px; margin-bottom: 32px; line-height: 1.55; }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(251, 247, 243, 0.55); margin-bottom: 10px; }
.field input, .field textarea {
    width: 100%; background: transparent; border: none;
    border-bottom: 1px solid rgba(251, 247, 243, 0.2);
    padding: 10px 0; color: var(--c-bg); font-family: inherit; font-size: 15px;
    transition: border-color 0.3s var(--ease); border-radius: 0;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(251, 247, 243, 0.3); }
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--c-accent-light); }
.field textarea { resize: vertical; min-height: 70px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 16px; background: var(--c-accent); color: var(--c-bg); }
.form-card .btn:hover { background: var(--c-accent-light); color: var(--c-ink); }
.form-note { font-size: 12px; color: rgba(251, 247, 243, 0.4); margin-top: 16px; text-align: center; font-style: italic; font-family: var(--f-display); }

/* ============ BREADCRUMBS ============ */
.breadcrumbs {
    padding-top: calc(var(--header-h) + 32px); padding-bottom: 0;
    font-size: 12px; letter-spacing: 0.1em;
    color: var(--c-muted); text-transform: uppercase;
}
.breadcrumbs__inner { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a { transition: color 0.3s var(--ease); }
.breadcrumbs a:hover { color: var(--c-accent-deep); }
.breadcrumbs__sep { color: var(--c-line); font-family: var(--f-display); font-style: italic; }
.breadcrumbs__current { color: var(--c-ink); }

/* ============ PROCEDURE HERO ============ */
.proc-hero { padding: 48px 0 clamp(60px, 8vw, 110px); background: var(--c-bg); position: relative; }
.proc-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.proc-hero__cat { font-family: var(--f-display); font-style: italic; font-size: 16px; color: var(--c-accent-deep); margin-bottom: 24px; }
.proc-hero__title { font-size: clamp(56px, 9vw, 132px); font-weight: 300; line-height: 0.95; letter-spacing: -0.035em; margin-bottom: 16px; }
.proc-hero__title em { font-style: italic; color: var(--c-accent-deep); font-weight: 300; }
.proc-hero__tagline { font-family: var(--f-display); font-style: italic; font-size: clamp(20px, 2.4vw, 28px); color: var(--c-ink-soft); font-weight: 300; margin-bottom: 32px; }
.proc-hero__lead { font-size: 17px; line-height: 1.65; color: var(--c-ink-soft); margin-bottom: 40px; max-width: 480px; }
.proc-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.proc-hero__photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; background: var(--c-bg-warm); }
.proc-hero__photo img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
    animation: photoZoomIn 1.6s var(--ease-out) 0.3s both;
}
@keyframes photoZoomIn { from { transform: scale(1.1); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.proc-hero__badge {
    position: absolute; top: 24px; right: 24px;
    background: rgba(251, 247, 243, 0.92); backdrop-filter: blur(10px);
    padding: 12px 18px; border-radius: 999px;
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--c-ink); font-weight: 600;
    display: flex; align-items: center; gap: 8px;
}
.proc-hero__badge::before { content: ''; width: 6px; height: 6px; background: var(--c-accent); border-radius: 50%; }

/* ============ STATS ============ */
.stats { background: var(--c-ink); color: var(--c-bg); padding: 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(251, 247, 243, 0.08); }
.stats__cell {
    background: var(--c-ink); padding: 36px 28px;
    display: flex; flex-direction: column; gap: 8px;
    transition: background 0.4s var(--ease);
}
.stats__cell:hover { background: rgba(251, 247, 243, 0.04); }
.stats__num { font-family: var(--f-display); font-size: clamp(36px, 4.5vw, 56px); font-weight: 300; line-height: 1; color: var(--c-bg); letter-spacing: -0.02em; }
.stats__num em { font-style: italic; color: var(--c-accent-light); }
.stats__num small { font-size: 0.5em; color: var(--c-accent-light); font-weight: 400; margin-left: 4px; }
.stats__label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(251, 247, 243, 0.55); }

/* ============ ABOUT (split) ============ */
.about { background: var(--c-bg-warm); }
.about__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about__text h2 { font-family: var(--f-display); font-size: clamp(36px, 5vw, 64px); font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; margin: 18px 0 28px; }
.about__text h2 em { font-style: italic; color: var(--c-accent-deep); }
.about__text p { font-size: 16px; line-height: 1.7; color: var(--c-ink-soft); margin-bottom: 24px; }
.about__highlights { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--c-line); }
.about__highlights li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--c-ink-soft); }
.about__highlights li::before { content: ''; flex: 0 0 auto; width: 8px; height: 8px; border-radius: 50%; background: var(--c-accent); margin-top: 8px; }
.about__photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; position: relative; }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============ INDICATIONS ============ */
.indications { background: var(--c-bg); }
.indications__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--c-line); border: 1px solid var(--c-line);
    border-radius: var(--radius-lg); overflow: hidden;
}
.ind-card { background: var(--c-bg); padding: 36px 32px 40px; display: flex; flex-direction: column; transition: background 0.4s var(--ease); min-height: 220px; }
.ind-card:hover { background: var(--c-bg-rose); }
.ind-card__num { font-family: var(--f-display); font-style: italic; font-size: 14px; color: var(--c-accent-deep); margin-bottom: 24px; }
.ind-card__title { font-family: var(--f-display); font-size: 22px; font-weight: 400; margin-bottom: 12px; letter-spacing: -0.015em; line-height: 1.15; }
.ind-card__desc { font-size: 14px; color: var(--c-muted); line-height: 1.6; }

/* ============ TIMELINE ============ */
.timeline { background: var(--c-bg-warm); }
.timeline__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.timeline__list::before {
    content: ''; position: absolute; top: 36px;
    left: 36px; right: 36px; height: 1px; background: var(--c-line);
}
.step { position: relative; padding: 0 16px 0 0; }
.step__num {
    font-family: var(--f-display); font-size: 18px;
    color: var(--c-bg); background: var(--c-accent);
    width: 72px; height: 72px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px; position: relative; z-index: 2;
    border: 8px solid var(--c-bg-warm);
}
.step__title { font-family: var(--f-display); font-size: 22px; font-weight: 400; margin-bottom: 12px; letter-spacing: -0.015em; }
.step__desc { font-size: 14px; color: var(--c-muted); line-height: 1.6; }
.step__time { display: inline-block; font-family: var(--f-display); font-style: italic; font-size: 13px; color: var(--c-accent-deep); margin-top: 10px; }

/* ============ BEFORE / AFTER ============ */
.results { background: var(--c-bg); }
.results__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ba-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 4 / 5; background: var(--c-bg-warm); }
.ba-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.ba-card:hover img { transform: scale(1.04); }
.ba-card__label {
    position: absolute; top: 20px; left: 20px;
    background: rgba(251, 247, 243, 0.92); backdrop-filter: blur(8px);
    padding: 8px 16px; border-radius: 999px;
    font-family: var(--f-display); font-style: italic; font-size: 14px; color: var(--c-ink);
}
.results__note {
    margin-top: 28px; padding: 16px 24px;
    background: var(--c-bg-warm); border-left: 2px solid var(--c-accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 13px; color: var(--c-muted); font-style: italic; font-family: var(--f-display);
}

/* ============ PRICING ============ */
.pricing { background: var(--c-ink); color: var(--c-bg); }
.pricing .eyebrow { color: var(--c-accent-light); }
.pricing .eyebrow::before { background: var(--c-accent-light); }
.pricing__card {
    max-width: 880px; margin: 0 auto;
    background: rgba(251, 247, 243, 0.04);
    border: 1px solid rgba(251, 247, 243, 0.14);
    border-radius: var(--radius-lg);
    padding: clamp(40px, 5vw, 64px); backdrop-filter: blur(20px);
}
.pricing__title { font-family: var(--f-display); font-size: clamp(36px, 5vw, 56px); font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; margin: 18px 0 32px; }
.pricing__title em { font-style: italic; color: var(--c-accent-light); }
.pricing__list { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; }
.price-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 18px 0; border-bottom: 1px dashed rgba(251, 247, 243, 0.16); gap: 24px;
}
.price-row:last-child { border-bottom: none; }
.price-row__name { font-size: 15px; color: rgba(251, 247, 243, 0.92); flex: 1; }
.price-row__amount { font-family: var(--f-display); font-size: 22px; font-weight: 400; color: var(--c-bg); white-space: nowrap; }
.price-row__amount em { font-style: italic; color: var(--c-accent-light); font-size: 0.7em; margin-left: 4px; font-weight: 400; }
.pricing__cta {
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px; flex-wrap: wrap;
    padding-top: 28px; border-top: 1px solid rgba(251, 247, 243, 0.14);
}
.pricing__note { font-size: 13px; color: rgba(251, 247, 243, 0.55); font-family: var(--f-display); font-style: italic; max-width: 380px; }
.pricing__group-title {
    font-family: var(--f-display); font-style: italic; font-size: 18px;
    color: var(--c-accent-light); margin: 24px 0 8px;
    padding-top: 18px; border-top: 1px solid rgba(251, 247, 243, 0.16);
}
.pricing__group-title:first-child { padding-top: 0; border-top: none; margin-top: 0; }

/* ============ CARE (contra/aftercare) ============ */
.care { background: var(--c-bg); }
.care__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: var(--c-line); border: 1px solid var(--c-line);
    border-radius: var(--radius-lg); overflow: hidden;
}
.care__col { background: var(--c-bg); padding: clamp(32px, 4vw, 48px); }
.care__col h3 { font-family: var(--f-display); font-size: 28px; font-weight: 400; line-height: 1.15; letter-spacing: -0.015em; margin-bottom: 8px; }
.care__col h3 em { font-style: italic; color: var(--c-accent-deep); }
.care__col-desc { font-size: 14px; color: var(--c-muted); margin-bottom: 28px; line-height: 1.6; }
.care__list { display: flex; flex-direction: column; gap: 4px; }
.care__list li {
    display: flex; gap: 16px; padding: 14px 0;
    border-bottom: 1px dashed var(--c-line); font-size: 15px;
    color: var(--c-ink-soft); line-height: 1.5;
}
.care__list li:last-child { border-bottom: none; }
.care__list li::before { content: '—'; color: var(--c-accent); flex: 0 0 auto; }

/* ============ FAQ ============ */
.faq { background: var(--c-bg-warm); }
.faq__list { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-item:first-child { border-top: 1px solid var(--c-line); }
.faq-item__q {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; padding: 26px 0;
    font-family: var(--f-display); font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 400; line-height: 1.3; color: var(--c-ink);
    text-align: left; letter-spacing: -0.015em;
    transition: color 0.3s var(--ease); gap: 20px;
}
.faq-item__q:hover { color: var(--c-accent-deep); }
.faq-item__icon { flex: 0 0 auto; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; position: relative; }
.faq-item__icon::before, .faq-item__icon::after { content: ''; position: absolute; background: var(--c-ink-soft); transition: all 0.4s var(--ease); }
.faq-item__icon::before { width: 14px; height: 1.5px; }
.faq-item__icon::after { width: 1.5px; height: 14px; }
.faq-item.open .faq-item__icon::before { background: var(--c-accent-deep); }
.faq-item.open .faq-item__icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out); }
.faq-item.open .faq-item__a { max-height: 600px; }
.faq-item__a-inner { padding: 0 0 28px; font-size: 16px; line-height: 1.7; color: var(--c-ink-soft); max-width: 720px; }

/* ============ RELATED PROCEDURES ============ */
.related { background: var(--c-bg); }
.related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related .feat-card__body { padding: 28px 28px 32px; }
.related .feat-card__title { font-size: 26px; }

/* ============ FINAL CTA ============ */
.final-cta { background: var(--c-bg-warm); position: relative; overflow: hidden; }
.final-cta::before {
    content: ''; position: absolute; top: -100px; right: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--c-bg-rose) 0%, transparent 70%);
    opacity: 0.6; pointer-events: none;
}
.final-cta__inner { text-align: center; max-width: 760px; margin: 0 auto; position: relative; }
.final-cta__inner h2 { font-family: var(--f-display); font-size: clamp(40px, 6vw, 80px); font-weight: 300; line-height: 1.0; letter-spacing: -0.025em; margin: 24px 0 24px; }
.final-cta__inner h2 em { font-style: italic; color: var(--c-accent-deep); }
.final-cta__inner p { font-size: 17px; line-height: 1.6; color: var(--c-ink-soft); margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.final-cta__inner .eyebrow { display: inline-flex; }
.final-cta__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============ SUBGROUPS (group page tabs) ============ */
.subgroups { background: var(--c-bg-warm); }
.subgroups__nav {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 48px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--c-line);
}
.subgroup-tab {
    padding: 12px 22px; border: 1px solid var(--c-line);
    background: var(--c-bg); border-radius: 999px;
    font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
    color: var(--c-ink-soft);
    transition: all 0.3s var(--ease);
    cursor: pointer;
}
.subgroup-tab:hover { border-color: var(--c-accent); color: var(--c-accent-deep); }
.subgroup-tab.active {
    background: var(--c-ink); color: var(--c-bg); border-color: var(--c-ink);
}
.subgroups__panels { position: relative; min-height: 400px; }
.subgroup-panel {
    display: none;
    opacity: 0;
    animation: panelIn 0.5s var(--ease-out) forwards;
}
.subgroup-panel.active { display: grid; }
@keyframes panelIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.subgroup-panel {
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}
.subgroup-panel__photo {
    border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 4 / 5; background: var(--c-bg);
}
.subgroup-panel__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.subgroup-panel__num { font-family: var(--f-display); font-style: italic; font-size: 14px; color: var(--c-accent-deep); margin-bottom: 18px; }
.subgroup-panel__title {
    font-family: var(--f-display); font-size: clamp(32px, 4vw, 52px);
    font-weight: 300; line-height: 1.05; letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.subgroup-panel__title em { font-style: italic; color: var(--c-accent-deep); }
.subgroup-panel__lead { font-size: 16px; line-height: 1.65; color: var(--c-ink-soft); margin-bottom: 24px; }
.subgroup-panel__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; padding-top: 24px; border-top: 1px solid var(--c-line); }
.subgroup-panel__list li { font-size: 14px; color: var(--c-ink-soft); display: flex; gap: 12px; align-items: flex-start; line-height: 1.55; }
.subgroup-panel__list li::before { content: ''; flex: 0 0 auto; width: 6px; height: 6px; background: var(--c-accent); border-radius: 50%; margin-top: 8px; }
.subgroup-panel__cta { display: inline-flex; gap: 12px; flex-wrap: wrap; }
.subgroup-panel__price {
    font-family: var(--f-display); font-style: italic; font-size: 17px;
    color: var(--c-accent-deep); margin-bottom: 24px;
}
.subgroup-panel__price strong { font-style: normal; font-weight: 400; color: var(--c-ink); font-size: 22px; }

/* ============ FOOTER ============ */
.footer {
    background: var(--c-ink); color: var(--c-bg);
    border-top: 1px solid rgba(251, 247, 243, 0.08);
    padding: 60px 0 40px;
}
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer__brand .logo { color: var(--c-bg); margin-bottom: 16px; }
.footer__brand p { font-size: 14px; color: rgba(251, 247, 243, 0.55); line-height: 1.6; max-width: 320px; }
.footer__col h4 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-accent-light); margin-bottom: 20px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: rgba(251, 247, 243, 0.7); transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--c-accent-light); }
.footer__bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 28px; border-top: 1px solid rgba(251, 247, 243, 0.08);
    font-size: 12px; color: rgba(251, 247, 243, 0.4); letter-spacing: 0.04em;
}

/* ============ FLOATING WHATSAPP ============ */
.wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 90;
    width: 60px; height: 60px;
    background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5); }
.wa-float::before {
    content: ''; position: absolute; inset: -4px;
    border-radius: 50%; background: #25D366; opacity: 0.3;
    animation: pulseWA 2.5s ease-in-out infinite; z-index: -1;
}
@keyframes pulseWA {
    0%, 100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.3); opacity: 0.4; }
}
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ============ ANIMATIONS ============ */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.48s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.56s; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .featured__grid { grid-template-columns: 1fr 1fr; }
    .featured__grid > :nth-child(3) { grid-column: 1 / -1; max-width: 600px; }
    .related__grid { grid-template-columns: 1fr 1fr; }
    .related__grid > :nth-child(3) { grid-column: 1 / -1; max-width: 600px; margin: 0 auto; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .indications__grid { grid-template-columns: repeat(2, 1fr); }
    .timeline__list { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
    .timeline__list::before { display: none; }
    .footer__inner { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer__col:nth-child(4) { display: none; }
    .modal__content { grid-template-columns: 1fr; max-height: 92vh; }
    .modal__photo { aspect-ratio: 16 / 9; }
}
@media (max-width: 860px) {
    :root { --header-h: 68px; }
    .nav, .lang-switch, .header .btn { display: none; }
    .menu-toggle { display: block; }
    .hero { padding-top: calc(var(--header-h) + 24px); padding-bottom: 50px; }
    .hero__grid { grid-template-columns: 1fr; gap: 32px; }
    .hero__meta { justify-self: start; text-align: left; max-width: 100%; }
    .hero__ctas { justify-content: flex-start; }
    .hero__deco { display: none; }
    .marquee__item { font-size: 18px; gap: 32px; }
    .marquee__track { gap: 32px; }
    .breadcrumbs { padding-top: calc(var(--header-h) + 24px); }
    .proc-hero__grid { grid-template-columns: 1fr; gap: 36px; }
    .proc-hero__photo { aspect-ratio: 4 / 4; }
    .stats__grid { grid-template-columns: 1fr 1fr; }
    .stats__cell { padding: 28px 22px; }
    .section-head { grid-template-columns: 1fr; gap: 24px; }
    .featured__grid { grid-template-columns: 1fr; }
    .featured__grid > * { grid-column: auto; max-width: 100%; }
    .related__grid { grid-template-columns: 1fr; }
    .related__grid > * { grid-column: auto; max-width: 100%; }
    .services__cats { grid-template-columns: 1fr; }
    .team__head-row { flex-direction: column; align-items: stretch; }
    .team__nav { justify-content: flex-end; }
    .member { flex: 0 0 240px; }
    .gallery__grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 80px; }
    .g1 { grid-column: span 6; grid-row: span 4; }
    .g2 { grid-column: span 3; grid-row: span 3; }
    .g3 { grid-column: span 3; grid-row: span 3; }
    .g4 { grid-column: span 6; grid-row: span 2; }
    .g5 { grid-column: span 3; grid-row: span 2; }
    .g6 { grid-column: span 3; grid-row: span 2; }
    .g7 { grid-column: span 6; grid-row: span 3; }
    .g8 { grid-column: span 6; grid-row: span 2; }
    .contact__grid { grid-template-columns: 1fr; gap: 60px; }
    .about__grid { grid-template-columns: 1fr; gap: 40px; }
    .indications__grid { grid-template-columns: 1fr; }
    .timeline__list { grid-template-columns: 1fr; gap: 32px; }
    .results__grid { grid-template-columns: 1fr; }
    .care__grid { grid-template-columns: 1fr; }
    .pricing__cta { flex-direction: column; align-items: stretch; }
    .pricing__cta .btn { justify-content: center; }
    .subgroup-panel { grid-template-columns: 1fr; gap: 32px; }
    .subgroups__nav { gap: 6px; }
    .subgroup-tab { padding: 10px 18px; font-size: 12px; }
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer__brand { grid-column: 1 / -1; }
    .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
    section { padding: 80px 0; }
    section.proc-section { padding: 70px 0; }
    .modal__info { padding: 32px 24px; }
    .modal__name { font-size: 30px; }
}
@media (max-width: 480px) {
    .cat { padding: 32px 24px; }
    .form-card { padding: 32px 24px; }
    .pricing__card { padding: 32px 24px; }
    .care__col { padding: 32px 24px; }
    .wa-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
    .member { flex: 0 0 220px; }
    .price-row { flex-wrap: wrap; gap: 8px; }
    .team__grid { grid-template-columns: 1fr 1fr; }
}
