:root {
    --bg: #f4f2ed;
    --bg-soft: #fdfbf7;
    --ink: #18222b;
    --muted: #5f6a74;
    --brand: #ae3336;
    --brand-dark: #7f1f22;
    --line: #d8d3c8;
    --accent: #e9dfce;
    --white: #ffffff;
    --shadow: 0 20px 45px rgba(24, 34, 43, 0.14);
    --radius-xl: 26px;
    --radius-lg: 18px;
    --radius-sm: 12px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Noto Sans", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% -20%, #fff7ec 0, rgba(255, 247, 236, 0) 50%),
        radial-gradient(circle at 90% 0%, #e8f0f4 0, rgba(232, 240, 244, 0) 42%),
        var(--bg);
    line-height: 1.65;
}

img {
    max-width: 100%;
    display: block;
}

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

.site-shell {
    min-height: 100vh;
}

.container {
    width: min(var(--container), calc(100% - 2.6rem));
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: "Noto Serif", Georgia, serif;
    line-height: 1.18;
    margin: 0 0 0.7rem;
}

h1 {
    font-size: clamp(2rem, 4.8vw, 4rem);
}

h2 {
    font-size: clamp(1.7rem, 3.3vw, 2.8rem);
}

h3 {
    font-size: clamp(1.15rem, 2.1vw, 1.45rem);
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

.top-strip {
    background: #fff;
    color: var(--ink);
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(127, 31, 34, 0.08);
}

.top-strip__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 0;
}

.top-strip__promo,
.top-strip__meta,
.top-strip__hours,
.top-strip__socials {
    display: flex;
    align-items: center;
}

.top-strip__promo,
.top-strip__meta {
    gap: 1rem;
}

.top-strip__promo {
    position: relative;
    flex: 0 1 auto;
    flex-wrap: wrap;
    min-height: 46px;
    padding: 0.55rem 2.6rem 0.55rem 0;
    color: rgba(255, 255, 255, 0.96);
    font-weight: 700;
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-dark) 100%);
}

.top-strip__promo::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    width: 100vw;
    background: var(--brand);
}

.top-strip__promo::after {
    content: "";
    position: absolute;
    top: 0;
    right: -26px;
    width: 52px;
    height: 100%;
    background: #fff;
    transform: skewX(-28deg);
    transform-origin: center;
}

.top-strip__promo a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #fff;
    font-weight: 800;
}

.top-strip__arrow {
    font-size: 1.2em;
    line-height: 1;
}

.top-strip__promo a:hover {
    text-decoration: underline;
}

.top-strip__meta {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    justify-content: flex-end;
    flex-wrap: wrap;
    min-height: 46px;
    padding-left: 3.1rem;
}

.top-strip__hours {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #5a6570;
    font-weight: 500;
}

.top-strip__status-icon {
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ae3336' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E") no-repeat center / contain;
}

.top-strip__hours-text {
    font-size: 0.85rem;
    letter-spacing: -0.01em;
}

.top-strip__hours-text span {
    font-weight: 800;
    color: var(--ink);
    margin-left: 0.2rem;
}

.top-strip__socials {
    gap: 0.55rem;
}

.top-strip__divider {
    margin: 0 1rem;
    color: var(--line);
    font-weight: 300;
    transform: skewX(-20deg);
    display: inline-block;
}

.top-strip__contact {
    display: flex;
    align-items: center;
}

.top-strip__email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    color: var(--brand-dark);
    transition: color 0.2s ease;
}

.top-strip__email:hover {
    color: var(--brand);
}

.top-strip__email-icon {
    width: 16px;
    height: 16px;
    background-color: var(--brand);
    display: inline-block;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
}

