@charset "UTF-8";
/* =============================================================
   DOKTOR — Clinical Lumen
   Aydınlık ivory + sage mint klinik + titanyum altın mikro-vurgu.
   Doktor ve diş hekimi klinikleri için ödüllü tasarım sistemi.
   ============================================================= */

/* ---------- TOKENS ---------- */
:root {
    /* Surface */
    --bg:           #F8F5EF;
    --bg-warm:      #FBF8F2;
    --surface:      #FFFFFF;
    --surface-2:    #FCF9F2;

    /* Mint scale (clinical sage) */
    --mint-50:      #F1F7F5;
    --mint-100:     #DCEDE7;
    --mint-200:     #C5DED5;
    --mint-300:     #8EC8BC;
    --mint-400:     #6BB3A4;
    --mint-500:     #4FA294;
    --mint-600:     #3E8A7D;
    --mint-700:     #2D6B61;
    --mint-800:     #1E4F47;
    --mint-900:     #173834;
    --mint-950:     #0E2A2E;

    /* Ink */
    --ink:          #0E2A2E;
    --ink-soft:     #4A6770;
    --muted:        #8A9794;

    /* Warm accents */
    --line:         #EAE0CB;
    --line-strong:  #D9CCAE;
    --line-soft:    rgba(14, 42, 46, 0.06);
    --gold:         #C9A961;
    --gold-soft:    #E4D5A3;
    --gold-deep:    #A8862C;
    --rose:         #E8B4A8;
    --rose-soft:    #F4D8D0;

    /* Semantic mapping */
    --primary:        var(--mint-600);
    --primary-strong: var(--mint-700);
    --accent:         var(--gold);
    --danger:         #BB5A45;

    /* Shadows */
    --shadow-xs:  0 1px 2px rgba(14, 42, 46, 0.04);
    --shadow-sm:  0 4px 14px rgba(14, 42, 46, 0.05);
    --shadow-md:  0 18px 40px rgba(14, 42, 46, 0.08);
    --shadow-lg:  0 32px 80px rgba(14, 42, 46, 0.12);
    --shadow-mint:0 22px 50px rgba(79, 162, 148, 0.22);

    /* Gradients */
    --mint-gradient:  linear-gradient(135deg, #2D6B61 0%, #173834 100%);
    --mint-soft-grad: linear-gradient(135deg, #ECF5F2 0%, #DCEDE7 100%);
    --gold-gradient:  linear-gradient(135deg, #E4D5A3 0%, #C9A961 50%, #A8862C 100%);
    --warm-grad:      linear-gradient(180deg, #F8F5EF 0%, #FBF8F2 100%);

    /* Radii */
    --r-xs:  6px;
    --r-sm:  10px;
    --r-md:  16px;
    --r-lg:  24px;
    --r-xl:  36px;
    --r-pill: 999px;

    /* Layout */
    --container:        1240px;
    --container-narrow: 880px;
    --gutter:           clamp(20px, 4vw, 56px);
    --section-pad:      clamp(72px, 8vw, 128px);

    /* Type */
    --serif:   "Fraunces", "Cormorant Garamond", Georgia, serif;
    --display: "Fraunces", "Playfair Display", Georgia, serif;
    --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --mono:    "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;

    --t-fast:   180ms cubic-bezier(0.22, 1, 0.36, 1);
    --t:        320ms cubic-bezier(0.22, 1, 0.36, 1);
    --t-slow:   620ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(900px 600px at 90% -10%, rgba(220, 237, 231, 0.65), transparent 60%),
        radial-gradient(700px 500px at -10% 110%, rgba(232, 180, 168, 0.18), transparent 60%);
}
main, header, footer, section { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--primary-strong); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

h1, h2, h3, h4 {
    font-family: var(--display);
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 .4em;
    letter-spacing: -0.012em;
    line-height: 1.08;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: .01em; }
h1 em, h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--primary);
    position: relative;
}
p  { margin: 0 0 1em; color: var(--ink-soft); }
::selection { background: var(--mint-200); color: var(--ink); }

.mono {
    font-family: var(--mono);
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink-soft);
}

/* ---------- ACCESSIBILITY ---------- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--ink);
    color: var(--surface);
    padding: 10px 16px;
    border-radius: var(--r-sm);
    z-index: 9999;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- LAYOUT PRIMITIVES ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}
.container.narrow { max-width: var(--container-narrow); }

.section {
    padding-top: var(--section-pad);
    padding-bottom: var(--section-pad);
    position: relative;
}
.section.tinted { background: var(--mint-50); }
.section.tinted.soft { background: var(--bg-warm); }

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.section-heading.align-left { text-align: left; margin-left: 0; max-width: 640px; }
.section-heading p {
    font-family: var(--serif);
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    font-style: italic;
    color: var(--ink-soft);
    max-width: 580px;
    margin: 14px auto 0;
}
.section-heading.align-left p { margin-left: 0; }
.section-heading.with-action {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    text-align: left;
    max-width: none;
    margin-bottom: 56px;
}
.section-heading.with-action > div { max-width: 640px; }

/* ---------- EYEBROW ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}
.eyebrow .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.18);
}
.eyebrow.light { color: rgba(255, 255, 255, 0.85); }
.eyebrow.light .dot { background: var(--gold-soft); box-shadow: 0 0 0 4px rgba(228, 213, 163, 0.22); }

.lede {
    font-family: var(--serif);
    font-size: clamp(1.1rem, 1.4vw, 1.25rem);
    line-height: 1.6;
    color: var(--ink-soft);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    font-family: var(--sans);
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .01em;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: transform var(--t-fast), box-shadow var(--t), background var(--t), color var(--t);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; stroke-width: 1.8; }
.btn-primary {
    background: var(--mint-gradient);
    color: var(--surface);
    box-shadow: var(--shadow-mint);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 60px rgba(45, 107, 97, 0.28);
    color: var(--surface);
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
    background: var(--ink);
    color: var(--surface);
    border-color: var(--ink);
}
.btn-gold {
    background: var(--gold-gradient);
    color: var(--ink);
    box-shadow: 0 18px 36px rgba(168, 134, 44, 0.30);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 50px rgba(168, 134, 44, 0.40);
    color: var(--ink);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--primary-strong);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color var(--t-fast), gap var(--t-fast);
}
.text-link svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.text-link:hover { gap: 12px; border-bottom-color: var(--primary); }
.text-link:hover svg { transform: translateX(2px); }

/* ---------- HEADER ---------- */
.site-header {
    position: sticky;
    top: 0;
    left: 0; right: 0;
    z-index: 90;
    background: rgba(248, 245, 239, 0.85);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: background var(--t), border-color var(--t), padding var(--t);
}
.site-header.is-scrolled {
    background: rgba(248, 245, 239, 0.95);
    border-bottom-color: var(--line-soft);
}
.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 18px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: padding var(--t);
}
.site-header.is-scrolled .header-inner { padding: 12px var(--gutter); }
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-mark {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--mint-gradient);
    color: var(--surface);
    display: inline-grid;
    place-items: center;
    box-shadow: var(--shadow-sm);
}
.brand-text strong {
    display: block;
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    color: var(--ink);
    line-height: 1.1;
}
.brand-text small {
    display: block;
    font-size: .72rem;
    color: var(--muted);
    margin-top: 2px;
    letter-spacing: .02em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.site-nav a {
    color: var(--ink-soft);
    font-size: .92rem;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
}
.site-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--t);
}
.site-nav a:not(.nav-cta):hover { color: var(--ink); }
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--ink);
    color: var(--surface) !important;
    border-radius: var(--r-pill);
    font-size: .85rem;
    font-weight: 500;
    transition: background var(--t), transform var(--t-fast);
}
.nav-cta:hover { background: var(--primary-strong); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.nav-cta svg { width: 16px; height: 16px; }

.lang-switch { display: inline-flex; gap: 4px; font-family: var(--mono); font-size: .7rem; }
.lang-switch a {
    padding: 4px 8px;
    border-radius: var(--r-xs);
    color: var(--muted);
    border: 1px solid var(--line);
}
.lang-switch a::after { display: none !important; }
.lang-switch a.is-active { background: var(--ink); color: var(--surface); border-color: var(--ink); }

.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--line);
    transition: background var(--t-fast);
}
.nav-toggle span {
    display: block;
    width: 18px; height: 1.5px;
    background: var(--ink);
    transition: transform var(--t-fast), opacity var(--t-fast);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: clamp(60px, 8vw, 110px) var(--gutter) clamp(80px, 10vw, 140px);
    overflow: hidden;
    max-width: var(--container);
    margin: 0 auto;
}
.hero-blob {
    position: absolute;
    top: -10%;
    right: -15%;
    width: 90%;
    height: 130%;
    z-index: 0;
    opacity: .9;
    pointer-events: none;
    animation: blob-float 14s ease-in-out infinite alternate;
}
.hero-blob svg { width: 100%; height: 100%; }
@keyframes blob-float {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    100% { transform: translate(-2%, 1%) rotate(-3deg) scale(1.04); }
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.hero-copy { max-width: 580px; }
.hero-copy h1 {
    margin-bottom: 20px;
}
.hero-copy h1 em::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0.06em;
    height: 0.18em;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 97, 0.35) 50%, transparent 100%);
    z-index: -1;
}
.hero-subtitle {
    font-family: var(--serif);
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0 0 32px;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 56px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 2vw, 28px);
    padding-top: 32px;
    border-top: 1px solid var(--line);
}
.hero-stats .stat strong {
    display: block;
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    color: var(--primary-strong);
    line-height: 1;
    margin-bottom: 6px;
}
.hero-stats .stat span {
    display: block;
    font-size: .78rem;
    color: var(--ink-soft);
    letter-spacing: .01em;
}

