/* =============================================
   MARIOLA ŻELAZEK-MAKOWSKA
   Light Elegant Premium — 2026
   Clean, airy, sophisticated design
   ============================================= */

:root {
    --cream: #faf8f4;
    --cream-warm: #f5f0e8;
    --cream-deep: #ede7dc;
    --text: #1c1a17;
    --text-secondary: #6b6559;
    --text-muted: #9e9689;
    --burgundy: #7a1515;
    --burgundy-light: #9a1f1f;
    --burgundy-soft: rgba(122, 21, 21, 0.06);
    --burgundy-glow: rgba(122, 21, 21, 0.12);
    --gold: #b8956a;
    --gold-light: #d4b88a;
    --border: #e8e2d8;
    --white: #ffffff;
    --dark: #1c1a17;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Cormorant', Georgia, serif;
    font-weight: 400;
    color: var(--text);
    background: var(--cream);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection { background: var(--burgundy); color: var(--white); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--burgundy); border-radius: 3px; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
.t-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1.8rem;
}
.t-title {
    font-family: 'Cormorant', serif;
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 2rem;
}
.t-title-light { color: var(--white); }
.t-subtitle {
    font-family: 'Cormorant', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
    color: var(--text);
}
.t-body {
    font-family: 'Jost', sans-serif;
    font-size: 1.08rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.9;
}
.t-body-lg {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.9;
}
.t-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5rem;
    height: 80px;
    background: rgba(250, 248, 244, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.header.alt { background: rgba(255,255,255,0.97); }
.header.dark {
    background: var(--dark);
    border-bottom-color: rgba(255,255,255,0.08);
}
.header.dark .logo-name { color: var(--white); }
.header.dark .logo-sub { color: rgba(255,255,255,0.35); }
.header.dark .nav-link { color: rgba(255,255,255,0.5); }
.header.dark .nav-link:hover, .header.dark .nav-link.active { color: var(--white); }
.header.dark .menu-toggle span { background: var(--white); }

.logo { display: flex; flex-direction: column; gap: 2px; }
.logo-name {
    font-family: 'Cormorant', serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text);
    line-height: 1.2;
}
.logo-sub {
    font-family: 'Jost', sans-serif;
    font-size: 0.55rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav { display: flex; align-items: center; gap: 2.5rem; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-link {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--burgundy);
    transition: width 0.4s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--burgundy); }

.nav-cta {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    background: var(--burgundy);
    color: var(--white);
    transition: all 0.35s ease;
    border: 1px solid var(--burgundy);
}
.nav-cta:hover { background: transparent; color: var(--burgundy); }
.header.dark .nav-cta:hover { color: var(--white); }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
}
.menu-toggle span {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--text);
    transition: all 0.35s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--burgundy); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--burgundy); }

/* =============================================
   MOBILE NAV
   ============================================= */
.mobile-nav {
    position: fixed;
    top: 80px; left: 0; right: 0; bottom: 0;
    z-index: 999;
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 3rem 3rem 4rem;
    opacity: 0; visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.4s ease;
    overflow-y: auto;
}
.mobile-nav.dark { background: var(--dark); }
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav a {
    font-family: 'Cormorant', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--text);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.3s;
    display: block;
}
.mobile-nav.dark a { color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.08); }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--burgundy); }
.mobile-nav.dark a:hover, .mobile-nav.dark a.active { color: var(--gold); }
.mobile-nav .mobile-cta {
    margin-top: 2.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    padding: 1.2rem 3rem;
    background: var(--burgundy);
    color: var(--white);
    border: none;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.35s ease;
}
.btn-burgundy {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}
.btn-burgundy:hover { background: transparent; color: var(--burgundy); }
.btn-outline {
    background: transparent;
    border-color: var(--text);
    color: var(--text);
}
.btn-outline:hover { background: var(--text); color: var(--white); }
.btn-outline-white {
    background: transparent;
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
}
.btn-outline-white:hover { border-color: var(--white); }
.btn-ghost {
    color: var(--burgundy);
    border-color: var(--burgundy);
}
.btn-ghost:hover { background: var(--burgundy); color: var(--white); }
.btn-dark {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
}
.btn-dark:hover { background: var(--burgundy); border-color: var(--burgundy); }

/* =============================================
   SLIDER
   ============================================= */
.slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--cream);
}

.slider-track {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}
.slide.active { opacity: 1; visibility: visible; }

.slide-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 6rem 8rem 8rem;
    position: relative;
    z-index: 2;
}
.slide-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
}
.slide.active .slide-eyebrow { animation: fadeUp 0.9s ease 0.2s forwards; }

.slide-title {
    font-family: 'Cormorant', serif;
    font-size: clamp(3.2rem, 5vw, 6rem);
    font-weight: 400;
    line-height: 1.06;
    color: var(--text);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(25px);
}
.slide.active .slide-title { animation: fadeUp 1s ease 0.35s forwards; }

.slide-desc {
    font-family: 'Jost', sans-serif;
    font-size: 1.12rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.85;
    max-width: 460px;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
}
.slide.active .slide-desc { animation: fadeUp 0.9s ease 0.5s forwards; }

.slide-actions {
    display: flex;
    gap: 1.2rem;
    opacity: 0;
    transform: translateY(15px);
}
.slide.active .slide-actions { animation: fadeUp 0.85s ease 0.65s forwards; }

.slide-image {
    position: relative;
    overflow: hidden;
}
.slide-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.slide-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--cream) 0%, transparent 25%);
}

.slide-deco {
    position: absolute;
    bottom: 4rem; left: 8rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
}
.slide.active .slide-deco { animation: fadeUp 1s ease 0.9s forwards; }
.slide-deco-line {
    width: 50px; height: 1px;
    background: var(--burgundy);
    opacity: 0.4;
}
.slide-deco-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.slide-svg {
    position: absolute;
    top: 50%;
    right: -120px;
    transform: translateY(-50%);
    opacity: 0.04;
    pointer-events: none;
}
.slide-svg svg { width: 400px; height: 400px; }
.slide-svg svg path { fill: var(--burgundy); }

.slider-nav {
    position: absolute;
    bottom: 3rem; right: 4rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}
.sl-dots { display: flex; gap: 0.8rem; }
.sldot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    transition: all 0.4s;
    cursor: pointer;
}
.sldot.active { background: var(--burgundy); transform: scale(1.3); }

.sl-arrows { display: flex; gap: 0.8rem; }
.slav-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}
.slav-btn:hover { border-color: var(--burgundy); color: var(--burgundy); }

.slider-progress {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--border);
    z-index: 10;
}
.sl-bar {
    height: 100%;
    background: var(--burgundy);
    width: 0%;
    transition: width 0.05s linear;
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* =============================================
   VISIBILITY TOGGLES
   ============================================= */
.mobile-only { display: none; }

/* =============================================
   MOBILE HERO
   ============================================= */
.mobile-hero {
    padding: 7rem 2rem 4rem;
    background: var(--cream);
}
.mobile-hero-content {
    text-align: center;
    margin-bottom: 3rem;
}
.mobile-hero-title {
    font-family: 'Cormorant', serif;
    font-size: clamp(2.4rem, 7vw, 3.6rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1.5rem;
}
.mobile-hero-desc {
    font-family: 'Jost', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.85;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}
.mobile-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 9rem 5rem; }
.section-alt { background: var(--cream-warm); }
.section-dark {
    background: var(--dark);
    color: var(--white);
}
.section-dark .t-title { color: var(--white); }
.section-dark .t-eyebrow { color: var(--gold); }
.section-dark .t-body { color: rgba(255,255,255,0.45); }
.section-dark .t-body-lg { color: rgba(255,255,255,0.45); }

.container { max-width: 1400px; margin: 0 auto; }
.container-narrow { max-width: 900px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 5rem; }
.section-header .t-eyebrow { margin-bottom: 1.5rem; }
.section-header .t-title { margin-bottom: 1.5rem; }

.divider {
    width: 50px; height: 1px;
    background: var(--burgundy);
    margin: 2rem auto;
    opacity: 0.4;
}

/* Utility */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-5 { margin-top: 5rem; }
.w-full { width: 100%; }
.max-w-600 { max-width: 600px; }
.max-w-700 { max-width: 700px; }
.flex-center { justify-content: center; display: flex; }
.flex-wrap { flex-wrap: wrap; }

/* =============================================
   SPLIT CONTENT
   ============================================= */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-text {
    padding: 7rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.split-text .t-eyebrow { margin-bottom: 2rem; }
.split-text .t-title { margin-bottom: 2rem; font-size: clamp(2.4rem, 3.8vw, 3.8rem); }
.split-text .t-body-lg { margin-bottom: 3rem; max-width: 480px; }

.split-image {
    position: relative;
    overflow: hidden;
}
.split-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.split-image:hover img { transform: scale(1.03); }
.split-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(122,21,21,0.03) 0%, transparent 50%);
}