.social-link {
    width: 1.7rem;
    height: 1.7rem;
    border: 1px solid rgba(127, 31, 34, 0.22);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: lowercase;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-link::before {
    display: block;
    line-height: 1;
}

.social-link--linkedin::before {
    content: "in";
    font-size: 0.72rem;
    font-weight: 900;
}

.social-link--instagram::before {
    content: "";
    width: 13px;
    height: 13px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237f1f22' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E") no-repeat center / contain;
}

.social-link:hover {
    background: rgba(174, 51, 54, 0.08);
    border-color: rgba(127, 31, 34, 0.4);
    transform: translateY(-1px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(10px);
    background: rgba(253, 251, 247, 0.9);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.4rem;
    min-height: 96px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-phone-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--line);
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-phone-btn:hover {
    background: #fdfbf8;
    border-color: var(--brand);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(174, 51, 54, 0.08);
}

.nav-phone-btn__icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    background: var(--bg-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-phone-btn__icon::before {
    content: "";
    width: 18px;
    height: 18px;
    background-color: var(--brand);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E") no-repeat center / contain;
}

.nav-phone-btn__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-weight: 800;
    color: var(--ink);
    font-size: 1.05rem;
}

.nav-phone-btn__text small {
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    font-family: "Noto Serif", Georgia, serif;
}

.brand img {
    width: auto;
    height: 80px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.main-nav a {
    padding: 0.52rem 0.78rem;
    border-radius: 999px;
    font-weight: 700;
    color: #44505b;
    transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--brand-dark);
    background: #f2ece3;
}

/* ── Dropdown nav items ── */
.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.52rem 0.78rem;
    border-radius: 999px;
    font: inherit;
    font-weight: 700;
    color: #44505b;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.25s ease;
}

.nav-trigger:hover,
.nav-item.open > .nav-trigger {
    color: var(--brand-dark);
    background: #f2ece3;
}

.nav-arrow {
    font-size: 0.65em;
    display: inline-block;
    transition: transform 0.2s ease;
    line-height: 1;
}

.has-dropdown:hover .nav-arrow,
.has-dropdown.open .nav-arrow {
    transform: rotate(180deg);
}

.nav-item__dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    transform: translateY(-6px);
    min-width: 220px;
    max-width: 90vw;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    padding: 0.35rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 200;
}

.nav-item__dropdown::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 10px;
}

.nav-item__dropdown a {
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    white-space: normal;
    font-weight: 600;
    color: #44505b;
    transition: 0.2s ease;
}

.nav-item__dropdown a:hover {
    background: #f2ece3;
    color: var(--brand-dark);
}

.has-dropdown:hover .nav-item__dropdown,
.has-dropdown.open .nav-item__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-item.active > a,
.nav-item.active > .nav-trigger {
    color: var(--brand-dark);
    background: #f2ece3;
}

.menu-toggle {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 0.86rem 1.4rem;
    box-shadow: 0 10px 25px rgba(127, 31, 34, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(127, 31, 34, 0.26);
}

.btn-secondary {
    background: #fff;
    color: var(--ink);
    border: 1px solid #d6ccc0;
    box-shadow: none;
}

.btn-small {
    padding: 0.64rem 1.12rem;
    font-size: 0.88rem;
}

.hero {
    padding: clamp(2.3rem, 5vw, 4.3rem) 0 2.1rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(1.2rem, 3vw, 2.2rem);
    align-items: stretch;
}

.hero-copy {
    padding: clamp(1.4rem, 3vw, 2rem);
    border-radius: var(--radius-xl);
    background: linear-gradient(130deg, #fff 0%, #f5efe6 100%);
    border: 1px solid #e9dfd2;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-copy::before {
    content: "";
    position: absolute;
    inset: -30% auto auto -18%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(174, 51, 54, 0.12) 0%, rgba(174, 51, 54, 0) 70%);
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-dark);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.78rem;
    margin-bottom: 0.9rem;
}

.kicker::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--brand);
}

.hero-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-top: 1.3rem;
}