/* Hero visual / portrait */
.hero-visual { position: relative; }
.portrait {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--mint-100);
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}
.portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform var(--t-slow);
}
.portrait:hover img { transform: scale(1.06); }
.portrait-badge {
    position: absolute;
    bottom: 22px; left: 22px;
    right: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-radius: var(--r-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
}
.portrait-badge .ring {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--mint-50);
    color: var(--primary-strong);
    border: 2px solid var(--gold-soft);
}
.portrait-badge svg { width: 20px; height: 20px; stroke-width: 1.8; }
.portrait-badge strong {
    display: block;
    font-size: .82rem;
    color: var(--ink);
    letter-spacing: .04em;
    font-weight: 600;
    margin-bottom: 2px;
}
.portrait-badge span {
    display: block;
    font-size: .72rem;
    color: var(--muted);
}
.portrait-caption {
    position: absolute;
    top: 22px; left: 22px;
    color: var(--surface);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.portrait-caption .mono { color: rgba(255, 255, 255, 0.85); display: block; margin-bottom: 4px; }
.portrait-caption strong {
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--surface);
}

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: .68rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    animation: bob 2.4s ease-in-out infinite;
}
.hero-scroll svg { width: 14px; height: 14px; }
@keyframes bob {
    0%, 100% { transform: translate(-50%, 0); opacity: .7; }
    50%      { transform: translate(-50%, 6px); opacity: 1; }
}

