@font-face {
    font-family: "Noto Sans";
    src: url("../fonts/NotoSans-Regular.woff2") format("woff2"),
        url("../fonts/NotoSans-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans";
    src: url("../fonts/NotoSans-Medium.woff2") format("woff2"),
        url("../fonts/NotoSans-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans";
    src: url("../fonts/NotoSans-SemiBold.woff2") format("woff2"),
        url("../fonts/NotoSans-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans";
    src: url("../fonts/NotoSans-Bold.woff2") format("woff2"),
        url("../fonts/NotoSans-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #3f4f5e;
    --primary-dark: #2f3945;
    --primary-light: #5a6b7b;
    --accent: #b89b5e;
    --accent-soft: rgba(184, 155, 94, 0.18);
    --bg: #f4f6f8;
    --text: #4a4a4a;
    --heading: #2b2e34;
    --muted: #6a6f76;
    --white: #ffffff;
    --surface: #f4f6f8;
    --shadow-soft: 0 16px 32px rgba(31, 40, 50, 0.08);
    --shadow-medium: 0 24px 48px rgba(31, 40, 50, 0.12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 20% 20%, rgba(184, 155, 94, 0.08), transparent 40%),
        radial-gradient(circle at 80% 10%, rgba(63, 79, 94, 0.14), transparent 45%),
        linear-gradient(180deg, #f4f6f8 0%, #ffffff 42%, #f4f6f8 100%);
    line-height: 1.6;
}

.ph {
    font-size: 1.1em;
    line-height: 1;
}

h1, h2, h3 {
    font-family: "Noto Sans", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.2px;
    font-weight: 600;
    color: var(--heading);
}

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

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.site {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}


.mobile-bar {
    display: none;
    background: var(--white);
    border-bottom: 1px solid rgba(63, 79, 94, 0.12);
}

.mobile-bar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.mobile-bar__logo {
    height: 36px;
    width: auto;
    display: block;
}

.menu-toggle {
    border: 0;
    background: transparent;
    color: var(--primary);
    font-size: 1.2rem;
    display: none;
    cursor: pointer;
}



.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: var(--white);
    color: var(--primary);
    border-right: 1px solid rgba(63, 79, 94, 0.12);
    padding: 0;
    margin: 0;
    border-radius: 0;
    box-shadow: 0 14px 28px rgba(31, 40, 50, 0.08);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 25;
}

.brand {
    display: block;
    padding: 0;
}

.brand__logo {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    padding-right: 16px;
}

.primary-nav {
    padding: 1.5rem;
}

.sidebar-cta {
    margin: auto 1.5rem 1.5rem;
}

.brand__title {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.brand__subtitle {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
}

.primary-nav__list {
    list-style: none;
    display: grid;
    gap: 1rem;
    font-size: 0.95rem;
}
.site-main {
    margin-left: 260px;
}

.site-footer--with-sidebar {
    margin-left: 260px;
}

.primary-nav__list a {
    color: var(--primary);
    font-weight: 600;
    padding: 0.7rem 0.8rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
}
.primary-nav__list a::after {
    content: "›";
    opacity: 0.5;
    margin-left: auto;
}

.primary-nav__list a:hover {
    background: rgba(63, 79, 94, 0.08);
    transform: translateX(4px);
}

.sidebar-cta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(63, 79, 94, 0.2);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sidebar-cta:hover {
    background: rgba(63, 79, 94, 0.08);
    transform: translateX(4px);
}

.sidebar-cta .ph {
    font-size: 1.1rem;
}


.hero {
    background: linear-gradient(120deg, rgba(63, 79, 94, 0.98), rgba(63, 79, 94, 0.65)),
        url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
    color: var(--white);
    padding: 6.5rem 0 6rem;
    min-height: calc(100vh - 48px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}


.hero::after {
    content: "";
    position: absolute;
    inset: -35% -10% auto auto;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(184, 155, 94, 0.4), transparent 70%);
    animation: floatGlow 8s ease-in-out infinite;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(8, 12, 18, 0.55), rgba(60, 73, 88, 0.35));
    opacity: 0.7;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.hero__eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0.6));
}

.hero__lead {
    margin-top: 1rem;
    max-width: 520px;
}

.hero__slogans {
    min-height: 250px;
    position: relative;
}

.hero__slogan {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.22;
    color: var(--white);
    max-width: 100%;
}

.hero__slogan.is-active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.hero__actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__card {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 22px;
    backdrop-filter: blur(8px);
    animation: floatCard 6s ease-in-out infinite;
    box-shadow: 0 28px 60px rgba(15, 20, 30, 0.35);
    position: relative;
    overflow: hidden;
}

.hero__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.25), transparent 50%);
    opacity: 0.6;
}

.hero__quick-list {
    list-style: none;
    display: grid;
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.hero__quick-list li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 0.75rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 0.9rem;
    border-radius: 14px;
}