.mini-stats {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.mini-stats span {
    background: #f6f1e8;
    border: 1px solid #e4d9c8;
    border-radius: 999px;
    padding: 0.4rem 0.82rem;
    font-weight: 700;
    color: #48535f;
    font-size: 0.84rem;
}

.hero-media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    min-height: 420px;
    border: 1px solid #e8ddcd;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-media img {
    max-width: 100%;
    max-height: 460px;
    width: auto;
    height: auto;
    object-fit: contain;
}


.hero-overlay-card {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: min(260px, 80%);
    background: rgba(24, 34, 43, 0.84);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.hero-overlay-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.92rem;
}

.section {
    padding: clamp(2.2rem, 5vw, 4.2rem) 0;
}

.section-muted {
    background: linear-gradient(180deg, #fdfbf8 0%, #f4efe6 100%);
    border-top: 1px solid #e8e0d3;
    border-bottom: 1px solid #e8e0d3;
}

.section-title {
    max-width: 760px;
    margin-bottom: 1.35rem;
}

.service-grid,
.principles-grid,
.news-grid,
.staff-grid,
.partners-grid,
.plans-grid,
.two-col-grid,
.testimonial-grid,
.glossary-grid,
.corporate-grid {
    display: grid;
    gap: 1rem;
}

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

.service-card,
.principle-card,
.news-card,
.testimonial-card,
.staff-card,
.partner-card,
.plan-card,
.content-panel,
.post-panel,
.timeline-item,
.glossary-card,
.stat-card {
    background: var(--white);
    border: 1px solid #e6ddd0;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 28px rgba(24, 34, 43, 0.07);
}

.service-card,
.principle-card,
.news-card,
.testimonial-card,
.staff-card,
.plan-card,
.content-panel,
.post-panel,
.glossary-card {
    padding: 1.15rem;
}

.service-card h3,
.principle-card h3,
.news-card h3,
.staff-card h3,
.plan-card h3,
.glossary-card h3 {
    margin-bottom: 0.55rem;
}

.service-card svg {
    display: block;
    margin-bottom: 0.8rem;
}

.service-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100%;
    gap: 1rem;
}

.service-feature .feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: #f6f1e8;
    border: 1px solid rgba(174, 51, 54, 0.12);
    color: #AE3336;
}

.service-feature .feature-icon svg {
    width: 34px;
    height: 34px;
}

.service-feature h3 {
    margin-bottom: 0.6rem;
}

.service-card p,
.principle-card p,
.news-card p,
.glossary-card p,
.testimonial-card p,
.plan-card p {
    font-size: 0.95rem;
}

.service-card a.inline-link,
.news-card a.inline-link {
    color: var(--brand-dark);
    font-weight: 800;
    font-size: 0.9rem;
}

.partners-slider-box {
    background: #fff;
    padding: 3.5rem 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid #e8e0d3;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
}

.partners-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
    gap: 5rem;
    align-items: center;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-slide {
    width: 220px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1) contrast(0.8);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.partner-slide img:hover {
    filter: grayscale(0) contrast(1);
    opacity: 1;
    transform: scale(1.15);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-220px * 6 - 5rem * 6)); }
}

@media (max-width: 1024px) {
    .partners-slider-box {
        padding: 2.5rem 1rem;
    }
    .partner-slide {
        width: 180px;
        height: 80px;
    }
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-180px * 6 - 5rem * 6)); }
    }
}

@media (max-width: 640px) {
    .partner-slide {
        width: 140px;
        height: 60px;
    }
    .partners-track {
        gap: 3rem;
    }
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-140px * 6 - 3rem * 6)); }
    }
}

.principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.principles-grid > .content-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.principle-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}

.principle-number {
    font-family: "Noto Serif", Georgia, serif;
    font-size: 4rem;
    font-weight: 900;
    color: #AE3336;
    opacity: 0.1;
    margin-bottom: -2rem;
    line-height: 1;
}