/* ---------- SPLIT SECTION (about) ---------- */
.split {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: clamp(40px, 6vw, 88px);
    align-items: center;
}
.split-media {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}
.split-media img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.split-tag {
    position: absolute;
    top: 22px; left: 22px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    padding: 8px 14px;
    border-radius: var(--r-pill);
    backdrop-filter: blur(6px);
}
.split-copy h2 { margin-bottom: 24px; }
.check-list {
    list-style: none;
    padding: 0;
    margin: 28px 0;
    display: grid;
    gap: 14px;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--ink);
    font-size: 1rem;
}
.check-list .check {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--mint-100);
    color: var(--primary-strong);
    display: grid;
    place-items: center;
    margin-top: 2px;
}
.check-list .check svg { width: 14px; height: 14px; stroke-width: 2.5; }
.signature {
    margin-top: 28px;
    font-family: var(--display);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--accent);
}

/* ---------- SERVICES ---------- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 36px 30px 32px;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    overflow: hidden;
    isolation: isolate;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 120%; height: 4px;
    background: var(--mint-gradient);
    transform: translateX(100%);
    transition: transform var(--t-slow);
    z-index: 1;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--mint-200);
}
.service-card:hover::before { transform: translateX(0); }
.service-icon {
    display: inline-grid;
    place-items: center;
    width: 56px; height: 56px;
    border-radius: var(--r-md);
    background: var(--mint-soft-grad);
    color: var(--primary-strong);
    margin-bottom: 22px;
    transition: transform var(--t);
}
.service-icon svg { width: 26px; height: 26px; stroke-width: 1.6; }
.service-card:hover .service-icon { transform: rotate(-4deg) scale(1.05); }
.service-card h3 { margin: 0 0 10px; }
.service-card p { color: var(--ink-soft); margin: 0; font-size: .96rem; }
.service-arrow {
    position: absolute;
    top: 32px; right: 28px;
    opacity: 0;
    color: var(--primary);
    transition: opacity var(--t), transform var(--t);
}
.service-arrow svg { width: 22px; height: 22px; }
.service-card:hover .service-arrow { opacity: 1; transform: translate(4px, -4px); }

/* ---------- PRODUCTS ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.product-card {
    background: var(--surface);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform var(--t), box-shadow var(--t);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.product-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--mint-50);
}
.product-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.product-card:hover .product-media img { transform: scale(1.05); }
.product-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    padding: 6px 12px;
    border-radius: var(--r-pill);
    backdrop-filter: blur(6px);
    border: 1px solid var(--line);
}
.product-body {
    padding: 26px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-body h3 { margin: 0 0 10px; }
.product-body p { color: var(--ink-soft); flex: 1; }
.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-strong);
    font-weight: 500;
    font-size: .92rem;
    margin-top: 8px;
}
.product-link svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.product-link:hover svg { transform: translateX(4px); }

/* ---------- REFERENCES BAND ---------- */
.logo-band {
    padding: 56px 0;
    background: var(--surface-2);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}