/* =============================================
   ABOUT
   ============================================= */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 560px;
    min-height: 90vh;
}
.about-content {
    padding: 9rem 8rem 9rem 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-content .t-eyebrow { margin-bottom: 2rem; }
.about-content .t-title { margin-bottom: 2rem; }
.about-content .t-sub {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 2.5rem;
}
.about-content .t-body-lg { margin-bottom: 3rem; max-width: 540px; }

.about-photo { position: relative; overflow: hidden; }
.about-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: contrast(1.02) brightness(1.02);
}
.about-photo::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--cream), transparent);
    z-index: 2;
}
.about-photo::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, var(--cream) 0%, transparent 35%);
    z-index: 1;
}

.about-full {
    padding: 7rem 0;
}
.about-full .t-eyebrow { margin-bottom: 1.5rem; }
.about-full .t-title { margin-bottom: 1rem; }
.about-divider {
    display: flex;
    margin-bottom: 2rem;
}
.about-full-graphic {
    margin-bottom: 3rem;
}
.about-wave-svg {
    width: 100%;
    height: 80px;
}
.about-wave {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: waveDraw 3s ease forwards;
}
.about-wave-2 { animation-delay: 0.5s; }
.about-wave-dot {
    animation: waveDot 0.6s ease forwards;
}
.about-wave-dot-1 { animation-delay: 1.5s; }
.about-wave-dot-2 { animation-delay: 2s; }
.about-wave-dot-3 { animation-delay: 2.5s; }
@keyframes waveDraw {
    to { stroke-dashoffset: 0; }
}
@keyframes waveDot {
    from { opacity: 0; r: 0; }
    to { opacity: 0.5; }
}
.about-col-icon {
    margin-bottom: 1.5rem;
}
.about-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
}
.about-full-grid .t-body-lg {
    margin-bottom: 2rem;
}
.about-timeline-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(122, 21, 21, 0.1);
}
.about-year-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.about-year-num {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--burgundy);
}
.about-year-desc {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.about-year-sep {
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}
.about-cta {
    margin-top: 2.5rem;
}
.about-hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}
.about-hero-text .t-title {
    margin-bottom: 2rem;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
.about-hero-text .about-divider {
    justify-content: center;
}
.about-benefits {
    max-width: 780px;
    margin: 0 auto;
}
.about-benefits .t-body-lg {
    margin-bottom: 1.5rem;
}
.about-gabinet-box {
    background: rgba(122, 21, 21, 0.03);
    border-left: 2px solid var(--gold);
    padding: 2.5rem 3rem;
}
.about-gabinet-box .t-title {
    margin-bottom: 1rem;
    font-size: 1.6rem;
}
.about-gabinet-box .t-body-lg {
    margin-bottom: 1rem;
}

/* =============================================
   COURSES TIMELINE
   ============================================= */
.courses-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.courses-timeline::before {
    content: '';
    position: absolute;
    left: 110px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}
.course-item {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 1.8rem 0;
    position: relative;
}
.course-year {
    flex-shrink: 0;
    width: 80px;
    text-align: right;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--burgundy);
    padding-top: 0.15rem;
}
.course-dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--burgundy);
    margin-top: 0.45rem;
    position: relative;
    z-index: 1;
    opacity: 0.6;
}
.course-content {
    flex: 1;
    padding-left: 0.5rem;
}
.course-content h3 {
    font-family: 'Cormorant', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 0.3rem;
}
.course-content p {
    font-family: 'Jost', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =============================================
   CONTACT CTA HERO
   ============================================= */
.contact-cta-hero {
    background: var(--dark);
    padding: 9rem 5rem 7rem;
    text-align: center;
}
.contact-cta-hero .t-eyebrow {
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.contact-cta-hero h2 {
    font-family: 'Cormorant', serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}
.contact-cta-hero .t-body-lg {
    color: rgba(255,255,255,0.45);
    max-width: 600px;
    margin: 0 auto 3rem;
}
.contact-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* =============================================
   STATS
   ============================================= */
.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    padding: 5.5rem 5rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-item { text-align: center; }
.stats-num {
    font-family: 'Cormorant', serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 0.6rem;
}
.stats-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.stats-sep { width: 1px; height: 50px; background: var(--border); }

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}
.service-card {
    padding: 3.5rem 2.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--burgundy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.06); border-color: transparent; }