.principle-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.principle-icon svg {
    color: #AE3336;
    width: 40px;
    height: 40px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

.why-us-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid #e6ddd0;
    box-shadow: 0 10px 30px rgba(24, 34, 43, 0.04);
}

.why-us-lead {
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--brand-dark);
    font-family: "Noto Serif", serif;
    font-weight: 700;
}

.why-us-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.benefit-item {
    background: #fff;
    padding: 1.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid #f2ece3;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.benefit-item:hover {
    border-color: var(--brand);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(174, 51, 54, 0.08);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    background: #fdfbf8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    border: 1px solid rgba(174, 51, 54, 0.1);
}

.benefit-item span {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
    line-height: 1.3;
}

@media (max-width: 960px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .why-us-benefits {
        grid-template-columns: 1fr;
    }
}

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

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

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1rem 0.5rem 2rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}
.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.testimonial-slider > article {
    flex: 0 0 calc(50% - 0.75rem);
    scroll-snap-align: start;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.testimonial-slider > article p {
    flex-grow: 1;
}

@media (max-width: 640px) {
    .testimonial-slider > article {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

.testimonial-card {
    background: var(--white);
    border: 1px solid #e6ddd0;
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(24, 34, 43, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand);
    box-shadow: 0 20px 45px rgba(174, 51, 54, 0.08);
}

.testimonial-card__quote {
    position: relative;
    flex-grow: 1;
}

.testimonial-card__quote::before {
    content: "“";
    position: absolute;
    top: -1.2rem;
    left: -0.5rem;
    font-family: "Noto Serif", serif;
    font-size: 4rem;
    color: var(--brand);
    opacity: 0.12;
    line-height: 1;
}

.testimonial-card__quote p {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--ink);
    margin: 0;
    position: relative;
    z-index: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid #f2ece3;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(174, 51, 54, 0.2);
}

.testimonial-card__info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--brand-dark);
}