.logo-band .container { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.band-label { color: var(--muted); }
.logo-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 56px);
}
.logo-row img { max-height: 36px; opacity: .55; filter: grayscale(1); transition: opacity var(--t), filter var(--t); }
.logo-row img:hover { opacity: 1; filter: grayscale(0); }
.logo-name {
    font-family: var(--display);
    font-size: 1.1rem;
    color: var(--muted);
    letter-spacing: .02em;
    font-style: italic;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 36px 30px 30px;
    transition: transform var(--t), box-shadow var(--t);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote-mark {
    position: absolute;
    top: 18px; right: 28px;
    font-family: var(--display);
    font-size: 4.5rem;
    line-height: 1;
    color: var(--mint-100);
    z-index: 0;
}
.quote {
    position: relative;
    z-index: 1;
    font-family: var(--serif);
    font-size: 1.08rem;
    font-style: italic;
    line-height: 1.55;
    color: var(--ink);
    margin: 0 0 24px;
}
.person {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
}
.person img {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-soft);
}
.avatar-initial {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--mint-100);
    color: var(--primary-strong);
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-weight: 500;
    border: 2px solid var(--gold-soft);
}
.person strong { display: block; font-weight: 600; font-size: .95rem; color: var(--ink); }
.person span { display: block; font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* ---------- TEAM ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.team-card {
    background: var(--surface);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform var(--t), box-shadow var(--t);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--mint-100);
}
.team-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-ring {
    position: absolute;
    bottom: -1px; right: -1px;
    width: 80px; height: 80px;
    background:
        radial-gradient(circle at 50% 50%, transparent 28px, var(--surface) 28.5px, var(--surface) 32px, transparent 32.5px);
}
.team-ring::after {
    content: "";
    position: absolute;
    bottom: 16px; right: 16px;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--gold-gradient);
    box-shadow: 0 4px 10px rgba(168, 134, 44, 0.3);
}
.team-info { padding: 26px 28px 30px; }
.team-role {
    display: block;
    color: var(--primary-strong);
    margin-bottom: 8px;
}
.team-info h3 { margin: 0 0 10px; }
.team-info p { color: var(--ink-soft); margin: 0; font-size: .94rem; }