.sc-num {
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--burgundy);
    opacity: 0.5;
    margin-bottom: 2rem;
}
.sc-title {
    font-family: 'Cormorant', serif;
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}
.sc-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.98rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 2rem;
}
.sc-link {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--burgundy);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: gap 0.3s;
}
.service-card:hover .sc-link { gap: 1.3rem; }

/* =============================================
   CHECK LIST & CTA
   ============================================= */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.check-list li {
    font-family: 'Jost', sans-serif;
    font-size: 0.98rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.85;
    padding-left: 1.8rem;
    position: relative;
}
.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--burgundy);
    opacity: 0.6;
}
.cta-inline {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.service-card ul.check-list li::before { background: var(--gold); opacity: 0.5; }

/* =============================================
   SPLIT TEXT CENTER
   ============================================= */
.split-text-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.split-text-center .t-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.3;
}

/* =============================================
   CYCLE GRAPHIC
   ============================================= */
.cycle-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.cycle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}
.cycle-icon {
    font-size: 1.8rem;
    color: var(--gold);
    opacity: 0.7;
}
.cycle-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.cycle-arrow {
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0.4;
    margin-top: -1rem;
}

/* =============================================
   SYMPTOMS GRID
   ============================================= */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.symptom-card {
    padding: 3.5rem 2.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s ease;
}
.symptom-card:hover {
    border-color: var(--burgundy);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.symptom-icon {
    color: var(--burgundy);
    opacity: 0.45;
    margin-bottom: 2rem;
}
.symptom-title {
    font-family: 'Cormorant', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1.5rem;
}
.symptom-card .check-list {
    text-align: left;
}

/* =============================================
   METHODS GRID
   ============================================= */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}
.method-card {
    padding: 3.5rem 2.5rem;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    transition: all 0.4s ease;
    position: relative;
}
.method-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.method-card:hover::before { transform: scaleX(1); }
.method-card:hover { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); }
.method-num {
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 2rem;
    display: block;
}
.method-title {
    font-family: 'Cormorant', serif;
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}
.method-desc {
    font-family: 'Jost', sans-serif;
    font-size: 0.98rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.85;
    margin-bottom: 2rem;
}
.method-card .sc-link { color: var(--gold); }
.method-card:hover .sc-link { gap: 1.3rem; }
.method-bottom {
    text-align: center;
    max-width: 700px;
    margin: 4rem auto 0;
}

/* =============================================
   TESTIMONIAL GRID
   ============================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}
.testimonial-grid .testimonial-quote {
    text-align: center;
}
.testimonial-grid .testimonial-quote blockquote {
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* =============================================
   PROCESS TIMELINE
   ============================================= */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}
.process-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.1);
}
.process-step {
    position: relative;
    padding: 0 0 4rem 3rem;
}
.process-step:last-child { padding-bottom: 0; }
.step-num {
    position: absolute;
    left: -60px;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold);
    z-index: 1;
}
.step-title {
    font-family: 'Cormorant', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}
.step-desc {
    font-family: 'Jost', sans-serif;
    font-size: 0.98rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.85;
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    max-width: 1400px;
    margin: 0 auto;
}
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-label {
    position: absolute;
    bottom: 1.8rem; left: 1.8rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.75;
    z-index: 2;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(122,21,21,0.15) 0%, transparent 50%);
}

/* =============================================
   BLOG
   ============================================= */