.testimonial-card__info span {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

.plan-preview {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.plan-preview .price {
    font-size: 2.1rem;
    color: var(--brand-dark);
    font-family: "Noto Serif", Georgia, serif;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 3rem;
    background: #e2dbd1;
    padding: 0.5rem;
    border-radius: 22px;
    gap: 0.4rem;
    border: 1px solid rgba(127, 31, 34, 0.12);
}

.tab-btn {
    background: transparent;
    border: none;
    color: #44505b;
    padding: 0.9rem 3.5rem;
    font-family: "Noto Serif", serif;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: 17px;
    cursor: pointer;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.tab-btn:hover:not(.active) {
    color: var(--brand-dark);
    background: rgba(255, 255, 255, 0.3);
}

.tab-btn.active {
    background: var(--white);
    color: var(--brand-dark);
    box-shadow: 
        0 12px 30px rgba(127, 31, 34, 0.15),
        0 4px 10px rgba(0,0,0,0.05);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.news-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0.9rem;
    align-items: center;
}

.news-card img {
    width: 100%;
    height: 130px;
    border-radius: 12px;
    object-fit: cover;
}

.news-date {
    display: inline-block;
    font-weight: 800;
    color: var(--brand-dark);
    font-size: 0.82rem;
    margin-bottom: 0.45rem;
}

.cta-band {
    margin-top: 2rem;
    background: linear-gradient(120deg, #202b34 0%, #10171f 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.page-hero {
    position: relative;
    padding: clamp(2.1rem, 4.5vw, 4rem) 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, #4a1417 0%, #1d2c3a 58%, #172229 100%);
    z-index: -2;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at -6% 55%, rgba(174, 51, 54, 0.55) 0%, transparent 52%),
        repeating-linear-gradient(
            -45deg,
            transparent 0px,
            transparent 26px,
            rgba(255, 255, 255, 0.03) 26px,
            rgba(255, 255, 255, 0.03) 27px
        );
    z-index: -1;
}

.page-hero h1,
.page-hero p {
    color: #fff;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.9rem;
}

.content-wrap {
    padding: 2rem 0 3rem;
}

.two-col-grid {
    grid-template-columns: 1.2fr 0.8fr;
}

.content-panel {
    padding: 1.4rem;
}

.content-panel ul {
    margin: 0.8rem 0 0;
    padding-left: 1.1rem;
}

.content-panel li {
    color: #4f5a63;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.stat-card {
    padding: 1rem;
}

.stat-card .stat-value {
    font-size: 1.7rem;
    color: var(--brand-dark);
    font-family: "Noto Serif", Georgia, serif;
    font-weight: 900;
}

.timeline {
    position: relative;
    padding-left: 3rem;
    margin: 2rem 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--brand) 0%, var(--accent) 100%);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 3.5rem;
    background: #fff;
    padding: 2rem;
    border: 1px solid #f2ece3;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
    border-color: var(--brand);
    box-shadow: 0 15px 35px rgba(174, 51, 54, 0.08);
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -3rem;
    top: 2.2rem;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid var(--brand);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    background: var(--brand);
    transform: scale(1.3);
}

.timeline-year {
    display: inline-block;
    font-family: "Noto Serif", Georgia, serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--brand);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.timeline-item h3 {
    font-size: 1.3rem;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

.timeline-item p:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .timeline {
        padding-left: 1.5rem;
        margin-left: 0.5rem;
    }
    .timeline-item {
        padding: 1.5rem;
    }
    .timeline-item::before {
        left: -1.75rem;
    }
}

.plans-hero {
    margin-bottom: 1rem;
}

.plan-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card .price {
    font-family: "Noto Serif", Georgia, serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--brand);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.plan-card .price::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.plan-card .price small {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: "Noto Sans", sans-serif;
}

.plan-card .btn {
    margin-top: auto;
    align-self: center;
    width: fit-content;
}

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

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

.staff-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

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

.partner-card {
    padding: 1rem;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card img {
    max-height: 56px;
    object-fit: contain;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: stretch;
}

.contact-info {
    padding: 2.2rem;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid #e8e0d3;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.contact-details {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: grid;
    gap: 1.5rem;
}

.contact-details__item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info h3::after,
.contact-form h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 3px;
    background: var(--brand);
    border-radius: 2px;
}

.contact-details {
    list-style: none;
    margin: 0 0 2.5rem;
    padding: 0;
    display: grid;
    gap: 1.2rem;
}

.contact-details__item {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    background: #fdfbf8;
    border: 1px solid #f2ece3;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-details__item:hover {
    background: #fff;
    border-color: var(--brand);
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(174, 51, 54, 0.06);
}

.contact-details__icon {
    flex: 0 0 46px;
    height: 46px;
    background: #fff;
    border: 1px solid #f2ece3;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-details__item:hover .contact-details__icon {
    background: var(--brand);
    border-color: var(--brand);
    transform: scale(1.1);
}

.contact-details__icon::before {
    content: "";
    width: 22px;
    height: 22px;
    background-color: var(--brand);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    transition: background-color 0.3s ease;
}

.contact-details__item:hover .contact-details__icon::before {
    background-color: #fff;
}

.contact-details__icon--phone::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
}

.contact-details__icon--email::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
}

.contact-details__icon--address::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
}

.contact-details__icon--hours::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
}

.contact-details__content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-details__content strong {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 800;
}

.contact-details__content a,
.contact-details__content span {
    font-size: 1.05rem;
    color: var(--ink);
    font-weight: 700;
    transition: color 0.2s ease;
}

.contact-details__content a:hover {
    color: var(--brand);
}

.contact-form {
    background: #fff;
    border: 1px solid #e8e0d3;
    border-radius: var(--radius-xl);
    padding: 2.2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.field {
    display: grid;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.field label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--ink);
    padding-left: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid #e2d9cc;
    border-radius: 16px;
    padding: 1.1rem 1.3rem;
    font: inherit;
    color: var(--ink);
    background: #fdfbf8;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 10px 25px rgba(174, 51, 54, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--muted);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.input-wrapper:focus-within .input-icon {
    background-color: var(--brand);
}