/* ---------- GALLERY / MASONRY ---------- */
.masonry {
    columns: 3;
    column-gap: 18px;
}
.masonry-item {
    margin: 0 0 18px;
    break-inside: avoid;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--mint-100);
    box-shadow: var(--shadow-xs);
    transition: transform var(--t), box-shadow var(--t);
}
.masonry-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.masonry-item img { width: 100%; height: auto; display: block; }
.masonry-item figcaption {
    padding: 12px 16px;
    font-family: var(--mono);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--surface);
}

/* ---------- BEFORE / AFTER ---------- */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.ba-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 18px 18px 22px;
    transition: transform var(--t), box-shadow var(--t);
    margin: 0;
}
.ba-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ba-frames {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    border-radius: var(--r-md);
    overflow: hidden;
    position: relative;
    background: var(--bg);
}
.ba-frames::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 2px;
    margin-left: -1px;
    background: var(--surface);
    z-index: 2;
}
.ba-frame {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.ba-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.ba-label {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 3;
    background: rgba(14, 42, 46, 0.7);
    color: var(--surface);
    padding: 5px 12px;
    border-radius: var(--r-pill);
    backdrop-filter: blur(4px);
}
.ba-label.accent {
    background: var(--primary-strong);
    color: var(--surface);
}
.ba-card figcaption {
    padding: 18px 8px 6px;
    text-align: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--ink-soft);
}

/* ---------- PRICING ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.pricing-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 38px 32px 32px;
    display: flex;
    flex-direction: column;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-mint);
    background:
        linear-gradient(180deg, var(--surface) 0%, var(--mint-50) 100%);
}
.pricing-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mint-gradient);
    color: var(--surface);
    padding: 7px 18px;
    border-radius: var(--r-pill);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}
.pricing-card > header { margin-bottom: 24px; }
.pricing-card > header .mono { color: var(--muted); display: block; margin-bottom: 12px; }
.pricing-card h3 { margin: 0 0 16px; font-size: 1.4rem; }
.pricing-card .price {
    display: block;
    font-family: var(--display);
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    font-weight: 400;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 10px;
}
.pricing-card.featured .price { color: var(--primary-strong); }
.pricing-card > header p { color: var(--ink-soft); font-size: .94rem; margin: 0; }
.pricing-card ul {
    list-style: none;
    padding: 24px 0;
    margin: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 12px;
    flex: 1;
}
.pricing-card ul li {
    display: flex;
    gap: 12px;
    font-size: .94rem;
    color: var(--ink);
}
.pricing-card ul .check {
    flex-shrink: 0;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--mint-100);
    color: var(--primary-strong);
    display: grid;
    place-items: center;
    margin-top: 2px;
}
.pricing-card ul .check svg { width: 11px; height: 11px; stroke-width: 3; }
.pricing-card .btn { margin-top: 24px; justify-content: center; }

/* ---------- CERTIFICATES ---------- */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.cert-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    transition: transform var(--t-fast), box-shadow var(--t), border-color var(--t);
    color: var(--ink);
}
.cert-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--gold-soft);
    color: var(--ink);
}
.cert-icon {
    display: grid;
    place-items: center;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--surface);
    flex-shrink: 0;
}
.cert-icon svg { width: 22px; height: 22px; stroke-width: 1.8; }
.cert-card > div { flex: 1; }
.cert-card strong { display: block; font-weight: 600; margin-bottom: 4px; }
.cert-card small { display: block; font-size: .82rem; color: var(--muted); }
.cert-arrow { color: var(--muted); transition: color var(--t), transform var(--t-fast); }
.cert-card:hover .cert-arrow { color: var(--accent); transform: translate(3px, -3px); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-list details {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 0;
    transition: border-color var(--t), box-shadow var(--t);
}
.faq-list details[open] {
    border-color: var(--mint-200);
    box-shadow: var(--shadow-sm);
}
.faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-chev {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--mint-50);
    color: var(--primary-strong);
    display: grid;
    place-items: center;
    transition: transform var(--t), background var(--t);
}
.faq-chev svg { width: 16px; height: 16px; stroke-width: 2; }
.faq-list details[open] .faq-chev { transform: rotate(45deg); background: var(--primary); color: var(--surface); }
.faq-answer { padding: 0 26px 24px 26px; }
.faq-answer p { color: var(--ink-soft); margin: 0; }