.hero__quick-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(76, 111, 255, 0.9), rgba(107, 139, 255, 0.9));
    color: var(--white);
}

.hero__quick-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero__quick-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 0.2rem;
}

.hero__actions .btn--primary {
    padding: 0.85rem 1.9rem;
    font-size: 1rem;
}

.hero__actions .btn--primary .ph {
    transition: transform 0.2s ease;
}

.hero__actions .btn--primary:hover .ph {
    transform: translateX(4px);
}

.section {
    padding: 4.5rem 0;
    color: var(--text);
}

.section h1,
.section h2,
.section h3,
.section p,
.section li {
    color: inherit;
}

.section--accent,
.section--contact,
.hero {
    color: var(--white);
}

.section--light {
    background: var(--surface);
}

.about-section .grid-2 {
    gap: 3rem;
}

.about-copy {
    display: grid;
    gap: 1rem;
}

.about-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}

.about-features {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    margin-top: 1rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    color: var(--text);
}

.about-features .ph {
    color: var(--accent);
    font-size: 1.1rem;
}

.section--accent {
    background: linear-gradient(120deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
}

.section-cta .btn--primary {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(63, 79, 94, 0.4);
    box-shadow: none;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.stats {
    display: grid;
    gap: 1.5rem;
}

.stat {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
}

.stat__value {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(60, 73, 88, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.section--accent .card,
.section--accent .card h3,
.section--accent .card p {
    color: var(--text);
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(76, 111, 255, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.card:hover::after {
    opacity: 1;
}

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

.blog-card {
    background: var(--white);
    border: 1px solid rgba(63, 79, 94, 0.12);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1rem;
    overflow: hidden;
}

.blog-card__media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #e9edf1;
}

.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(63, 79, 94, 0.12), rgba(184, 155, 94, 0.12));
}

.blog-card__body {
    padding: 0 1.5rem 1.5rem;
}

.blog-card__body h2 {
    margin-bottom: 0.6rem;
    color: var(--heading);
}

.blog-card__body p {
    color: var(--text);
}

.blog-detail-card {
    width: 100%;
    background: var(--white);
    border: 1px solid rgba(63, 79, 94, 0.12);
    box-shadow: var(--shadow-soft);
}

.blog-detail-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-detail-card__media {
    max-height: 420px;
    overflow: hidden;
}

.blog-detail-card__body {
    padding: 2rem 2.5rem 2.5rem;
}

.blog-detail-card.has-featured .entry-content img:first-of-type {
    display: none;
}

.blog-detail-card__body h1 {
    margin-bottom: 1rem;
    color: var(--heading);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(31, 40, 50, 0.2);
}

.news-card__date {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.news-card__link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--white);
    font-weight: 600;
}

.blog-preview {
    margin-top: 2.5rem;
}

.blog-swiper {
    padding-bottom: 2.5rem;
}

.blog-mini-card {
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-soft);
    color: var(--text);
    display: grid;
    gap: 0.8rem;
}

.blog-mini-card__media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #e9edf1;
}

.blog-mini-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-mini-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(63, 79, 94, 0.12), rgba(184, 155, 94, 0.12));
}

.blog-mini-card__body {
    padding: 0 1.2rem 1.2rem;
}

.blog-mini-card__body h3 {
    margin-bottom: 0.4rem;
    color: var(--heading);
}

.blog-mini-card__body p {
    color: var(--text);
    font-size: 0.9rem;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.team-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.team-card__avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--bg);
    border: 3px solid var(--primary);
}

.section--contact {
    background: linear-gradient(120deg, rgba(60, 73, 88, 0.05), rgba(60, 73, 88, 0.15));
}

.contact-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.contact-form label {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
    border: 1px solid rgba(60, 73, 88, 0.2);
    font-family: inherit;
}