.icon-user { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E"); }
.icon-email { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E"); }
.icon-phone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E"); }

.field input {
    padding-left: 3.2rem !important;
}

.field--full {
    flex-grow: 1;
}

.field textarea {
    min-height: 180px;
    resize: none;
}

.form-h-pot {
    display: none !important;
}

.form-captcha {
    display: flex;
    justify-content: center;
    margin: 1rem 0 1.5rem;
    min-height: 65px;
}

.form-footer {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.contact-form .btn {
    min-width: 240px;
    gap: 0.8rem;
    padding: 1.1rem 2.8rem;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.contact-form .btn:hover .btn-arrow {
    transform: translateX(5px);
}

@media (max-width: 960px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-map {
    margin-top: 1rem;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid #f2ece3;
}

.contact-map iframe {
    display: block;
}

.alert {
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    margin-bottom: 1rem;
    font-size: 0.92rem;
}

.alert-success {
    background: #e9f7ef;
    border: 1px solid #b7e6c8;
    color: #1d6a3a;
}

.alert-error {
    background: #fff1f1;
    border: 1px solid #f1c8c8;
    color: #922d2d;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.facebook-feed-container {
    max-width: 600px;
    margin: 0 auto;
}

.facebook-feed-card {
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid #e8e0d3;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.facebook-feed-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f2ece3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fdfbf8;
}

.fb-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fb-icon {
    width: 42px;
    height: 42px;
    background-color: #1877F2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fb-icon::before {
    content: "";
    width: 24px;
    height: 24px;
    background-color: #fff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'%3E%3C/path%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'%3E%3C/path%3E%3C/svg%3E") no-repeat center / contain;
}

.fb-brand h4 {
    margin: 0;
    font-size: 1rem;
}

.fb-brand p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--muted);
}

.facebook-feed-inner {
    padding: 1rem;
    display: flex;
    justify-content: center;
    background: #fff;
    min-height: 700px;
}

.facebook-feed-inner .fb-page {
    width: 100% !important;
}

.facebook-feed-inner .fb-page {
    display: inline-flex !important;
    justify-content: center;
    max-width: 100% !important;
}

.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid #e4dacb;
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card__body {
    padding: 1rem 1.05rem 1.15rem;
}

.post-panel {
    padding: 1.4rem;
    max-width: 880px;
    margin: 1.4rem auto 0;
}

.post-cover {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 1rem;
    object-fit: cover;
    max-height: 450px;
}

.post-panel p {
    color: #47535e;
}

.site-footer {
    margin-top: 4rem;
    background: #18222b;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-ornament {
    position: absolute;
    inset: auto -100px -100px auto;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(174, 51, 54, 0.2) 0%, rgba(174, 51, 54, 0) 70%);
    pointer-events: none;
}

.footer-grid {
    padding: 4rem 0 3rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
    gap: 2.5rem;
}

.footer-logo {
    font-family: "Noto Serif", Georgia, serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.2rem;
    letter-spacing: 0.05em;
}

.footer-grid h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-grid h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--brand);
}

.footer-grid p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--brand);
    transform: translateX(5px);
}

.footer-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    flex: 0 0 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--brand);
}

.contact-icon::before {
    content: "";
    width: 18px;
    height: 18px;
    background-color: #fff;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.contact-item--phone .contact-icon::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
}

.contact-item--email .contact-icon::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
}

.contact-item--address .contact-icon::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-content a, .contact-content span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.contact-content a:hover {
    color: var(--brand);
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--brand);
    border-color: var(--brand);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(174, 51, 54, 0.3);
}

.social-btn::before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #fff;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.social-btn--facebook::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'%3E%3C/path%3E%3C/svg%3E");
}

