:root {
    --ink: #121613;
    --ink-soft: #3f4d45;
    --paper: #f3efe8;
    --paper-deep: #e8e0d5;
    --white: #fffdf8;
    --lime: #d7f164;
    --coral: #dc8b7d;
    --coral-dark: #a85d57;
    --lilac: #81708d;
    --sage: #dce6da;
    --muted: #747a72;
    --line: rgba(18, 22, 19, .16);
    --line-light: rgba(255, 253, 248, .2);
    --shadow: 0 24px 70px rgba(18, 22, 19, .16);
    --container: 1240px;
    --sans: "Manrope", Arial, sans-serif;
    --serif: "DM Serif Display", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 15px; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p, figure, ul, ol { margin: 0; }
h1, h2, h3 { font-weight: 700; letter-spacing: -.06em; line-height: .96; }
h1, h2 { text-wrap: balance; }
ul, ol { padding: 0; list-style: none; }
em { color: var(--coral); font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.04em; }

.container { width: min(calc(100% - 80px), var(--container)); margin: 0 auto; }
.narrow { width: min(calc(100% - 80px), 850px); }
.section { padding: clamp(88px, 9vw, 142px) 0; }
.section-heading { margin-bottom: 52px; }
.section-heading-wide { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .56fr); align-items: end; gap: 92px; }
.section-heading h2 { margin-top: 20px; font-size: clamp(44px, 5vw, 74px); }
.section-heading p { max-width: 500px; margin-top: 21px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.section-heading-wide > p { margin: 0 0 7px; color: var(--ink-soft); }

.skip-link { position: fixed; z-index: 1000; top: -80px; left: 22px; padding: 12px 16px; background: var(--lime); color: var(--ink); font-weight: 800; }
.skip-link:focus { top: 18px; }

.topbar { background: var(--lime); color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 33px; gap: 30px; }
.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid rgba(255, 253, 248, .14); background: var(--ink); color: var(--white); transition: box-shadow .2s ease, background .2s ease; }
.site-header.is-scrolled { box-shadow: 0 12px 34px rgba(18, 22, 19, .22); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 92px; gap: 35px; }
.brand { display: inline-flex; flex-direction: column; align-items: flex-start; color: var(--white); }
.brand-name { font-size: 30px; font-weight: 800; letter-spacing: .22em; line-height: .9; }
.brand-tagline { margin-top: 8px; color: var(--lime); font-size: 8px; font-weight: 800; letter-spacing: .27em; line-height: 1; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 12px; font-weight: 800; }
.site-nav > a:not(.nav-button) { position: relative; padding: 33px 0; color: rgba(255, 253, 248, .82); }
.site-nav > a:not(.nav-button)::after { position: absolute; right: 0; bottom: 22px; left: 0; height: 2px; border-radius: 99px; background: var(--lime); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-nav > a:not(.nav-button):hover::after, .site-nav > a:not(.nav-button):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-button { display: inline-flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 46px; padding: 0 15px 0 19px; border: 1px solid var(--lime); border-radius: 999px; background: var(--lime); color: var(--ink); }
.nav-button span, .button span, .text-link span, .card-link b { font-size: 19px; line-height: 1; }
.nav-button span { color: var(--ink); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid rgba(255, 253, 248, .3); border-radius: 50%; background: transparent; color: var(--white); }
.menu-toggle span { display: block; width: 17px; height: 1px; margin: 5px auto; background: currentColor; }

.eyebrow { display: inline-flex; align-items: center; gap: 11px; color: var(--coral-dark); font-size: 10px; font-weight: 800; letter-spacing: .23em; line-height: 1.3; text-transform: uppercase; }
.eyebrow i { display: block; width: 26px; height: 2px; background: currentColor; }
.eyebrow-light { color: var(--lime); }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 50px; padding: 0 18px 0 22px; border: 1px solid transparent; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.button-primary, .button-accent { background: var(--lime); color: var(--ink); box-shadow: 0 12px 22px rgba(18, 22, 19, .16); }
.button-primary:hover, .button-primary:focus-visible, .button-accent:hover, .button-accent:focus-visible { background: var(--white); color: var(--ink); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover, .button-dark:focus-visible { background: var(--coral); color: var(--ink); }
.button-light { border-color: rgba(255, 253, 248, .42); color: var(--white); }
.button-light:hover, .button-light:focus-visible { border-color: var(--lime); background: var(--lime); color: var(--ink); }
.button-outline { border-color: var(--ink); color: var(--ink); }
.button-outline:hover, .button-outline:focus-visible { border-color: var(--ink); background: var(--ink); color: var(--white); }
.button-text, .text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.button-text:hover, .button-text:focus-visible, .text-link:hover, .text-link:focus-visible { color: var(--coral-dark); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 35px; }

/* Home: a dark editorial cover with a strong booking path. */
.home-hero { position: relative; isolation: isolate; overflow: hidden; padding: clamp(52px, 6vw, 84px) 0 clamp(88px, 10vw, 132px); background: var(--ink); color: var(--white); }
.home-hero::before { position: absolute; z-index: -1; top: -220px; right: -140px; width: 620px; height: 620px; border: 1px solid rgba(255, 253, 248, .16); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255, 253, 248, .035), 0 0 0 86px rgba(255, 253, 248, .025); content: ""; }
.home-hero::after { position: absolute; z-index: -1; bottom: 0; left: 0; width: 280px; height: 210px; background-image: radial-gradient(var(--lime) 1px, transparent 1px); background-size: 15px 15px; content: ""; opacity: .35; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(470px, 1.18fr); align-items: center; gap: clamp(48px, 7vw, 108px); }
.hero-copy { position: relative; z-index: 2; }
.home-hero .eyebrow { color: var(--lime); }
.hero-copy h1 { max-width: 650px; margin-top: 27px; font-size: clamp(57px, 7vw, 102px); line-height: .89; }
.hero-copy h1 em { color: var(--lime); }
.hero-lead { max-width: 560px; margin-top: 28px; color: rgba(255, 253, 248, .73); font-size: 16px; line-height: 1.75; }
.home-hero .button-text { color: var(--white); }
.home-hero .button-text:hover, .home-hero .button-text:focus-visible { color: var(--lime); }
.hero-points { display: grid; gap: 13px; max-width: 500px; margin-top: 54px; padding-top: 23px; border-top: 1px solid rgba(255, 253, 248, .25); color: rgba(255, 253, 248, .74); font-size: 11px; font-weight: 700; }
.hero-points li { display: flex; align-items: baseline; gap: 15px; }
.hero-points span { color: var(--lime); font-size: 10px; letter-spacing: .12em; }
.hero-visual { position: relative; max-width: 650px; margin-left: auto; }
.hero-photo { position: relative; min-height: 670px; overflow: hidden; border: 1px solid rgba(255, 253, 248, .45); background: #25211e; box-shadow: var(--shadow); }
.hero-photo::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 44%, rgba(18, 22, 19, .84)); content: ""; }
.hero-photo img { width: 100%; height: 670px; object-fit: cover; filter: saturate(.8) contrast(1.06); }
.hero-photo figcaption { position: absolute; z-index: 1; right: 31px; bottom: 29px; left: 31px; display: flex; flex-direction: column; gap: 7px; color: var(--white); }
.hero-photo figcaption span { color: var(--lime); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero-photo figcaption strong { font-family: var(--serif); font-size: 35px; font-weight: 400; line-height: 1; }
.hero-branch-photo { display: grid; grid-template-columns: 1fr 1fr; isolation: isolate; }
.hero-branch-photo::after { z-index: 2; background: linear-gradient(180deg, rgba(18, 22, 19, .08) 20%, rgba(18, 22, 19, .88) 100%); }
.hero-branch-pane { position: relative; z-index: 1; min-width: 0; height: 670px; overflow: hidden; }
.hero-branch-pane + .hero-branch-pane { z-index: 2; margin-left: -15%; clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%); }
.hero-branch-pane img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.84) contrast(1.05); }
.hero-branch-pane-bayan img { object-position: center; }
.hero-branch-pane-erkek img { object-position: center; }
.hero-branch-pane > span { position: absolute; z-index: 3; top: 25px; left: 23px; color: var(--white); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero-branch-pane-erkek > span { left: auto; right: 22px; }
.hero-branch-photo figcaption { z-index: 4; }
.hero-index { position: absolute; right: -41px; top: 13px; display: flex; align-items: center; gap: 9px; color: var(--lime); font-size: 9px; font-weight: 800; letter-spacing: .15em; writing-mode: vertical-rl; }
.hero-index i { display: block; width: 39px; height: 1px; background: currentColor; }

/* Service catalogue */
.section-services { position: relative; overflow: hidden; background: var(--paper); }
.section-services::before { position: absolute; top: 90px; right: -165px; width: 420px; height: 420px; border: 1px solid rgba(18, 22, 19, .12); border-radius: 50%; content: ""; }
.section-services > .container { position: relative; z-index: 1; }
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.service-card { position: relative; display: flex; min-height: 420px; flex-direction: column; overflow: hidden; border: 1px solid var(--line); background: var(--white); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card-featured { grid-column: auto; display: flex; min-height: 420px; background: var(--ink); color: var(--white); }
.service-card-image { position: relative; min-height: 210px; height: 210px; overflow: hidden; background: var(--sage); }
.service-card-featured .service-card-image { height: 210px; }
.service-card-image::after { position: absolute; inset: 0; background: linear-gradient(160deg, transparent 45%, rgba(18, 22, 19, .42)); content: ""; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86); transition: transform .5s ease; }
.service-card:hover .service-card-image img { transform: scale(1.06); }
.service-number { position: absolute; z-index: 1; top: 18px; left: 20px; display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 9px; font-weight: 800; }
.service-card-body { display: flex; min-height: 210px; flex: 1; flex-direction: column; padding: 28px 25px 24px; }
.card-kicker { color: var(--coral-dark); font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.service-card h3 { margin-top: 13px; font-family: var(--serif); font-size: 34px; font-weight: 400; line-height: 1; }
.service-card p { margin-top: 14px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.service-card-featured .service-card-body { background: #1a2721; }
.service-card-featured .card-kicker { color: var(--lime); }
.service-card-featured p { color: rgba(255, 253, 248, .7); }
.card-link { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 23px; border-top: 1px solid var(--line); color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.service-card-featured .card-link { border-color: rgba(255, 253, 248, .2); color: var(--white); }
.card-link b { color: var(--coral); font-weight: 400; }
.section-tail { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 33px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.section-tail a { color: var(--ink); font-weight: 800; }
.section-tail b { margin-left: 9px; color: var(--coral-dark); font-size: 18px; }

/* Branch choice */
.section-branches { position: relative; isolation: isolate; overflow: hidden; background: var(--paper-deep); color: var(--ink); }
.section-branches::before { position: absolute; z-index: -1; bottom: -290px; left: -180px; width: 560px; height: 560px; border: 1px solid rgba(18, 22, 19, .12); border-radius: 50%; content: ""; }
.section-branches .section-heading p { color: var(--ink-soft); }
.section-branches .section-heading .eyebrow { color: var(--coral-dark); }
.branch-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.branch-card { overflow: hidden; border: 1px solid rgba(18, 22, 19, .15); background: var(--white); box-shadow: 0 16px 40px rgba(18, 22, 19, .1); }
.branch-card-dark { background: var(--ink); color: var(--white); }
.branch-card-photo { position: relative; height: 335px; overflow: hidden; }
.branch-card-photo::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(18, 22, 19, .72)); content: ""; }
.branch-card-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.83); transition: transform .5s ease; }
.branch-card:hover .branch-card-photo img { transform: scale(1.05); }
.branch-label { display: inline-flex; align-items: center; min-height: 25px; padding: 0 10px; background: var(--lime); color: var(--ink); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.branch-card-photo .branch-label { position: absolute; z-index: 1; bottom: 21px; left: 23px; }
.branch-card-content { padding: 29px 30px 31px; }
.branch-card-heading { display: flex; justify-content: space-between; gap: 20px; }
.branch-card h3 { margin-top: 12px; font-family: var(--serif); font-size: 39px; font-weight: 400; line-height: 1; }
.branch-arrow { color: var(--coral-dark); font-size: 31px; }
.branch-card-dark .branch-arrow { color: var(--lime); }
.branch-card-content > p { max-width: 475px; margin-top: 18px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.branch-card-dark .branch-card-content > p { color: rgba(255, 253, 248, .68); }
.branch-info { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; margin-top: 30px; padding-top: 19px; border-top: 1px solid var(--line); }
.branch-card-dark .branch-info { border-color: rgba(255, 253, 248, .18); }
.branch-info span, .branch-info em { font-size: 12px; font-style: normal; line-height: 1.55; }
.branch-info small, .contact-details small { display: block; margin-bottom: 6px; color: var(--coral-dark); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.branch-card-dark .branch-info small { color: var(--lime); }
.branch-info em { color: var(--muted); }
.branch-card-dark .branch-info em { color: rgba(255, 253, 248, .48); }
.branch-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 21px; margin-top: 29px; }
.phone-link { color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .07em; }
.branch-card-dark .phone-link { color: var(--white); }

/* Approach, reviews, FAQ */
.section-approach { position: relative; isolation: isolate; overflow: hidden; background: var(--lilac); color: var(--white); }
.section-approach::after { position: absolute; z-index: -1; top: -260px; right: -180px; width: 560px; height: 560px; border: 1px solid rgba(255, 253, 248, .22); border-radius: 50%; content: ""; }
.approach-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(390px, 1.12fr); align-items: center; gap: 105px; }
.section-approach .eyebrow { color: var(--lime); }
.approach-intro h2 { max-width: 590px; margin-top: 21px; font-size: clamp(43px, 5vw, 70px); }
.approach-intro h2 em { color: var(--lime); }
.approach-intro p { max-width: 500px; margin-top: 26px; color: rgba(255, 253, 248, .76); font-size: 15px; }
.section-approach .button-outline { border-color: var(--lime); color: var(--white); }
.section-approach .button-outline:hover, .section-approach .button-outline:focus-visible { background: var(--lime); color: var(--ink); }
.approach-steps { padding: 8px 30px; border: 1px solid rgba(255, 253, 248, .26); background: rgba(18, 22, 19, .16); }
.approach-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 17px; align-items: start; padding: 29px 0; border-bottom: 1px solid rgba(255, 253, 248, .2); }
.approach-steps li:last-child { border-bottom: 0; }
.approach-steps > li > span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 10px; font-weight: 800; }
.approach-steps strong { display: block; font-size: 18px; }
.approach-steps p { max-width: 430px; margin-top: 7px; color: rgba(255, 253, 248, .65); font-size: 13px; line-height: 1.55; }
.section-review { background: var(--coral); }
.review-grid-home { display: grid; grid-template-columns: 85px minmax(0, 1fr) 240px; align-items: center; gap: 30px; padding: 52px 60px; background: var(--white); }
.review-mark { color: var(--coral-dark); font-family: var(--serif); font-size: 145px; line-height: .65; }
.review-grid-home h2 { max-width: 620px; margin-top: 20px; font-size: clamp(43px, 5vw, 68px); }
.review-grid-home p { max-width: 530px; margin-top: 21px; color: var(--muted); font-size: 14px; }
.review-links { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 27px; }
.review-links a { padding-bottom: 7px; border-bottom: 1px solid var(--ink); font-size: 11px; font-weight: 800; }
.review-links span { margin-left: 10px; color: var(--coral-dark); font-size: 17px; }
.review-side { padding: 27px; background: var(--ink); color: var(--white); }
.review-side span { color: var(--lime); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.review-side strong { display: block; margin-top: 28px; font-family: var(--serif); font-size: 29px; font-weight: 400; line-height: 1.05; }
.section-faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); align-items: start; gap: 105px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 78px; padding: 12px 0; cursor: pointer; color: var(--ink); font-size: 14px; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; width: 28px; height: 28px; flex: 0 0 28px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; color: var(--coral-dark); font-size: 20px; font-weight: 400; line-height: 1; transition: transform .2s ease, background .2s ease; }
.faq-list details[open] summary span { background: var(--lime); transform: rotate(45deg); }
.faq-list details p { max-width: 690px; padding: 0 62px 24px 0; color: var(--muted); font-size: 13px; }
.closing-cta { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: var(--white); }
.closing-cta::before { position: absolute; z-index: -1; right: -180px; bottom: -350px; width: 700px; height: 700px; border: 1px solid rgba(255, 253, 248, .16); border-radius: 50%; box-shadow: 0 0 0 48px rgba(255, 253, 248, .035), 0 0 0 97px rgba(255, 253, 248, .025); content: ""; }
.closing-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; min-height: 420px; }
.closing-inner h2 { margin-top: 20px; font-size: clamp(48px, 5.8vw, 80px); }
.closing-inner h2 em { color: var(--lime); }
.closing-inner p { max-width: 390px; margin-bottom: 25px; color: rgba(255, 253, 248, .68); font-size: 15px; }