.blog-list { max-width: 900px; margin: 0 auto; }
.blog-item {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    gap: 2.5rem;
    align-items: center;
    padding: 2.8rem 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left 0.4s ease;
}
.blog-item:last-child { border-bottom: none; }
.blog-item:hover { padding-left: 1.2rem; }
.blog-date {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--burgundy);
}
.blog-title {
    font-family: 'Cormorant', serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.3;
}
.blog-title a { transition: color 0.3s; }
.blog-title a:hover { color: var(--burgundy); }
.blog-read {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    padding: 0.8rem 1.6rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.blog-read:hover { border-color: var(--burgundy); color: var(--burgundy); }

/* =============================================
   TESTIMONIAL
   ============================================= */
.testimonial-section {
    padding: 9rem 5rem;
    text-align: center;
    background: var(--cream-warm);
}
.testimonial-quote { max-width: 800px; margin: 0 auto; }
.testimonial-quote blockquote {
    font-family: 'Cormorant', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}
.testimonial-quote cite {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-style: normal;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--burgundy);
}
.section-header p {
    max-width: 700px;
    margin: 0 auto;
}

/* =============================================
   CTA
   ============================================= */
.cta-section { padding: 9rem 5rem; text-align: center; }
.cta-section h2 {
    font-family: 'Cormorant', serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.cta-section p {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    margin-bottom: 3rem;
}

/* =============================================
   PAGE HEADER
   ============================================= */
.page-header {
    padding: 12rem 5rem 6rem;
    text-align: center;
    background: var(--dark);
}
.page-header .t-eyebrow { color: var(--gold); margin-bottom: 1.5rem; }
.page-header .t-title { color: var(--white); margin-bottom: 2rem; }
.page-header .t-body-lg { color: rgba(255,255,255,0.45); max-width: 650px; margin: 0 auto; }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.contact-card {
    padding: 3rem 2rem;
    background: var(--white);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s;
}
.contact-card:hover { border-color: var(--burgundy); box-shadow: 0 15px 50px rgba(0,0,0,0.05); }
.contact-icon { font-size: 1.6rem; color: var(--burgundy); margin-bottom: 1.2rem; opacity: 0.4; }
.contact-card h3 {
    font-family: 'Cormorant', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.6rem;
}
.contact-card p {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.contact-card a, .contact-card span {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--burgundy);
}

.locations { padding: 8rem 5rem; }
.locations-grid { max-width: 1100px; margin: 0 auto; }
.location-card {
    padding: 3.5rem;
    border: 1px solid var(--border);
    background: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s;
}
.location-card:hover { border-color: var(--burgundy); }
.location-badge {
    position: absolute;
    top: 2rem; right: 2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: var(--burgundy-soft);
    padding: 0.4rem 0.9rem;
}
.location-card h3 {
    font-family: 'Cormorant', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.location-sub {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--burgundy);
    margin-bottom: 1.2rem;
}
.location-card > p {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    line-height: 1.8;
}
.location-tags { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.location-tags span {
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    background: var(--cream-warm);
    padding: 0.4rem 0.9rem;
}

.faq-section { padding: 8rem 5rem; background: var(--cream-warm); }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
    padding: 2.2rem 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: padding-left 0.3s;
}
.faq-item:last-child { border-bottom: none; }
.faq-item:hover { padding-left: 1rem; }
.faq-q {
    font-family: 'Cormorant', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-q::after { content: '+'; color: var(--burgundy); opacity: 0.4; font-size: 1.3rem; transition: transform 0.3s; font-family: 'Jost', sans-serif; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    padding-top: 0.8rem;
    display: none;
}
.faq-item.open .faq-a { display: block; }

.cta-details {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}
.cta-details a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cta-details a:hover { color: var(--gold-light); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    padding: 5.5rem 5rem 4rem;
    background: var(--dark);
    text-align: center;
}
.footer-logo {
    font-family: 'Cormorant', serif;
    font-size: 2rem;
    color: rgba(255,255,255,0.12);
    letter-spacing: 0.12em;
    margin-bottom: 0.6rem;
}
.footer-tagline {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.15);
    margin-bottom: 2.5rem;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.footer-links a {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    color: rgba(255,255,255,0.12);
}
.footer-credit {
    margin-top: 1.5rem;
}
.footer-credit a {
    font-family: 'Jost', sans-serif;
    font-size: 0.58rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.15);
    transition: color 0.3s;
}
.footer-credit a:hover { color: var(--gold); }

/* =============================================
   ARTICLE
   ============================================= */
.article-wrap { padding: 7rem 5rem 10rem; max-width: 860px; margin: 0 auto; }
.article-meta {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}
.article-cat {
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--burgundy);
}
.article-date {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    color: var(--text-muted);
}
.article-wrap h1 {
    font-family: 'Cormorant', serif;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 3rem;
}
.article-intro {
    font-family: 'Jost', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}