.social-btn--instagram::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'%3E%3C/rect%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'%3E%3C/path%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'%3E%3C/line%3E%3C/svg%3E");
}

.social-btn--linkedin::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z'%3E%3C/path%3E%3Crect x='2' y='9' width='4' height='12'%3E%3C/rect%3E%3Ccircle cx='4' cy='4' r='2'%3E%3C/circle%3E%3C/svg%3E");
}

.social-btn--tiktok::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 12a4 4 0 1 0 4 4V4a5 5 0 0 0 5 5'%3E%3C/path%3E%3C/svg%3E");
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.footer-developer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    font-weight: 600;
}

.footer-developer a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

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

.dev-logo {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

@media (max-width: 640px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-grid h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-list a:hover {
        transform: translateY(-3px);
    }
}

.consulting-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.consulting-card {
    background: #fff;
    padding: 2.2rem 1.8rem;
    border-radius: var(--radius-lg);
    border: 1px solid #e8e0d3;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.consulting-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand);
    box-shadow: 0 22px 45px rgba(174, 51, 54, 0.08);
}

.consulting-card__icon {
    width: 64px;
    height: 64px;
    background: #fdfbf8;
    border-radius: 18px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid #f2ece3;
}

.consulting-card__icon::before {
    content: "";
    width: 32px;
    height: 32px;
    background-color: var(--brand);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.consulting-card__icon--tax::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='1' x2='12' y2='23'%3E%3C/line%3E%3Cpath d='M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'%3E%3C/path%3E%3C/svg%3E");
}

.consulting-card__icon--risk::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'%3E%3C/path%3E%3Cline x1='12' y1='9' x2='12' y2='13'%3E%3C/line%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'%3E%3C/line%3E%3C/svg%3E");
}

.consulting-card__icon--audit::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V8s0-2-2-2H6c-2 0-2 2-2 2v4c0 6 8 10 8 10z'%3E%3C/path%3E%3Cpath d='M9 12l2 2 4-4'%3E%3C/path%3E%3C/svg%3E");
}

.consulting-card h3 {
    font-size: 1.4rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.consulting-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.consulting-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #f2ece3;
    padding-top: 1.2rem;
}

.consulting-card__list li {
    font-size: 0.88rem;
    font-weight: 700;
    color: #46515b;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.consulting-card__list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--brand);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .consulting-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .consulting-grid {
        grid-template-columns: 1fr;
    }
}

.target-audience-card {
    background: linear-gradient(145deg, #fff 0%, #fdfbf7 100%);
    border: 1px solid var(--accent);
    padding: 2rem !important;
}

.audience-list {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1.2rem;
}

.audience-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--ink);
    font-size: 0.95rem;
}

.audience-list__icon {
    flex: 0 0 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #f2ece3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.audience-list__icon::before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--brand);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.audience-list__icon--staff::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='9' cy='7' r='4'%3E%3C/circle%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'%3E%3C/path%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'%3E%3C/path%3E%3C/svg%3E");
}

.audience-list__icon--agent::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
}

.audience-list__icon--career::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='22 12 18 12 15 21 9 3 6 12 2 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.audience-list__icon--student::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 10v6M2 10l10-5 10 5-10 5z'%3E%3C/path%3E%3Cpath d='M6 12v5c3 3 9 3 12 0v-5'%3E%3C/path%3E%3C/svg%3E");
}

.quote-panel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-card {
    width: 100%;
}

.quote-manager-photo {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
}

.quote-author-info {
    display: flex;
    flex-direction: column;
}

.quote-author-info strong {
    font-size: 1.2rem;
    color: var(--brand-dark);
    font-family: "Noto Serif", Georgia, serif;
}

.quote-author-info span {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 700;
}

.styled-quote {
    position: relative;
    margin: 0;
    padding-left: 1.5rem;
    border-left: 4px solid var(--brand);
    font-style: italic;
}

