:root {
    --ink: #101c16;
    --forest: #173528;
    --brass: #c4a574;
    --cream: #f4f1ea;
    --paper: #fbfaf6;
    --sand: #e7e1d4;
    --text: #1c2620;
    --muted: #3f4b44;
    --line: #ddd6c8;
    --serif: "Fraunces", Georgia, serif;
    --sans: "Outfit", "Avenir Next", sans-serif;
    --pad: clamp(1.1rem, 3vw, 3.2rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: var(--cream);
    font-family: var(--sans);
    font-size: 1.05rem;
    line-height: 1.65;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 520; letter-spacing: -0.03em; color: var(--ink); margin: 0; }
p { text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
.skip { position: absolute; left: 1rem; top: -4rem; z-index: 80; background: #fff; padding: .6rem .9rem; }
.skip:focus { top: 1rem; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--ink);
    color: #f6f1e7;
    border-bottom: 1px solid rgba(196, 165, 116, .35);
}
.topbar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .4rem max(1.15rem, calc((100% - 1240px) / 2));
    background: #0b1511;
    color: #d9c7a6;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.topbar p { margin: 0; }
.topbar a { color: #f3e6cf; text-decoration: none; }
.bar {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    min-height: 4.4rem;
    padding: .35rem max(1.15rem, calc((100% - 1240px) / 2));
}
.logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; color: #f6f1e7; }
.logo-mark { width: 1.9rem; height: 1.9rem; fill: #f6f1e7; }
.logo-mark path:last-child { fill: var(--brass); }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-kicker { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass); }
.logo-name { font-family: var(--serif); font-size: 1.22rem; }
.site-nav { display: flex; gap: 1.05rem; }
.site-nav a { text-decoration: none; font-size: .94rem; color: #f3eee4; }
.site-nav a[aria-current="page"] { color: var(--brass); }
.header-phone { display: flex; flex-direction: column; text-decoration: none; line-height: 1.1; color: #f6f1e7; }
.header-phone span { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); }
.header-phone strong { font-family: var(--serif); font-size: 1.12rem; font-weight: 520; }
.nav-toggle {
    display: none;
    align-items: center;
    gap: .45rem;
    border: 1px solid rgba(255,255,255,.25);
    background: transparent;
    color: #f6f1e7;
    border-radius: 999px;
    padding: .45rem .8rem;
    font: inherit;
    cursor: pointer;
}
.nav-toggle-lines, .nav-toggle-lines::before, .nav-toggle-lines::after {
    display: block; width: .95rem; height: 1.5px; background: #f6f1e7; position: relative;
}
.nav-toggle-lines::before, .nav-toggle-lines::after { content: ""; position: absolute; left: 0; }
.nav-toggle-lines::before { top: -5px; }
.nav-toggle-lines::after { top: 5px; }
body.nav-open .nav-toggle { color: var(--ink); background: var(--cream); border-color: var(--line); }
body.nav-open .nav-toggle-lines,
body.nav-open .nav-toggle-lines::before,
body.nav-open .nav-toggle-lines::after { background: var(--ink); }

.hero-full { position: relative; min-height: 86vh; color: #f7f3ea; display: flex; align-items: flex-end; }
.hero-full img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-full::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8,16,12,.82) 0%, rgba(8,16,12,.42) 48%, rgba(8,16,12,.18) 100%);
}
.hero-full-copy { position: relative; z-index: 1; padding: 7rem var(--pad) 3rem; max-width: 48rem; }
.eyebrow { margin: 0 0 .7rem; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass); font-weight: 600; }
.hero-full h1 { color: #f8f4ec; font-size: clamp(2.8rem, 6vw, 5.4rem); line-height: .98; max-width: 12ch; }
.lede { margin: 1rem 0 0; max-width: 40rem; color: #e6e0d4; font-size: 1.12rem; }
.actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 3rem; padding: .7rem 1.15rem; border-radius: 999px; text-decoration: none;
    border: 1px solid transparent; font-weight: 560; cursor: pointer; font: inherit;
}
.btn-primary { background: var(--ink); color: #f6f1e7; }
.btn-primary:hover { background: #24382d; }
.btn-light { background: #f6f1e7; color: var(--ink); }
.btn-line { background: transparent; color: #f6f1e7; border-color: rgba(246,241,231,.55); }
.btn-ghost { background: transparent; color: var(--forest); border-color: var(--forest); }

.mosaic {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-auto-rows: 16rem;
    background: var(--ink);
}
.mosaic figure { margin: 0; position: relative; overflow: hidden; }
.mosaic figure:first-child { grid-row: span 2; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic figcaption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: .8rem 1rem;
    background: linear-gradient(transparent, rgba(8,16,12,.75));
    color: #f6f1e7;
    font-size: .92rem;
}
.mosaic strong { display: block; font-family: var(--serif); font-size: 1.25rem; font-weight: 520; }
.mosaic span { color: #e4d8c4; font-size: .86rem; }

.section { padding: clamp(3.4rem, 7vw, 6rem) max(1.15rem, calc((100% - 1240px) / 2)); }
.section-head { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 1.6rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.05; max-width: 16ch; }
.section-head p { max-width: 36rem; margin: 0; color: var(--muted); }
.sand { background: var(--sand); }
.paper { background: var(--paper); }

.detail-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: start; }
.detail-grid h2 { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.08; margin-bottom: .8rem; }
.detail-grid p { color: var(--muted); }
.fact-list { display: grid; gap: .8rem; }
.fact-list article { background: var(--paper); border: 1px solid var(--line); padding: 1rem 1.05rem; }
.fact-list strong { display: block; font-family: var(--serif); font-size: 1.25rem; margin-bottom: .25rem; }
.fact-list p { margin: 0; color: var(--muted); }

.rows { display: grid; }
.row { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 28rem; background: var(--paper); }
.row:nth-child(even) .row-copy { order: -1; background: var(--ink); color: #efe8dc; }
.row:nth-child(even) h2, .row:nth-child(even) .eyebrow { color: #f6efe2; }
.row:nth-child(even) p { color: #ddd4c6; }
.row img { width: 100%; height: 100%; object-fit: cover; min-height: 18rem; }
.row-copy { padding: clamp(1.6rem, 4vw, 3.2rem); display: flex; flex-direction: column; justify-content: center; gap: .8rem; }
.row-copy h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.08; }
.row-copy p { margin: 0; }
.row-copy a { color: inherit; font-weight: 600; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-grid a { display: grid; grid-template-columns: 7.2rem 1fr; gap: .8rem; background: var(--paper); text-decoration: none; min-height: 100%; }
.service-grid img { width: 7.2rem; height: 100%; object-fit: cover; }
.service-grid div { padding: 1rem 1rem 1rem 0; }
.service-grid span { color: var(--brass); font-family: var(--serif); }
.service-grid h3 { font-size: 1.35rem; margin: .2rem 0 .35rem; }
.service-grid p { margin: 0; color: var(--muted); font-size: .98rem; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.steps article { border-top: 1px solid var(--ink); padding-top: .9rem; }
.step-no { font-family: var(--serif); font-style: italic; font-size: 1.8rem; color: #8d5e38; }
.steps h3 { margin: .35rem 0; font-size: 1.35rem; }
.steps p { margin: 0; color: var(--muted); }

.districts { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0 0; padding: 0; list-style: none; }
.districts li { margin: 0; }
.districts a { display: inline-block; padding: .45rem .8rem; border: 1px solid var(--line); background: var(--paper); border-radius: 999px; text-decoration: none; }
.districts a:hover { border-color: var(--forest); color: var(--forest); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.cards article { background: var(--paper); border: 1px solid var(--line); overflow: hidden; }
.cards img { width: 100%; height: 12rem; object-fit: cover; }
.cards div { padding: 1rem 1.05rem 1.15rem; }
.cards h3 { font-size: 1.4rem; margin: .35rem 0 .45rem; line-height: 1.15; }
.cards p { margin: 0 0 .8rem; color: var(--muted); }
.cards a { color: var(--forest); font-weight: 650; }

.cta {
    width: min(1240px, calc(100% - 2.3rem));
    margin: 0 auto 3.5rem;
    padding: clamp(1.8rem, 4vw, 3rem);
    background: var(--ink);
    color: #f4eee4;
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 1.5rem;
    align-items: center;
}
.cta h2 { color: #f7f1e6; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.05; margin: .2rem 0 .5rem; }
.cta p { margin: 0; color: #e5ddd0; }
.cta .actions { justify-content: flex-end; margin: 0; }
.cta .btn-light { border: 0; }
.cta .btn-line { color: #f3eadc; }

.page-hero { padding: clamp(2.6rem, 5vw, 4.4rem) max(1.15rem, calc((100% - 1240px) / 2)) .6rem; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: 1; max-width: 16ch; }
.page-hero .lede { color: var(--muted); }
.crumbs { margin: 0 0 .7rem; font-size: .9rem; color: var(--muted); }
.crumbs a { color: var(--forest); }

.shotstrip { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; min-height: 16rem; }
.shotstrip img { width: 100%; height: 18rem; object-fit: cover; }

.doc { display: grid; grid-template-columns: 14rem minmax(0, 1fr); gap: 2rem; padding: 1.2rem max(1.15rem, calc((100% - 1240px) / 2)) 4rem; }
.toc { position: sticky; top: 6rem; align-self: start; display: flex; flex-direction: column; gap: .4rem; }
.toc a { color: var(--muted); text-decoration: none; font-size: .92rem; }
.prose { max-width: 74ch; }
.page-copy { padding: 0 max(1.15rem, calc((100% - 1240px) / 2)) 4rem; }
.prose h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.12; margin: 2.2rem 0 .7rem; scroll-margin-top: 6rem; }
.prose p { margin: 0 0 1rem; }
.prose a { color: var(--forest); }
.prose figure { margin: 1.2rem 0 1.4rem; }
.prose figure img { width: 100%; max-height: 28rem; object-fit: cover; }
.prose figcaption { color: var(--muted); font-size: .9rem; margin-top: .4rem; }

.principles { display: grid; gap: .9rem; }
.principles article { display: grid; grid-template-columns: 4rem 1fr; gap: 1rem; padding-top: .9rem; border-top: 1px solid var(--line); }
.principles h3 { font-size: 1.35rem; margin-bottom: .25rem; }
.principles p { margin: 0; color: var(--muted); }

.faq { padding: 0 max(1.15rem, calc((100% - 1240px) / 2)) 4rem; display: grid; gap: .65rem; }
.faq details { background: var(--paper); border: 1px solid var(--line); padding: .9rem 1rem; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq details p { margin: .7rem 0 .15rem; color: var(--muted); }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 2rem; padding: .5rem max(1.15rem, calc((100% - 1240px) / 2)) 4rem; }
.contact-card h2 { font-size: 2.1rem; margin: .2rem 0 .7rem; }
.contact-card a { color: var(--forest); }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.contact-list span { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #8d5e38; }
form { display: grid; gap: .85rem; }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
label { display: grid; gap: .3rem; font-size: .92rem; font-weight: 560; }
input, select, textarea {
    width: 100%; border: 1px solid #cfc6b8; background: var(--paper); color: var(--ink);
    font: inherit; padding: .75rem .8rem; border-radius: .3rem;
}
textarea { min-height: 9rem; resize: vertical; }
.check { grid-template-columns: auto 1fr; align-items: start; font-weight: 400; }
.check input { width: auto; margin-top: .25rem; }
.form-error { margin: 0; color: #8a2e24; font-size: .92rem; }
.form-ok { background: var(--paper); border: 1px solid var(--line); padding: 1rem 1.1rem; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.map { margin-top: 1rem; }
.map iframe { width: 100%; height: 18rem; border: 0; }

.site-footer { background: #0c1612; color: #e7e0d4; padding: 3.2rem max(1.15rem, calc((100% - 1240px) / 2)) 2.4rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .9fr 1fr; gap: 2rem; }
.footer-brand { font-family: var(--serif); font-size: 1.8rem; margin: 0 0 .5rem; }
.footer-lead, .site-footer li { color: #c9c2b6; }
.footer-label { margin: 0 0 .7rem; letter-spacing: .14em; text-transform: uppercase; font-size: .75rem; color: var(--brass); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.site-footer a { color: #f4eee4; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.6rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); color: #b7b1a6; font-size: .92rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--brass); }
.empty { padding: 2rem max(1.15rem, calc((100% - 1240px) / 2)) 5rem; max-width: none; }
.empty h1, .empty .lede, .empty .actions { max-width: 40rem; }

.call-rail {
    position: fixed; right: 0; top: 46%; z-index: 55; transform: translateY(-50%);
}
.call-rail a {
    display: flex; align-items: center; justify-content: flex-end; text-decoration: none; color: #fff;
}
.call-rail-label {
    background: var(--ink); color: #f6f1e7; font-weight: 650; font-size: .92rem;
    padding: .7rem 1rem; border-radius: .35rem 0 0 .35rem; white-space: nowrap;
    opacity: 0; transform: translateX(12px); pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}
.call-rail a:hover .call-rail-label,
.call-rail a:focus-visible .call-rail-label { opacity: 1; transform: none; }
.call-rail-btn {
    width: 3.4rem; height: 3.4rem; display: grid; place-items: center;
    background: #b42318; color: #fff; border-radius: .35rem 0 0 .35rem;
    box-shadow: 0 8px 22px rgba(180, 35, 24, .35);
    animation: callPulse 2.2s ease-in-out infinite;
}
.call-rail a:hover .call-rail-btn { animation: none; background: #8f1c14; }
@keyframes callPulse {
    0%, 100% { box-shadow: 0 8px 22px rgba(180, 35, 24, .35); }
    50% { box-shadow: 0 8px 22px rgba(180, 35, 24, .35), 0 0 0 10px rgba(180, 35, 24, .16); }
}
.phone-fab {
    display: none; position: fixed; right: 18px; bottom: 96px; z-index: 55;
    width: 58px; height: 58px; border-radius: 50%; place-items: center;
    background: linear-gradient(180deg, #e24b3b, #b42318); color: #fff; text-decoration: none;
    box-shadow: 0 8px 22px rgba(180, 35, 24, .4);
    animation: callPulse 2.2s ease-in-out infinite;
}
.phone-fab:hover, .phone-fab:focus-visible { animation: none; transform: scale(1.08); }
.wa-bubble {
    position: fixed; right: 18px; bottom: 22px; z-index: 55;
    width: 60px; height: 60px; border: 0; border-radius: 50%; padding: 0;
    background: #25d366; color: #fff; cursor: pointer;
    display: grid; place-items: center;
    box-shadow: 0 8px 22px rgba(37, 211, 102, .45);
    animation: waBlink 1.8s ease-in-out infinite;
}
.wa-bubble:hover, .wa-bubble:focus-visible { animation: none; transform: scale(1.08); }
.wa-bubble[hidden] { display: none; }
.wa-badge {
    position: absolute; top: -3px; right: -3px; width: 20px; height: 20px; border-radius: 50%;
    background: #b42318; color: #fff; font-size: 11px; font-weight: 700;
    display: grid; place-items: center; border: 2px solid #fff;
    animation: waBadge 1.5s ease-in-out infinite;
}
@keyframes waBadge { 50% { transform: scale(1.15); } }
@keyframes waBlink {
    0%, 100% { box-shadow: 0 8px 22px rgba(37, 211, 102, .45); transform: scale(1); }
    40% { box-shadow: 0 0 0 12px rgba(37, 211, 102, .22), 0 8px 22px rgba(37, 211, 102, .45); transform: scale(1.06); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); transform: scale(1.02); }
}
.wa-chat {
    position: fixed; right: 18px; bottom: 22px; z-index: 56;
    width: min(340px, calc(100vw - 28px));
    border-radius: 16px; overflow: hidden; background: #fff;
    box-shadow: 0 16px 48px rgba(16, 28, 22, .28);
    display: flex; flex-direction: column;
    animation: waIn .32s cubic-bezier(.17, .67, .42, 1.2);
}
.wa-chat[hidden] { display: none; }
@keyframes waIn { from { opacity: 0; transform: translateY(16px) scale(.94); } to { opacity: 1; transform: none; } }
.wa-chat-head { background: #075e54; color: #fff; display: flex; align-items: center; gap: .7rem; padding: .85rem .9rem; }
.wa-av { width: 42px; height: 42px; border-radius: 50%; background: #128c7e; display: grid; place-items: center; flex: none; }
.wa-info { display: grid; min-width: 0; }
.wa-name { font-weight: 650; font-size: .95rem; }
.wa-status { font-size: .75rem; opacity: .9; }
.wa-status::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: .35rem; border-radius: 50%; background: #4ade80; }
.wa-close { margin-left: auto; background: none; border: 0; color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; }
.wa-chat-body { background: #efeae2; min-height: 148px; padding: .9rem; display: flex; flex-direction: column; gap: .6rem; }
.wa-msg { background: #fff; border-radius: 0 12px 12px 12px; padding: .7rem .8rem; font-size: .92rem; line-height: 1.5; box-shadow: 0 1px 2px rgba(0,0,0,.08); max-width: 92%; }
.wa-msg time { display: block; text-align: right; color: #8a847c; font-size: .72rem; margin-top: .25rem; }
.wa-typing { display: inline-flex; gap: 5px; background: #fff; border-radius: 0 12px 12px 12px; padding: .7rem .85rem; width: max-content; }
.wa-typing[hidden] { display: none; }
.wa-typing span { width: 7px; height: 7px; border-radius: 50%; background: #b5aea4; animation: waDot .9s infinite; }
.wa-typing span:nth-child(2) { animation-delay: .15s; }
.wa-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes waDot { 30% { transform: translateY(-5px); } }
.wa-chat-foot { display: flex; gap: .45rem; align-items: flex-end; padding: .65rem; background: #fff; border-top: 1px solid #eee; }
.wa-chat-foot textarea {
    min-height: 0; resize: none; border-radius: 1.2rem; padding: .55rem .85rem; max-height: 6rem;
}
.wa-send { width: 42px; height: 42px; border: 0; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; cursor: pointer; flex: none; }
.kvkk-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    background: var(--ink); color: #f4eee4;
    display: flex; gap: 1rem; align-items: center; justify-content: space-between;
    padding: .85rem var(--pad); box-shadow: 0 -8px 24px rgba(0,0,0,.18);
}
.kvkk-bar[hidden] { display: none; }
.kvkk-bar p { margin: 0; font-size: .92rem; max-width: 68ch; }
.kvkk-bar a { color: var(--brass); }
.kvkk-actions { display: flex; gap: .5rem; align-items: center; flex: none; }
.kvkk-actions a { color: #f4eee4; text-decoration: none; font-weight: 600; padding: .45rem .7rem; }
.kvkk-actions button {
    border: 0; background: var(--brass); color: var(--ink); font: inherit; font-weight: 650;
    padding: .55rem .9rem; border-radius: .3rem; cursor: pointer;
}
body.kvkk-open .wa-bubble,
body.kvkk-open .wa-chat { bottom: 108px; }
body.kvkk-open .phone-fab { bottom: 178px; }
body.nav-open .call-rail,
body.nav-open .phone-fab,
body.nav-open .wa-bubble,
body.nav-open .wa-chat { visibility: hidden; }

@media (max-width: 1040px) {
    .site-nav {
        display: none; position: fixed; inset: 0; z-index: 45; background: var(--cream);
        flex-direction: column; align-items: flex-start; justify-content: center; padding: 5rem 1.6rem; gap: 1rem;
    }
    .site-nav.is-open { display: flex; height: 100dvh; overflow: auto; }
    .site-nav a { font-family: var(--serif); font-size: 2rem; color: var(--ink); }
    .nav-toggle { display: inline-flex; position: relative; z-index: 50; }
    .header-phone, .topbar { display: none; }
    .hero-full { min-height: 78vh; }
    .hero-full::after { background: linear-gradient(180deg, rgba(8,16,12,.25), rgba(8,16,12,.78)); }
    .mosaic, .detail-grid, .row, .service-grid, .steps, .cards, .cta, .doc, .contact-layout, .footer-grid, .fields, .shotstrip {
        grid-template-columns: 1fr;
    }
    .mosaic figure:first-child { grid-row: auto; }
    .mosaic { grid-auto-rows: 14rem; }
    .row:nth-child(even) .row-copy { order: 0; }
    .service-grid a { grid-template-columns: 6.2rem 1fr; }
    .toc { position: static; flex-direction: row; flex-wrap: wrap; }
    .cta .actions { justify-content: flex-start; }
    .call-rail { display: none; }
    .phone-fab { display: grid; }
    .principles article { grid-template-columns: 1fr; }
    .kvkk-bar { flex-direction: column; align-items: stretch; }
    body.kvkk-open .wa-bubble,
    body.kvkk-open .wa-chat { bottom: 168px; }
    body.kvkk-open .phone-fab { bottom: 236px; }
}
@media (max-width: 720px) {
    .section-head, .footer-bottom { flex-direction: column; align-items: start; }
    .hero-full h1 { font-size: 2.7rem; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .call-rail-btn, .phone-fab, .wa-bubble, .wa-badge, .wa-typing span, .wa-chat { animation: none; }
}