/* ---------- APPOINTMENT ---------- */
.appointment-layout {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 56px;
    align-items: start;
}
.appointment-info h2 { margin-bottom: 18px; }
.appointment-info > p { font-family: var(--serif); font-size: 1.08rem; font-style: italic; color: var(--ink-soft); margin-bottom: 28px; }
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}
.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--ink);
    font-size: .96rem;
}
.info-list li > span:first-child {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--mint-50);
    color: var(--primary-strong);
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
}
.info-list li > span:first-child svg { width: 16px; height: 16px; stroke-width: 1.8; }
.info-list a { color: var(--ink); border-bottom: 1px solid transparent; }
.info-list a:hover { color: var(--primary-strong); border-bottom-color: var(--primary); }

/* ---------- FORMS ---------- */
.lead-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}
.lead-form .span-two { grid-column: span 2; }
.lead-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: var(--mono);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.lead-form input,
.lead-form select,
.lead-form textarea {
    font-family: var(--sans);
    font-size: .95rem;
    color: var(--ink);
    background: var(--bg-warm);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: 12px 14px;
    transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}
.lead-form textarea { min-height: 130px; resize: vertical; }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--surface);
    box-shadow: 0 0 0 4px rgba(79, 162, 148, 0.14);
}
.honeypot { position: absolute; left: -10000px; opacity: 0; }
.form-status { font-family: var(--mono); font-size: .8rem; color: var(--ink-soft); margin: 0; }
.form-status.is-error { color: var(--danger); }
.form-status.is-success { color: var(--primary-strong); }
.form-foot { color: var(--muted); margin: 0; font-size: .68rem; }

/* ---------- MAP ---------- */
.map-section { padding: clamp(60px, 7vw, 100px) 0; }
.map-section.bare { padding-top: 0; }
.map-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.map-head h2 { margin-bottom: 10px; }
.map-address { font-family: var(--serif); font-style: italic; color: var(--ink-soft); }
.map-frame {
    max-width: var(--container);
    margin: 0 auto;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 16 / 7;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- POST CARDS (blog + news) ---------- */
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.post-card {
    background: var(--surface);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: transform var(--t), box-shadow var(--t);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--mint-50);
    display: block;
}
.post-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.post-card:hover .post-media img { transform: scale(1.05); }
.post-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.post-meta { color: var(--muted); margin-bottom: 12px; }
.post-body h2,
.post-body h3 {
    font-size: 1.25rem;
    margin: 0 0 12px;
    line-height: 1.25;
}
.post-body h2 a,
.post-body h3 a { color: var(--ink); }
.post-body h2 a:hover,
.post-body h3 a:hover { color: var(--primary-strong); }
.post-body p { color: var(--ink-soft); flex: 1; }
.post-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-strong);
    font-weight: 500;
    font-size: .9rem;
    margin-top: 14px;
}
.post-link svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.post-link:hover svg { transform: translateX(4px); }

