:root {
    --paper: #f5f0e6;
    --paper-soft: #fbf8f1;
    --ink: #151716;
    --muted: #686158;
    --green: #173f36;
    --green-2: #235648;
    --clay: #a65c3f;
    --gold: #b99353;
    --line: rgba(21, 23, 22, .14);
    --shadow: 0 24px 70px rgba(37, 29, 18, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.rtl {
    font-family: Tahoma, Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0;
}

.rtl h1,
.rtl h2 {
    font-family: Tahoma, Arial, sans-serif;
}

.site-nav {
    background: rgba(245, 240, 230, .88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
    padding: 12px 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: var(--green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: .82rem;
    border-radius: 50%;
}

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong {
    color: var(--ink);
    font-size: .98rem;
}

.brand-copy small {
    color: var(--muted);
    font-size: .76rem;
}

.nav-link {
    color: var(--muted);
    font-size: .92rem;
    font-weight: 650;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: var(--green);
}

.language-switch {
    display: flex;
    gap: 6px;
    margin-inline-start: 18px;
}

.language-switch a {
    width: 38px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: .78rem;
    font-weight: 750;
}

.language-switch a.active,
.language-switch a:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.navbar-toggler {
    border: 0;
    padding-inline-end: 0;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 110px 0 70px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(245, 240, 230, .94), rgba(245, 240, 230, .78)),
        radial-gradient(circle at 88% 18%, rgba(166, 92, 63, .2), transparent 30%),
        linear-gradient(135deg, var(--paper), #e9dfcf);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(21, 23, 22, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 23, 22, .05) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero::after {
    content: "";
    position: absolute;
    width: min(62vw, 760px);
    aspect-ratio: 1;
    inset-inline-end: -12vw;
    top: 10vh;
    border: 1px solid rgba(23, 63, 54, .2);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .65fr);
    align-items: center;
    gap: clamp(34px, 6vw, 92px);
}

.eyebrow {
    color: var(--clay);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1 {
    max-width: 860px;
    margin: 0;
    font-size: clamp(3.4rem, 9vw, 8.4rem);
    line-height: .88;
}

.lead-text {
    max-width: 680px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.btn {
    border-radius: 0;
    min-height: 48px;
    padding: 12px 22px;
    font-weight: 750;
}

.btn-primary-quiet {
    color: #fff;
    background: var(--green);
    border-color: var(--green);
}

.btn-primary-quiet:hover,
.btn-primary-quiet:focus {
    color: #fff;
    background: var(--green-2);
    border-color: var(--green-2);
}

.btn-outline-quiet {
    color: var(--green);
    border-color: rgba(23, 63, 54, .34);
    background: rgba(255, 255, 255, .2);
}

.btn-outline-quiet:hover,
.btn-outline-quiet:focus {
    color: #fff;
    background: var(--green);
    border-color: var(--green);
}

.hero-panel {
    position: relative;
    padding: clamp(26px, 4vw, 42px);
    background: var(--green);
    color: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, .2);
    pointer-events: none;
}

.visual-seal {
    width: 210px;
    max-width: 100%;
    margin: 0 auto 34px;
    display: grid;
    place-items: center;
}

.visual-seal img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 18px rgba(185, 147, 83, .45));
}

.meta-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
}

.meta-list span {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.hero-panel address {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    line-height: 1.75;
}

.hero-panel a {
    color: #fff;
    font-weight: 750;
}

.section {
    padding: clamp(76px, 10vw, 128px) 0;
}

.section-heading {
    margin-bottom: 36px;
}

.section-heading.wide {
    max-width: 900px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2.1rem, 4.6vw, 4.8rem);
    line-height: .98;
}

.section-heading p {
    max-width: 700px;
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(300px, .62fr);
    gap: clamp(28px, 6vw, 88px);
    align-items: start;
}

.body-large {
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.85;
}

.principles {
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--paper-soft);
    border: 1px solid var(--line);
}

.principles li {
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
}

.principles li:last-child {
    border-bottom: 0;
}

.practice {
    background: var(--paper-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.practice-card {
    min-height: 280px;
    padding: clamp(22px, 3vw, 34px);
    background: #fffdf8;
    transition: background .2s ease, transform .2s ease;
}

.practice-card:hover {
    background: #fff;
    transform: translateY(-3px);
}

.practice-card h3 {
    margin: 0 0 14px;
    font-size: 1.28rem;
    line-height: 1.28;
}

.practice-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.method {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(23, 63, 54, .95), rgba(35, 86, 72, .92)),
        linear-gradient(90deg, transparent, rgba(185, 147, 83, .16));
}

.method .eyebrow {
    color: var(--gold);
}

.method-layout {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 84px);
}

.method-steps {
    display: grid;
    gap: 1px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .16);
}

.method-steps article {
    padding: 28px;
    background: rgba(0, 0, 0, .12);
}

.method-steps span {
    color: var(--gold);
    font-weight: 800;
    font-size: .8rem;
}

.method-steps h3 {
    margin: 0 0 10px;
}

.method-steps p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    line-height: 1.75;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
    gap: clamp(28px, 6vw, 84px);
}

.contact-card,
.notice,
.map-frame {
    background: #fffdf8;
    border: 1px solid var(--line);
    box-shadow: 0 12px 44px rgba(37, 29, 18, .06);
}

.contact-card {
    display: grid;
    gap: 12px;
    margin: 0 0 18px;
    padding: 26px;
    color: var(--muted);
    font-style: normal;
    line-height: 1.65;
}

.contact-card strong {
    color: var(--ink);
    font-size: 1.16rem;
}

.contact-card a {
    color: var(--green);
    font-weight: 800;
}

.notice {
    padding: 24px 26px;
}

.notice h3 {
    margin: 0 0 16px;
    font-size: 1.2rem;
}

.notice p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.map-frame {
    overflow: hidden;
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 480px;
    border: 0;
}

.site-footer {
    padding: 28px 0;
    color: rgba(255, 255, 255, .72);
    background: var(--ink);
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.site-footer span:first-child {
    color: #fff;
    font-weight: 800;
}

.footer-credit {
    color: rgba(255, 255, 255, .45);
    font-size: .78rem;
}

.footer-credit a {
    color: rgba(255, 255, 255, .65);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-credit a:hover {
    color: #fff;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding-top: 16px;
    }

    .language-switch {
        margin: 12px 0 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid,
    .two-column,
    .method-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 560px;
    }

    .practice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .brand-copy strong {
        max-width: 210px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    h1 {
        font-size: 3.25rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .section-heading,
    .section-heading.wide {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .practice-grid {
        grid-template-columns: 1fr;
    }

    .practice-card {
        min-height: auto;
    }

    .site-footer .container {
        display: grid;
    }
}