.contact-list {
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.contact-list strong {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    border-radius: 0;
    border: 1px solid transparent;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--small {
    padding: 0.55rem 1.2rem;
    font-size: 0.9rem;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 12px 28px rgba(63, 79, 94, 0.35);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--accent), #d1b374);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(184, 155, 94, 0.35);
}

.site-footer {
    background: linear-gradient(120deg, var(--primary-dark), #1f2730);
    color: var(--white);
    padding-top: 3.5rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(184, 155, 94, 0.18), transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(63, 79, 94, 0.25), transparent 45%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-grid p,
.footer-grid a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-title {
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-grid a .ph {
    margin-right: 0.4rem;
    font-size: 1rem;
}

.footer-social__link .ph {
    font-size: 1.9rem;
    margin-right: 0;
    display: block;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-social__link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.9rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social__link:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.footer-nav {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
    font-size: 0.85rem;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.2rem 0;
    font-size: 0.75rem;
    position: relative;
    z-index: 1;
}

.footer-bottom__content {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom__text,
.footer-bottom__link {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom__link:hover {
    color: var(--white);
}

.page-hero {
    background: linear-gradient(120deg, rgba(63, 79, 94, 0.9), rgba(47, 57, 69, 0.75)),
        url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
    color: var(--white);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.page-hero h1,
.page-hero p {
    color: var(--white);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(8, 12, 18, 0.55), rgba(63, 79, 94, 0.35));
    opacity: 0.75;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: -35% -10% auto auto;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(184, 155, 94, 0.35), transparent 70%);
    animation: floatGlow 8s ease-in-out infinite;
}

.page-hero__content {
    position: relative;
    z-index: 1;
}

.page-hero__content {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.content-block {
    background: var(--white);
    padding: 2rem;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.entry-content {
    max-width: 1080px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text);
}

.entry-content p {
    margin-bottom: 1.2rem;
}

.entry-content h2,
.entry-content h3 {
    margin: 2rem 0 1rem;
    color: var(--heading);
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 1.2rem 1.4rem;
}

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

.practice-card {
    position: relative;
    border-radius: 0;
    padding: 0;
    min-height: 160px;
    color: var(--white);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.practice-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(63, 79, 94, 0.5);
    transition: opacity 0.2s ease;
}

.practice-card__inner {
    position: relative;
    z-index: 1;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    padding: 0.9rem 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: inline-block;
    margin: 1.2rem;
    transition: transform 0.2s ease;
}

.practice-card__inner h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.practice-card__inner p {
    font-weight: 400;
    font-size: 0.85rem;
    line-height: 1.5;
    letter-spacing: 0;
    text-transform: none;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.practice-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(31, 40, 50, 0.18);
}

.practice-card:hover::before {
    opacity: 0.7;
}

.practice-card:hover .practice-card__inner {
    transform: translateY(-2px);
}

.team-list {
    display: grid;
    gap: 2.5rem;
}

.team-row {
    display: grid;
    grid-template-columns: minmax(220px, 300px) 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(63, 79, 94, 0.12);
    box-shadow: var(--shadow-soft);
    padding: 2rem;
}

.team-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--bg);
    border-radius: 0;
    border: 2px solid rgba(184, 155, 94, 0.6);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-photo.is-empty {
    background: #e9edf1;
}

.team-photo.is-empty .ph {
    font-size: 3rem;
    color: rgba(63, 79, 94, 0.45);
}

.team-meta {
    display: grid;
    gap: 0.5rem;
}

.team-meta h2 {
    font-weight: 700;
    color: var(--heading);
}

.team-meta p {
    color: var(--text);
}

.team-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.6rem;
}

.team-social__link {
    color: var(--primary);
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, color 0.2s ease;
}

.team-social__link:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.team-meta__title {
    color: var(--primary);
    font-weight: 700;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr);
    gap: 2.5rem;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-info h2 {
    margin-bottom: 0.5rem;
    color: var(--heading);
}

.contact-info__item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.contact-map iframe {
    width: 100%;
    height: 340px;
    border: 0;
}

.contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #d1b374);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.contact-icon .ph {
    font-size: 1rem;
}

.contact-form-modern {
    background: var(--white);
    border: 1px solid rgba(63, 79, 94, 0.12);
    box-shadow: var(--shadow-soft);
    padding: 2rem;
    display: grid;
    gap: 1.2rem;
}

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

.contact-form-modern label {
    display: grid;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--heading);
}

.contact-form-modern input,
.contact-form-modern textarea {
    border: 1px solid rgba(63, 79, 94, 0.2);
    padding: 0.75rem 0.9rem;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: #fafbfc;
}

.contact-form-modern textarea {
    resize: vertical;
}

@keyframes floatCard {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, 10px);
        opacity: 0.9;
    }
    100% {
        transform: translate(0, 0);
        opacity: 0.6;
    }
}

@media (max-width: 920px) {
    .hero__content {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        height: 100vh;
        width: 260px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        background: var(--white);
        z-index: 100;
        box-shadow: 0 18px 36px rgba(31, 40, 50, 0.18);
    }

    .site-main {
        margin-left: 0;
    }

    .site-footer--with-sidebar {
        margin-left: 0;
    }

    .hero {
        padding: 3.5rem 0;
    }

    .team-row {
        grid-template-columns: 1fr;
    }
}

body.sidebar-open .sidebar {
    transform: translateX(0);
}

.sidebar-overlay {
    display: none;
}

@media (max-width: 920px) {
    .sidebar-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 90;
    }

    body.sidebar-open .sidebar-overlay {
        display: block;
    }
}

@media (max-width: 920px) {
    .menu-toggle {
        display: inline-flex;
    }

    .mobile-bar {
        display: block;
    }

    .brand {
        display: none;
    }
}

@media (max-width: 1100px) {
    .practice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

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

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

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