/* News list */
.news-list { display: grid; gap: 16px; }
.news-list article {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 24px 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    transition: transform var(--t-fast), box-shadow var(--t), border-color var(--t);
}
.news-list article:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--mint-200);
}
.news-list.large article { padding: 32px 36px; }
.news-date { color: var(--accent); }
.news-list h2,
.news-list h3 {
    font-size: 1.2rem;
    margin: 0 0 6px;
}
.news-list h2 a,
.news-list h3 a { color: var(--ink); }
.news-list h2 a:hover,
.news-list h3 a:hover { color: var(--primary-strong); }
.news-list p { margin: 0; color: var(--ink-soft); font-size: .94rem; }
.news-arrow {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--mint-50);
    color: var(--primary-strong);
    transition: background var(--t), color var(--t), transform var(--t);
}
.news-arrow:hover {
    background: var(--primary);
    color: var(--surface);
    transform: translate(3px, -3px);
}
.news-arrow svg { width: 18px; height: 18px; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
    position: relative;
    background: var(--mint-gradient);
    color: var(--surface);
    border-radius: var(--r-xl);
    padding: clamp(48px, 6vw, 80px) clamp(40px, 5vw, 64px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    overflow: hidden;
    isolation: isolate;
}
.cta-grain {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .12;
    background:
        radial-gradient(circle at 20% 20%, rgba(228, 213, 163, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(232, 180, 168, 0.3) 0%, transparent 40%);
}
.cta-banner h2 { color: var(--surface); margin: 16px 0 12px; max-width: 580px; }
.cta-banner p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    max-width: 520px;
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--surface-2);
    border-top: 1px solid var(--line);
    padding-top: 72px;
    margin-top: 80px;
}
.footer-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter) 56px;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 48px;
}
.footer-brand strong {
    display: block;
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 10px;
}
.footer-brand > p {
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: 1rem;
    font-style: italic;
    max-width: 360px;
}
.footer-contact { display: grid; gap: 8px; margin-top: 16px; }
.footer-contact a,
.footer-contact span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-soft);
    font-size: .92rem;
}
.footer-contact a:hover { color: var(--primary-strong); }
.footer-contact svg { width: 16px; height: 16px; color: var(--primary); }

.footer-col h4 {
    font-family: var(--mono);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 18px;
}
.footer-col a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-soft);
    font-size: .94rem;
    padding: 4px 0;
}
.footer-col a:hover { color: var(--primary-strong); }
.footer-col a svg { width: 14px; height: 14px; }

.footer-bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding: 26px var(--gutter);
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--muted);
    font-size: .82rem;
}
.footer-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.footer-meta svg { width: 14px; height: 14px; color: var(--primary); }

/* ---------- FLOATING UI ---------- */
.floating-whatsapp,
.floating-chat {
    position: fixed;
    bottom: 24px;
    z-index: 80;
    border-radius: var(--r-pill);
    box-shadow: var(--shadow-lg);
    transition: transform var(--t), box-shadow var(--t);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
.floating-whatsapp {
    right: 24px;
    width: 56px; height: 56px;
    background: #25D366;
    color: #fff;
    display: grid;
    place-items: center;
}
.floating-whatsapp:hover { transform: translateY(-3px); color: #fff; }
.floating-whatsapp svg { width: 24px; height: 24px; stroke-width: 1.8; }

.floating-chat {
    right: 96px;
    height: 56px;
    padding: 0 22px;
    background: var(--ink);
    color: var(--surface);
}
.floating-chat:hover { transform: translateY(-3px); }
.floating-chat svg { width: 20px; height: 20px; }
.floating-chat span { font-size: .9rem; }

.chat-panel {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 360px;
    max-width: calc(100vw - 48px);
    max-height: 540px;
    background: var(--surface);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    z-index: 85;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t), opacity var(--t);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.chat-panel.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.chat-panel header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: var(--mint-gradient);
    color: var(--surface);
}
.chat-panel header strong { display: block; font-family: var(--display); font-size: 1.05rem; font-weight: 500; }
.chat-panel header span { display: block; font-size: .74rem; opacity: .85; }
.chat-panel header button { color: var(--surface); padding: 4px; border-radius: 50%; }
.chat-panel header button:hover { background: rgba(255, 255, 255, 0.18); }
.chat-panel header button svg { width: 18px; height: 18px; }
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.chat-bubble {
    margin: 0;
    padding: 12px 16px;
    border-radius: var(--r-md);
    max-width: 85%;
    font-size: .92rem;
    line-height: 1.5;
}
.chat-bubble.ai { background: var(--mint-50); color: var(--ink); align-self: flex-start; }
.chat-bubble.user { background: var(--primary); color: var(--surface); align-self: flex-end; }
.chat-form {
    display: flex;
    gap: 8px;
    padding: 14px;
    border-top: 1px solid var(--line);
    background: var(--bg-warm);
}
.chat-form input {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    padding: 10px 16px;
    font: inherit;
    color: var(--ink);
}
.chat-form input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79, 162, 148, 0.18); }
.chat-form button {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--surface);
    display: grid; place-items: center;
}
.chat-form button:hover { background: var(--primary-strong); }
.chat-form button svg { width: 18px; height: 18px; }