.styled-quote p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--ink);
    margin: 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.mission-lead {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mission-pill-list {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.mission-pill {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.pill-icon {
    width: 8px;
    height: 8px;
    background: var(--brand);
    border-radius: 50%;
}

.mission-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.experience-badge {
    background: var(--brand);
    color: #fff;
    padding: 2.5rem;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(174, 51, 54, 0.2);
}

.experience-badge::after {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.experience-badge__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.exp-val {
    font-family: "Noto Serif", Georgia, serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.exp-lbl {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vision-box {
    background: var(--ink);
    color: #fff;
    padding: 2rem;
    border-radius: 30px;
    border-left: 6px solid var(--brand);
}

.vision-box h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.vision-box p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slow-pan {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

@media (max-width: 1100px) {
    .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .glossary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .partners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .staff-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .corporate-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
    .top-strip__inner {
        gap: 0.5rem;
        padding: 0.6rem 0;
        flex-direction: column;
        text-align: center;
    }

    .top-strip__promo,
    .top-strip__meta,
    .top-strip__hours,
    .top-strip__phone,
    .top-strip__socials {
        justify-content: center;
    }

    .top-strip__promo {
        width: 100%;
        padding: 0.4rem 1rem;
    }

    .top-strip__promo::after {
        display: none;
    }

    .top-strip__meta {
        width: 100%;
        padding: 0.2rem 0 0;
    }

    .top-strip__hours::after {
        display: none;
    }

    .nav-wrap {
        grid-template-columns: auto auto;
        justify-content: space-between;
        align-items: center;
        min-height: 80px;
    }

    .brand {
        order: 1;
    }

    .menu-toggle {
        order: 2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #dacdbd;
        background: #fff;
        border-radius: 9px;
        padding: 0.5rem 1rem;
        font: inherit;
        font-weight: 700;
        cursor: pointer;
        color: var(--brand-dark);
        transition: all 0.2s ease;
    }

    .main-nav {
        order: 3;
        grid-column: 1 / -1;
        display: none;
        background: #fff;
        border: 1px solid #eadfce;
        border-radius: 12px;
        padding: 0.75rem;
        margin-bottom: 1rem;
        justify-content: stretch;
        width: 100%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    body.nav-open .main-nav {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .header-actions {
        display: none;
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        position: static;
    }

    .main-nav a, 
    .nav-trigger {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.7rem 1rem;
        border-radius: 8px;
        text-align: left;
    }

    .nav-item .nav-trigger {
        padding: 0 !important;
    }

    .nav-trigger-text {
        padding: 0.7rem 0.5rem 0.7rem 1rem;
        flex: 0 0 auto;
        display: block;
    }

    .nav-arrow {
        flex: 1;
        padding: 0.7rem 1rem 0.7rem 0.5rem;
        text-align: right;
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        font-size: 0.75em;
        opacity: 0.7;
    }

    .nav-item__dropdown {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        border-left: 2px solid #eadfce;
        border-radius: 0;
        margin: 0.2rem 0 0.5rem 1.25rem;
        padding: 0;
        display: none;
        width: auto;
        min-width: 0;
    }

    .nav-item__dropdown a {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
        white-space: normal;
    }

    .has-dropdown.open .nav-item__dropdown {
        display: flex;
        flex-direction: column;
    }

    .hero-grid,
    .two-col-grid,
    .contact-grid,
    .plans-grid,
    .news-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .hero-media {
        min-height: 320px;
    }

    .news-card {
        grid-template-columns: 1fr;
    }

    .news-card img {
        height: 180px;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--container), calc(100% - 1.4rem));
    }

    .service-grid,
    .principles-grid,
    .glossary-grid,
    .testimonial-grid,
    .partners-grid,
    .staff-grid,
    .corporate-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-overlay-card {
        width: calc(100% - 1.4rem);
        right: 0.7rem;
        bottom: 0.7rem;
    }
}