.article-wrap h2 {
    font-family: 'Cormorant', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--text);
    margin: 3.5rem 0 1.5rem;
}
.article-wrap p {
    font-family: 'Jost', sans-serif;
    font-size: 1.08rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 2rem;
}
.article-wrap ul { padding-left: 1.2rem; margin-bottom: 2rem; }
.article-wrap li {
    font-family: 'Jost', sans-serif;
    font-size: 1.08rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}
.article-wrap li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.85rem;
    width: 5px; height: 5px;
    background: var(--burgundy);
    border-radius: 50%;
}
.article-image {
    margin: 3rem -2rem;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.article-image img { width: 100%; height: 100%; object-fit: cover; }
.article-nav {
    display: flex;
    justify-content: space-between;
    padding-top: 3.5rem;
    margin-top: 3.5rem;
    border-top: 1px solid var(--border);
}
.article-nav a {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s;
}
.article-nav a:hover { color: var(--burgundy); }

/* =============================================
   SVG DECORATIONS
   ============================================= */
.svg-divider {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}
.svg-divider svg { width: 80px; height: 20px; }
.svg-divider svg path { stroke: var(--burgundy); fill: none; stroke-width: 1; opacity: 0.4; }

.svg-accent {
    position: relative;
}
.svg-accent::before {
    content: '';
    position: absolute;
    top: -40px; left: 0;
    width: 60px; height: 2px;
    background: var(--burgundy);
    opacity: 0.3;
}

.cta-deco {
    margin-bottom: 2rem;
}
.testimonial-deco {
    margin-bottom: 2.5rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
    .slide { grid-template-columns: 1fr; }
    .slide-text { padding: 8rem 5rem 5rem; text-align: center; align-items: center; }
    .slide-image { max-height: 500px; }
    .slide-image::after { background: linear-gradient(to bottom, transparent 70%, var(--cream) 100%); }
    .slide-desc { max-width: 100%; }
    .slide-actions { justify-content: center; }
    .split { grid-template-columns: 1fr; }
    .split.reverse { direction: ltr; }
    .split-text { padding: 5rem 4rem; }
    .split-image { min-height: 400px; }
    .about-full { padding: 5rem 0; }
    .about-full-grid { gap: 3rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { gap: 4rem; flex-wrap: wrap; }
    .stats-sep { display: none; }
    .symptoms-grid { grid-template-columns: repeat(2, 1fr); }
    .methods-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr; gap: 4rem; }
    .cycle-graphic { gap: 1rem; }
    .cycle-arrow { display: none; }
    .locations { padding: 6rem 4rem; }
    .faq-section { padding: 6rem 4rem; }
    .contact-cta-hero { padding: 7rem 4rem 5rem; }
}

@media (max-width: 1024px) {
    .header { padding: 0 3rem; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .menu-toggle { display: flex; }
    .section { padding: 7rem 3rem; }
    .testimonial-section { padding: 7rem 3rem; }
    .cta-section { padding: 7rem 3rem; }
    .page-header { padding: 10rem 3rem 5rem; }
    .blog-item { grid-template-columns: 1fr; gap: 1rem; }
    .about-content { padding: 7rem 4rem; }
    .slide-svg { display: none; }
}

@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr; max-width: 600px; }
    .symptoms-grid { grid-template-columns: 1fr; max-width: 600px; }
    .methods-grid { grid-template-columns: 1fr; max-width: 600px; }
    .contact-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .slide-text { padding: 7.5rem 3rem 4rem; }
    .slide-title { font-size: clamp(2.6rem, 6vw, 4rem); }
    .slide-image { max-height: 400px; }
    .split-text { padding: 4rem 3rem; }
    .split-image { min-height: 350px; }
    .about-content { padding: 6rem 3rem; }
    .about-hero { grid-template-columns: 1fr; }
    .about-photo { min-height: 350px; }
    .about-full-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-timeline-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .about-year-sep { display: none; }
    .locations { padding: 5rem 3rem; }
    .faq-section { padding: 5rem 3rem; }
}