/* ---------- PAGE SHELL (blog/news/contact) ---------- */
.page-shell { padding-top: 32px; }
.page-hero {
    padding: clamp(56px, 7vw, 100px) 0 clamp(40px, 5vw, 60px);
    text-align: center;
}
.page-hero h1 { margin: 12px 0 14px; }
.page-hero p {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--ink-soft);
    max-width: 620px;
    margin: 0 auto;
}
.empty-state {
    text-align: center;
    font-family: var(--serif);
    font-style: italic;
    color: var(--muted);
    padding: 80px 0;
}

.article-shell {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 80px) var(--gutter);
}
.article-head { text-align: center; margin-bottom: 40px; }
.article-meta { display: inline-block; color: var(--accent); margin-bottom: 14px; }
.article-head h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 18px; }
.article-excerpt {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--ink-soft);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.55;
}
.article-image {
    margin: 40px 0 48px;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.article-image img { width: 100%; height: auto; display: block; }
.video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: var(--r-lg);
    margin-bottom: 32px;
}
.article-content {
    font-size: 1.08rem;
    line-height: 1.78;
    color: var(--ink);
}
.article-content p,
.article-content ul,
.article-content ol { margin: 0 0 1.2em; color: var(--ink); }
.article-content h2,
.article-content h3 { margin: 1.8em 0 .6em; }
.article-content h2 { font-size: 1.7rem; }
.article-content h3 { font-size: 1.3rem; color: var(--primary-strong); }
.article-content blockquote {
    margin: 1.6em 0;
    padding: 18px 28px;
    border-left: 3px solid var(--accent);
    background: var(--mint-50);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink);
    font-size: 1.1rem;
}
.article-content a {
    color: var(--primary-strong);
    border-bottom: 1px solid var(--mint-200);
}
.article-content a:hover { border-bottom-color: var(--primary); }
.article-content img {
    margin: 1.4em 0;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
}
.article-content ul,
.article-content ol { padding-left: 1.4em; }
.article-content li { margin-bottom: .4em; }
.article-foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

/* Contact layout */
.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 56px;
    align-items: start;
}
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { color: var(--ink-soft); margin-bottom: 28px; }

/* ---------- REVEAL ANIMATIONS ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i, 0) * 70ms);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .hero-copy { max-width: none; }
    .hero-visual { max-width: 480px; margin: 0 auto; }
    .split { grid-template-columns: 1fr; }
    .service-grid,
    .product-grid,
    .testimonial-grid,
    .team-grid,
    .post-grid,
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.featured { transform: none; }
    .ba-grid { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: 1fr; }
    .appointment-layout,
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .masonry { columns: 2; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-grid .footer-col:nth-child(4) { grid-column: span 3; }
    .section-heading.with-action { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 720px) {
    .nav-toggle { display: inline-flex; }
    .site-nav {
        position: fixed;
        inset: 64px 0 0 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--surface);
        padding: 24px var(--gutter);
        gap: 6px;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--t), opacity var(--t);
        border-top: 1px solid var(--line);
        overflow-y: auto;
    }
    .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .site-nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--line-soft);
        font-size: 1rem;
    }
    .site-nav .nav-cta { margin-top: 16px; justify-content: center; padding: 14px 20px; }
    .lang-switch { padding: 12px 0; }

    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }

    .service-grid,
    .product-grid,
    .testimonial-grid,
    .team-grid,
    .post-grid,
    .pricing-grid { grid-template-columns: 1fr; }
    .news-list article { grid-template-columns: 1fr; gap: 8px; padding: 22px 24px; }
    .news-arrow { display: none; }
    .masonry { columns: 1; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid .footer-col:nth-child(4) { grid-column: span 1; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .floating-chat span { display: none; }
    .floating-chat {
        width: 56px;
        padding: 0;
        justify-content: center;
        right: 92px;
    }
    .cta-banner { flex-direction: column; align-items: flex-start; }
    .hero { padding-top: 40px; padding-bottom: 80px; }
    .hero-blob { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}