/* Inner heroes and detail modules */
.inner-hero { padding: 62px 0 104px; background: var(--ink); color: var(--white); }
.inner-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .83fr); align-items: center; gap: 82px; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 62px; color: rgba(255, 253, 248, .56); font-size: 11px; }
.breadcrumbs a { color: var(--lime); }
.inner-hero .eyebrow { color: var(--lime); }
.inner-hero h1 { max-width: 720px; margin-top: 24px; font-size: clamp(52px, 6vw, 86px); }
.inner-hero .hero-lead { max-width: 630px; color: rgba(255, 253, 248, .7); }
.inner-hero .button-text { color: var(--white); }
.inner-hero .button-text:hover, .inner-hero .button-text:focus-visible { color: var(--lime); }
.inner-hero-media { position: relative; min-height: 570px; overflow: hidden; border: 1px solid rgba(255, 253, 248, .42); background: #282522; }
.inner-hero-media::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 46%, rgba(18, 22, 19, .82)); content: ""; }
.inner-hero-media img { width: 100%; height: 570px; object-fit: cover; filter: saturate(.8); }
.media-caption { position: absolute; z-index: 1; right: 26px; bottom: 25px; left: 26px; display: flex; flex-direction: column; gap: 7px; color: var(--white); }
.media-caption span { color: var(--lime); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.media-caption strong { font-family: var(--serif); font-size: 32px; font-weight: 400; line-height: 1; }
.branch-detail-bar { background: var(--lime); color: var(--ink); }
.detail-bar-grid { display: grid; grid-template-columns: 1.2fr .9fr .8fr; min-height: 140px; }
.detail-bar-grid > div { display: flex; flex-direction: column; justify-content: center; padding: 22px 26px; border-right: 1px solid rgba(18, 22, 19, .2); }
.detail-bar-grid > div:first-child { padding-left: 0; }
.detail-bar-grid > div:last-child { border-right: 0; }
.detail-bar-grid small { margin-bottom: 6px; color: var(--coral-dark); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.detail-bar-grid strong, .detail-bar-grid a { font-size: 13px; line-height: 1.45; }
.detail-bar-grid a:not(.detail-phone) { margin-top: 8px; color: var(--coral-dark); font-size: 10px; font-weight: 800; }
.detail-bar-grid em, .detail-bar-grid span { margin-top: 4px; color: rgba(18, 22, 19, .62); font-size: 10px; font-style: normal; }
.detail-phone { color: var(--ink); font-size: 20px !important; font-weight: 800; }
.branch-content { background: var(--white); }
.branch-content .section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .65fr); align-items: end; gap: 80px; }
.branch-content .section-heading > p { margin: 0 0 5px; }
.branch-service-list { overflow: hidden; border: 1px solid var(--line); }
.branch-service-row { display: grid; grid-template-columns: 68px minmax(230px, 1fr) minmax(280px, .9fr) 26px; align-items: center; gap: 24px; min-height: 120px; padding: 0 25px; border-bottom: 1px solid var(--line); background: var(--paper); transition: background .2s ease, padding .2s ease; }
.branch-service-row:last-child { border-bottom: 0; }
.branch-service-row:hover { padding-right: 34px; padding-left: 34px; background: var(--sage); }
.row-number { color: var(--coral-dark); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.branch-service-row small { display: block; color: var(--coral-dark); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.branch-service-row strong { display: block; margin-top: 8px; font-family: var(--serif); font-size: 29px; font-weight: 400; }
.row-description { color: var(--muted); font-size: 13px; line-height: 1.55; }
.row-arrow { color: var(--coral-dark); font-size: 24px; }
.section-sage { background: var(--sage); }
.two-column-section, .map-layout, .content-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 92px; }
.feature-photo { position: relative; min-height: 510px; overflow: hidden; background: var(--ink); }
.feature-photo::after, .gallery-item::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(18, 22, 19, .7)); content: ""; }
.feature-photo img { width: 100%; height: 510px; object-fit: cover; filter: saturate(.82); }
.feature-photo > span, .gallery-item figcaption span { position: absolute; z-index: 1; bottom: 24px; left: 25px; color: var(--lime); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.feature-copy h2 { max-width: 580px; margin-top: 21px; font-size: clamp(43px, 4.8vw, 70px); }
.feature-copy p { max-width: 560px; margin-top: 22px; color: var(--ink-soft); font-size: 14px; }
.check-list { display: grid; gap: 11px; margin-top: 29px; color: var(--ink-soft); font-size: 12px; font-weight: 800; }
.check-list li::before { display: inline-block; width: 9px; height: 9px; margin-right: 11px; border-radius: 50%; background: var(--coral); content: ""; }
.branch-map-section { background: var(--white); }
.map-copy h2 { margin-top: 20px; font-size: clamp(46px, 4.8vw, 70px); }
.map-copy p { margin-top: 22px; color: var(--muted); font-size: 14px; }
.map-box { min-height: 370px; overflow: hidden; background: var(--sage); border: 1px solid var(--line); }
.map-frame { display: block; width: 100%; height: 370px; min-height: 370px; border: 0; }

/* Service detail pages */
.service-guide { background: var(--paper); }
.rich-content > h2 { max-width: 740px; margin-top: 21px; font-size: clamp(45px, 5vw, 72px); }
.rich-lead { max-width: 730px; margin-top: 24px; color: var(--muted); font-size: 16px; }
.rich-content > section { margin-top: 54px; padding-top: 27px; border-top: 1px solid var(--line); }
.rich-content h3 { font-family: var(--serif); font-size: 33px; font-weight: 400; }
.rich-content section p { max-width: 710px; margin-top: 14px; color: var(--muted); font-size: 14px; }
.service-aside { position: sticky; top: 116px; padding: 29px; background: var(--ink); color: var(--white); }
.service-aside .eyebrow { color: var(--lime); }
.service-aside h3 { margin-top: 19px; font-family: var(--serif); font-size: 32px; font-weight: 400; }
.service-aside > p { margin-top: 14px; color: rgba(255, 253, 248, .68); font-size: 13px; }
.aside-link { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255, 253, 248, .2); color: var(--white); font-size: 10px; font-weight: 800; }
.aside-link strong { display: block; margin-top: 6px; color: var(--lime); font-size: 14px; letter-spacing: .03em; }
.aside-link b { color: var(--coral); font-size: 19px; }
.service-process { padding-top: 110px; }
.highlight-grid, .process-grid, .guide-panels, .related-grid, .review-page-grid, .contact-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.highlight-grid article, .process-grid li, .guide-panels > div, .related-grid a, .review-page-card, .contact-page-card { border: 1px solid var(--line); background: var(--white); }
.highlight-grid article, .process-grid li, .guide-panels > div { min-height: 230px; padding: 27px; }
.highlight-grid article > span, .process-grid li > span { color: var(--coral-dark); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.highlight-grid h3, .process-grid h3 { margin-top: 46px; font-family: var(--serif); font-size: 31px; font-weight: 400; }
.highlight-grid p, .process-grid p { max-width: 290px; margin-top: 12px; color: var(--muted); font-size: 13px; }
.guide-panels { grid-template-columns: repeat(3, 1fr); }
.guide-panels h3 { margin-top: 16px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.guide-panels ul { display: grid; gap: 8px; margin-top: 18px; }
.guide-panels li { position: relative; padding-left: 17px; color: var(--muted); font-size: 12px; }
.guide-panels li::before { position: absolute; top: .68em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); content: ""; }
.related-section { background: var(--white); }
.related-grid a { position: relative; display: block; min-height: 138px; padding: 22px; transition: background .2s ease, color .2s ease; }
.related-grid a:hover { background: var(--ink); color: var(--white); }
.related-grid a span { color: var(--coral-dark); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.related-grid a strong { display: block; max-width: 270px; margin-top: 18px; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.related-grid a b { position: absolute; top: 21px; right: 21px; color: var(--coral); font-size: 21px; }

/* About, gallery, reviews, FAQ, contact, legal */
.simple-hero { padding: 62px 0 108px; background: var(--ink); color: var(--white); }
.simple-hero .breadcrumbs { margin-bottom: 63px; }
.simple-hero .eyebrow { color: var(--lime); }
.simple-hero h1 { max-width: 900px; margin-top: 25px; font-size: clamp(55px, 7vw, 94px); }
.simple-hero h1 em { color: var(--lime); }
.simple-hero .hero-lead { max-width: 710px; color: rgba(255, 253, 248, .7); font-size: 16px; }
.values-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: start; gap: 110px; }
.values-grid h2 { margin-top: 20px; font-size: clamp(45px, 5vw, 74px); }
.value-list { border-top: 1px solid var(--line); }
.value-list li { display: grid; grid-template-columns: 50px 1fr; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.value-list span { color: var(--coral-dark); font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.value-list h3 { font-family: var(--serif); font-size: 31px; font-weight: 400; }
.value-list p { max-width: 450px; margin-top: 8px; color: var(--muted); font-size: 13px; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 330px; gap: 18px; }
.gallery-item { position: relative; overflow: hidden; background: var(--ink); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); transition: transform .5s ease, filter .5s ease; }
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1); }
.gallery-large { grid-row: span 2; }
.gallery-wide { grid-column: 1 / -1; }
.gallery-item figcaption { position: absolute; z-index: 1; right: 25px; bottom: 24px; left: 25px; display: flex; flex-direction: column; gap: 7px; color: var(--white); }
.gallery-item figcaption strong { font-family: var(--serif); font-size: 29px; font-weight: 400; line-height: 1.02; }
.review-page-grid { grid-template-columns: repeat(2, 1fr); background: var(--sage); }
.review-page-card { min-height: 380px; padding: 29px; background: var(--white); }
.review-quote { display: block; margin-top: 58px; color: var(--coral-dark); font-family: var(--serif); font-size: 94px; line-height: .55; }
.review-page-card h2 { margin-top: 31px; font-family: var(--serif); font-size: 37px; font-weight: 400; }
.review-page-card p { margin-top: 13px; color: var(--muted); font-size: 13px; }
.contact-section { background: var(--paper); }
.contact-page-grid { grid-template-columns: repeat(2, 1fr); }
.contact-page-card { position: relative; min-height: 500px; overflow: hidden; padding: 34px; background: var(--sage); }
.contact-page-card::before { position: absolute; right: -115px; bottom: -150px; width: 350px; height: 350px; border: 1px solid rgba(18, 22, 19, .14); border-radius: 50%; content: ""; }
.contact-page-card > * { position: relative; z-index: 1; }
.contact-card-dark { background: var(--ink); color: var(--white); }
.contact-card-dark::before { border-color: rgba(255, 253, 248, .18); }
.contact-page-card > .card-kicker { display: block; margin-top: 42px; }
.contact-page-card h2 { margin-top: 14px; font-family: var(--serif); font-size: 48px; font-weight: 400; }
.contact-details { display: grid; gap: 22px; margin-top: 43px; padding-top: 23px; border-top: 1px solid rgba(18, 22, 19, .2); }
.contact-card-dark .contact-details { border-color: rgba(255, 253, 248, .2); }
.contact-details span, .contact-details a { color: var(--ink-soft); font-size: 13px; line-height: 1.5; }
.contact-card-dark .contact-details span, .contact-card-dark .contact-details a { color: rgba(255, 253, 248, .8); }
.contact-details em { color: var(--muted); font-family: var(--sans); font-size: 11px; font-style: normal; }
.contact-card-dark .contact-details em { color: rgba(255, 253, 248, .52); }
.contact-details a { font-weight: 800; }
.contact-details a small { color: var(--coral-dark); }
.contact-card-dark .contact-details a small { color: var(--lime); }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 25px; margin-top: 34px; }
.contact-card-dark .text-link { color: var(--white); }
.contact-card-dark .text-link span { color: var(--lime); }
.legal-content { background: var(--white); }
.legal-content h2 { margin-top: 48px; font-family: var(--serif); font-size: 36px; font-weight: 400; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { max-width: 760px; margin-top: 14px; color: var(--muted); font-size: 14px; }

.site-footer { padding: 82px 0 26px; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 55px; padding-bottom: 64px; }
.footer-brand p { max-width: 305px; margin-top: 24px; color: rgba(255, 253, 248, .58); font-size: 13px; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 11px; }
.footer-grid > div:not(.footer-brand) strong { margin-bottom: 6px; color: var(--lime); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) a { color: rgba(255, 253, 248, .68); font-size: 12px; }
.footer-grid > div:not(.footer-brand) a:hover { color: var(--lime); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 25px; padding-top: 23px; border-top: 1px solid rgba(255, 253, 248, .18); color: rgba(255, 253, 248, .47); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-bottom a { margin-left: auto; }
.mobile-action-bar { display: none; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }

@media (max-width: 1080px) {
    .container, .narrow { width: min(calc(100% - 56px), var(--container)); }
    .hero-grid, .inner-hero-grid { gap: 52px; }
    .hero-index { right: -24px; }
    .approach-grid, .two-column-section, .map-layout, .content-grid { gap: 58px; }
    .faq-grid { gap: 62px; }
}

@media (max-width: 860px) {
    .topbar-inner { justify-content: center; }
    .topbar-inner span:last-child { display: none; }
    .header-inner { min-height: 78px; }
    .site-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 7px 28px 27px; border-bottom: 1px solid var(--line-light); background: var(--ink); box-shadow: 0 20px 40px rgba(18, 22, 19, .25); }
    .site-nav.is-open { display: flex; }
    .site-nav > a:not(.nav-button) { padding: 16px 0; border-bottom: 1px solid rgba(255, 253, 248, .16); }
    .site-nav > a:not(.nav-button)::after { display: none; }
    .nav-button { justify-content: center; margin-top: 18px; }
    .menu-toggle { display: block; }
    .hero-grid, .inner-hero-grid, .approach-grid, .two-column-section, .content-grid, .map-layout, .faq-grid, .values-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 720px; }
    .hero-visual, .inner-hero-media { width: min(100%, 680px); margin: 20px 0 0; }
    .hero-photo, .hero-photo img { min-height: 560px; height: 560px; }
    .hero-branch-pane { height: 560px; }
    .inner-hero-media, .inner-hero-media img { min-height: 510px; height: 510px; }
    .section-heading-wide, .branch-content .section-heading { grid-template-columns: 1fr; gap: 22px; }
    .section-heading-wide > p, .branch-content .section-heading > p { margin: 0; }
    .service-cards { grid-template-columns: repeat(2, 1fr); }
    .service-card-featured { grid-column: auto; display: flex; }
    .review-grid-home { grid-template-columns: 70px 1fr; }
    .review-side { grid-column: 2; max-width: 270px; }
    .detail-bar-grid { grid-template-columns: repeat(3, 1fr); }
    .detail-bar-grid > div:first-child { padding-left: 28px; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-grid > div:last-child { display: none; }
}

@media (max-width: 620px) {
    .container, .narrow { width: min(calc(100% - 38px), var(--container)); }
    .topbar { font-size: 8px; }
    .brand-name { font-size: 25px; }
    .brand-tagline { font-size: 7px; }
    .section { padding: 82px 0; }
    .home-hero { padding: 46px 0 76px; }
    .home-hero::before { top: 230px; right: -330px; width: 520px; height: 520px; }
    .hero-copy h1 { font-size: clamp(48px, 14vw, 70px); }
    .hero-lead { font-size: 14px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
    .hero-photo, .hero-photo img { min-height: 405px; height: 405px; }
    .hero-branch-pane { height: 405px; }
    .hero-photo figcaption { right: 21px; bottom: 21px; left: 21px; }
    .hero-photo figcaption strong { font-size: 28px; }
    .hero-index { display: none; }
    .section-heading { margin-bottom: 37px; }
    .section-heading h2, .approach-intro h2, .review-grid-home h2, .feature-copy h2, .map-copy h2 { font-size: clamp(42px, 12.5vw, 61px); }
    .service-cards, .branch-cards, .highlight-grid, .process-grid, .guide-panels, .related-grid, .review-page-grid, .contact-page-grid, .gallery-grid { grid-template-columns: 1fr; }
    .service-card-featured { grid-column: auto; display: flex; }
    .service-card, .service-card-featured { min-height: 0; }
    .service-card-image, .service-card-featured .service-card-image { min-height: 205px; height: 205px; }
    .service-card-body { min-height: 245px; }
    .service-card h3 { font-size: 31px; }
    .section-tail { display: grid; gap: 12px; }
    .branch-card-photo { height: 240px; }
    .branch-card-content { padding: 24px 21px 26px; }
    .branch-card h3 { font-size: 33px; }
    .branch-info { grid-template-columns: 1fr; gap: 16px; }
    .approach-grid { gap: 46px; }
    .approach-steps { padding: 5px 20px; }
    .approach-steps li { grid-template-columns: 40px 1fr; gap: 14px; padding: 23px 0; }
    .review-grid-home { grid-template-columns: 38px 1fr; gap: 16px; padding: 33px 23px; }
    .review-mark { font-size: 82px; }
    .review-side { grid-column: 2; padding: 21px; }
    .faq-list summary { min-height: 70px; font-size: 13px; }
    .faq-list details p { padding-right: 25px; font-size: 12px; }
    .closing-inner { grid-template-columns: 1fr; gap: 30px; min-height: 0; padding-top: 83px; padding-bottom: 83px; }
    .closing-inner h2 { font-size: clamp(47px, 13vw, 65px); }
    .inner-hero, .simple-hero { padding: 48px 0 74px; }
    .breadcrumbs { margin-bottom: 42px; font-size: 10px; }
    .inner-hero h1, .simple-hero h1 { font-size: clamp(47px, 13.5vw, 70px); }
    .inner-hero-media, .inner-hero-media img { min-height: 390px; height: 390px; }
    .detail-bar-grid { grid-template-columns: 1fr; }
    .detail-bar-grid > div, .detail-bar-grid > div:first-child { min-height: 93px; padding: 19px 0; border-right: 0; border-bottom: 1px solid rgba(18, 22, 19, .2); }
    .detail-bar-grid > div:last-child { border-bottom: 0; }
    .branch-service-row { grid-template-columns: 35px 1fr 22px; gap: 12px; min-height: 106px; padding: 0 14px; }
    .branch-service-row:hover { padding-right: 17px; padding-left: 17px; }
    .branch-service-row strong { font-size: 23px; }
    .row-description { display: none; }
    .feature-photo, .feature-photo img { min-height: 345px; height: 345px; }
    .map-layout { gap: 41px; }
    .map-box, .map-frame { min-height: 320px; height: 320px; }
    .service-aside { position: static; }
    .rich-content > h2 { font-size: clamp(43px, 12vw, 60px); }
    .highlight-grid article, .process-grid li, .guide-panels > div { min-height: 205px; }
    .gallery-grid { grid-auto-rows: 280px; gap: 14px; }
    .gallery-large { grid-row: auto; }
    .gallery-wide { grid-column: auto; }
    .contact-page-card { min-height: 0; padding: 27px 22px 29px; }
    .contact-page-card h2 { font-size: 38px; }
    .contact-details { margin-top: 31px; padding-top: 20px; }
    .contact-actions { margin-top: 29px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 21px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-grid > div:last-child { display: grid; }
    .footer-bottom { display: grid; gap: 9px; }
    .footer-bottom a { margin-left: 0; }
    .site-footer { padding-bottom: 99px; }
    .mobile-action-bar { position: fixed; z-index: 90; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255, 253, 248, .18); background: rgba(18, 22, 19, .96); color: var(--white); backdrop-filter: blur(14px); }
    .mobile-action-bar a { display: grid; min-height: 57px; place-items: center; color: rgba(255, 253, 248, .75); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
    .mobile-action-bar a:first-child { background: var(--lime); color: var(--ink); }
}

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