@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: block; }
    .header { padding: 0 2rem; height: 70px; }
    .logo-name { font-size: 1.15rem; }
    .mobile-nav { top: 70px; padding: 2rem 2rem 3rem; }
    .mobile-nav a { font-size: 1.6rem; padding: 1.2rem 0; }
    .section { padding: 5rem 2rem; }
    .testimonial-section { padding: 5rem 2rem; }
    .cta-section { padding: 5rem 2rem; }
    .page-header { padding: 9rem 2rem 4rem; }
    .mobile-hero { padding: 7rem 2rem 4rem; }

    .split-text { padding: 3rem 2rem; }
    .split-image { min-height: 280px; }
    .about-full { padding: 3rem 0; }
    .about-full-grid { gap: 2rem; }
    .about-gabinet-box { padding: 2rem; }
    .about-wave-svg { height: 50px; }
    .about-timeline-row { flex-wrap: wrap; gap: 1.5rem; }
    .about-year-sep { display: none; }
    .stats-row { gap: 2rem; padding: 3rem 2rem; }
    .stats-num { font-size: 2.5rem; }
    .stats-label { font-size: 0.58rem; }
    .process-timeline { padding-left: 40px; }
    .step-num { left: -40px; width: 36px; height: 36px; font-size: 1rem; }
    .process-timeline::before { left: 17px; }
    .locations { padding: 4rem 2rem; }
    .faq-section { padding: 4rem 2rem; }
    .faq-q { font-size: 1.3rem; }
    .article-wrap { padding: 4rem 2rem 7rem; }
    .article-image { margin: 2.5rem -0.5rem; }
    .site-footer { padding: 4rem 2rem 3rem; }
    .footer-links { gap: 1.5rem; }
    .section-header { margin-bottom: 3rem; }
    .section-header .t-title { font-size: clamp(2rem, 5vw, 3rem); }
    .service-card { padding: 2.5rem 2rem; }
    .method-card { padding: 2.5rem 2rem; }
    .symptom-card { padding: 2.5rem 2rem; }
    .location-card { padding: 2.5rem 2rem; }
    .contact-cta-hero { padding: 5rem 2rem 4rem; }
    .courses-timeline::before { left: 70px; }
    .course-year { width: 55px; font-size: 0.65rem; }
    .course-item { gap: 1.5rem; }
}

@media (max-width: 480px) {
    .header { padding: 0 1.5rem; height: 60px; }
    .logo-name { font-size: 1rem; }
    .logo-sub { font-size: 0.48rem; letter-spacing: 0.3em; }
    .mobile-nav { top: 60px; padding: 1.5rem 1.5rem 2.5rem; }
    .mobile-nav a { font-size: 1.4rem; padding: 1rem 0; }
    .section { padding: 4rem 1.5rem; }
    .testimonial-section { padding: 4rem 1.5rem; }
    .cta-section { padding: 4rem 1.5rem; }
    .page-header { padding: 8rem 1.5rem 3.5rem; }
    .mobile-hero { padding: 6rem 1.5rem 3rem; }
    .mobile-hero-title { font-size: clamp(2rem, 7vw, 3rem); }
    .mobile-hero-desc { font-size: 0.95rem; }
    .split-text { padding: 2.5rem 1.5rem; }
    .about-content { padding: 4rem 1.5rem; }
    .t-body-lg { font-size: 1.05rem; }
    .stats-row { gap: 1.5rem; padding: 2.5rem 1.5rem; flex-direction: column; }
    .stats-num { font-size: 2.2rem; }
    .site-footer { padding: 3rem 1.5rem 2.5rem; }
    .footer-links { gap: 1.2rem; }
    .footer-links a { font-size: 0.58rem; }
    .contact-cta-hero { padding: 4rem 1.5rem 3.5rem; }
    .contact-cta-actions { flex-direction: column; align-items: center; }
    .contact-cta-actions .btn { width: 100%; }
    .courses-timeline::before { left: 55px; }
    .course-year { width: 42px; font-size: 0.6rem; letter-spacing: 0.08em; }
    .course-item { gap: 1rem; padding: 1.4rem 0; }
    .course-content h3 { font-size: 1.2rem; }
    .course-content p { font-size: 0.85rem; }
}