* { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --color-primary: #EDE4D3;
            --color-primary-dark: #2B2620;
            --color-background: #FAF6EF;
            --color-button: #C9963A;
            --color-text: #2B2620;
            --color-dot-active: #C4654A;
            --color-dot-inactive: #D4C9B8;
            --color-signature: #C4654A;
            --color-white: #ffffff;
            --color-black: #000000;
            --color-nav-hover-bg: 201, 150, 58;
            --header-offset: 67px;
            --logo-font-size: 36px; /* у тебя сейчас 36px */
			--logo-icon-size: 32px; /* идеальная “пара” к 36px для такого знака */
			--logo-optical-shift: -3px;  /* + вниз, - вверх; подстроишь 0..2px */
			--logo-gap: 10px;
        }        
        html {scroll-padding-top: var(--header-offset); scroll-behavior: smooth; }
        body { font-family: Jost, sans-serif; background: var(--color-background); color: var(--color-text); line-height: 1.5; }
        a { text-decoration: none; color: inherit; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
        .text-center { text-align: center; }
        h1,h2,h3 { font-family: "Cormorant Garamond", serif; font-weight: 400; line-height: 1.2; }
        h1 { font-size: clamp(28px,6vw,56px); letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 24px; }
        h2 { font-size: clamp(26px,5vw,44px); margin-bottom: 16px; text-transform: uppercase; }
        .main-signature { font-family: "Great Vibes", cursive; font-size: 60px; color: #b4663b; line-height: 1; }
        .medium-signature { font-family: "Great Vibes", cursive; font-size: 30px; color: var(--color-signature); margin-bottom: 8px; }
        .minor-signature { font-family: "Great Vibes", cursive; font-size: 40px; color: var(--color-signature); line-height: 1; }
        /* Header */
        .site-header { position: fixed; width: 100%; z-index: 100; top: 0; left: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 100%);
            backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(255,255,255,0.15); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; color: white; padding: 18px 40px; }
		.logo{
		  font-family: "Great Vibes", cursive;
		  font-size: var(--logo-font-size);
		  line-height: 1;                 /* важно: убирает лишнюю высоту строки */
		  display: inline-flex;
		  align-items: center;
		  gap: var(--logo-gap);
		  transition: opacity .18s ease;
		}
		.logo:hover{
		  opacity: 0.92;
		}
		.logo svg{
		  width: var(--logo-icon-size);
		  height: var(--logo-icon-size);
		  display: block;
		  flex: 0 0 auto;
		  transform: translateY(var(--logo-optical-shift));
		  transition: transform .18s ease, filter .18s ease, opacity .18s ease;
		}
		.logo:hover svg{
		  transform: translateY(calc(var(--logo-optical-shift) - 1px)) scale(1.04);
		  filter: brightness(1.08);
		}
		.logo svg circle{
		  transition: r .18s ease, fill .18s ease;
		}		
		.logo:hover svg circle{
		  r: 6;
		  fill: #E0B45E;
		}
        nav { display: flex; align-items: center; }
        nav a { position: relative; text-decoration: none; padding: 5px 0;
            transition: color 0.2s; margin-left: 24px; color: white; white-space: nowrap; }
        nav a::after { content: ""; position: absolute; top: 50%; left: 50%; width: 120%; height: 0;
            background: rgba(var(--color-nav-hover-bg),0); transform: translate(-50%,-50%);
            transition: height 0.2s, background 0.2s; border-radius: 30px; z-index: -1; }
        nav a:hover { color: var(--color-black); }
        nav a:hover::after { height: 80%; background: rgba(var(--color-nav-hover-bg),1); }
        .lang-sep { color: rgba(255,255,255,0.2); margin-left: 28px; font-size: 16px;
            user-select: none; pointer-events: none; line-height: 1; }
        nav a.lang-btn { background: rgba(255,255,255,0.12); backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px); border-radius: 20px; padding: 5px 14px !important;
            border: 1px solid rgba(255,255,255,0.22); margin-left: 8px; letter-spacing: 1.5px;
            font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85) !important;
            transition: background 0.2s, border-color 0.2s; line-height: 1.4; }
        nav a.lang-btn:hover { background: rgba(255,255,255,0.25) !important;
            border-color: rgba(255,255,255,0.4) !important; color: white !important; }
        nav a.lang-btn::after { display: none !important; }
        /* Hamburger */
        .hamburger { display: none; flex-direction: column; cursor: pointer;
            gap: 5px; padding: 4px; background: none; border: none; }
        .hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px;
            transition: all 0.3s; display: block; }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
        .mobile-nav { display: none; flex-direction: column; padding: 0 20px 16px;
            background: rgba(20,16,12,0.95); backdrop-filter: blur(16px); }
        .mobile-nav.open { display: flex; }
        .mobile-nav a { color: white; padding: 12px 0; font-size: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.08); }
        .mobile-nav a:last-child { border-bottom: none; }
        .mobile-nav .lang-btn-mobile { margin-top: 8px; display: inline-block;
            background: rgba(255,255,255,0.12); border-radius: 20px; padding: 8px 18px;
            border: 1px solid rgba(255,255,255,0.22); font-size: 12px; font-weight: 600;
            letter-spacing: 1.5px; color: rgba(255,255,255,0.85); }
        /* Hero */
        .hero { position: relative; min-height: 100svh; display: flex; align-items: center;
            justify-content: center; text-align: center; color: white; overflow: hidden; }
        .hero-bg { position: absolute; top:0; left:0; width:100%; height:100%; z-index:0;
            background-image: url("assets/img/background.png"); background-size: cover; background-position: center; }
        .hero-overlay { position: absolute; top:0; left:0; width:100%; height:100%;
            background: rgba(0,0,0,0.45); z-index:1; }
        .hero-content { position: relative; z-index:10; max-width: 900px; padding: 40px 24px; }
        .hero-content .minor-signature { color: #ffebd0; font-size: clamp(28px,5vw,46px); }
        .hero-content p { font-size: clamp(16px,2vw,20px); margin: 24px auto; opacity: 0.92;
            max-width: 620px; }
        .btn { display: inline-block; background: var(--color-button); color: white;
            font-weight: 600; padding: 14px 36px; border-radius: 40px; border: none;
            font-size: 16px; transition: background 0.2s; cursor: pointer; }
        .btn:hover { background: var(--color-primary-dark); }
        /* Sections */
        section { padding: 80px 40px; border-bottom: 1px solid #eae0d5; }
        .dark-section { background: var(--color-primary); padding: 80px 40px; border-bottom: 1px solid #eae0d5; }
        .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
        .two-col--center { align-items: center; }
        .two-col--spaced { margin-bottom: 64px; }
        .text-paragraph { margin-top: 16px; color: #5a4f45; font-size: 16px; }
        .section-lead { max-width: 700px; margin: 0 auto 8px; }
        .format-description { font-size: 14px; color: #5a4f45; }
        .contact-lead { font-size: 18px; margin-bottom: 8px; }
        .contact-note { color: #5a4f45; }
        .footer-meta { font-size: 14px; color: #8a7a6e; }
        .visually-hidden-metric { position: absolute; left: -9999px; }
        .exp-list { list-style: none; margin-top: 24px; }
        .exp-list li { margin-bottom: 16px; padding-left: 28px; position: relative; }
        .exp-list li::before { content: "—"; position: absolute; left: 0;
            color: var(--color-signature); font-weight: 600; }
        /* Who */
        .who-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 40px; }
        .who-card { background: var(--color-background); border-radius: 24px; padding: 28px 24px;
            border: 1px solid #e0d5c8; text-align: center; }
        .who-card .icon { font-size: 32px; margin-bottom: 12px; }
        .who-card h3 { font-family: "Cormorant Garamond", serif; font-size: 20px; margin-bottom: 8px; }
        .who-card p { font-size: 14px; color: #5a4f45; line-height: 1.5; }
        /* Formats */
        .formats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; margin: 48px 0; }
        .format-card { background: #fffbf5; padding: 32px; border-radius: 32px;
            border: 1px solid #f0e1d4; text-align: left; }
        .format-card strong { font-size: 18px; display: block; margin-bottom: 12px; }
        .format-card .outcome { font-size: 14px; color: #5a4f45; margin-top: 12px; line-height: 1.6;
            border-top: 1px solid #eddcc8; padding-top: 12px; }
        /* Images */
        .img-rounded-rect { width: 100%; aspect-ratio: 4/3; border-radius: 40px; background: #e9ddd2; background-size: cover; }
        .profile-photo { background-image: url("/assets/img/Olga_Shadrina-1.webp"); }
        .img-rounded-rect-vertical { width: 80%; aspect-ratio: 3/4; border-radius: 40px; background: #e9ddd2;
            background-image: url("/assets/img/Olga_Shadrina-2.jpg"); background-size: cover; margin-left: auto; }
        /* Carousel */
        .carousel-container { position: relative; max-width: 1200px; margin: 0 auto;
            display: flex; align-items: center; gap: 10px; }
        .carousel-wrapper { overflow: hidden; width: 100%; padding: 20px 0; }
        .carousel-track { display: flex; transition: transform 0.5s ease; gap: 24px; }
        .testimonial-slide { flex: 0 0 calc(33.333% - 16px); display: flex; flex-direction: column; align-items: center; }
        .testimonial-text { background: white; padding: 32px 24px; border-radius: 24px; text-align: left;
            box-shadow: 0 10px 10px rgba(0,0,0,0.1); border: 1px solid #f0e9de;
            margin-bottom: 24px; width: 100%; }
        .testimonial-text p { font-size: 15px; font-style: italic; margin: 0; line-height: 1.7; color: #333; }
        .testimonial-footer { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; }
        .testimonial-image { width: 80px; height: 80px; border-radius: 50%; overflow: hidden;
            margin-bottom: 12px; border: 3px solid white; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
        .testimonial-image img { width: 100%; height: 100%; object-fit: cover; }
        .testimonial-author { font-weight: 700; font-size: 17px; margin-bottom: 4px; }
        .testimonial-role { font-size: 13px; color: #8a7a6e; }
        .carousel-arrow { background: white; border: 1px solid var(--color-primary);
            color: var(--color-primary-dark); width: 48px; height: 48px; border-radius: 20%;
            font-size: 24px; cursor: pointer; transition: all 0.2s; display: flex;
            align-items: center; justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05); z-index: 10; }
        .carousel-arrow:hover { background: var(--color-primary-dark); color: white; }
        .carousel-dots { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
        .carousel-dot { width: 12px; height: 12px; background: var(--color-dot-inactive);
            border-radius: 50%; cursor: pointer; transition: 0.2s; padding: 0; border: none; }
        .carousel-dot.active { background: var(--color-dot-active); transform: scale(1.2); }
        /* Contact / Footer */
        .contact-block { background: #e8dfd3; border-radius: 48px; padding: 48px; margin: 48px 0;
            display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px; }
        .social-links a { color: var(--color-text); margin-right: 32px; font-weight: 500; }
        .footer { background: #e8dfd3; padding: 48px 0; text-align: center; }

        .hamburger:focus-visible,
        .carousel-arrow:focus-visible,
        .carousel-dot:focus-visible,
        nav a:focus-visible { outline: 2px solid var(--color-button); outline-offset: 3px; }

        /* ═══════════════════════════════════════
           TABLET  481px – 1024px
        ═══════════════════════════════════════ */
        @media (max-width: 1024px) {
            .container { padding: 0 24px; }
            .header-inner { padding: 16px 24px; }
            section, .dark-section { padding: 60px 24px; }
            .two-col { gap: 40px; }
            .who-grid { grid-template-columns: repeat(2,1fr); }
            .formats-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
            .testimonial-slide { flex: 0 0 calc(50% - 12px); }
            .img-rounded-rect-vertical { width: 100%; }
        }
        @media (max-width: 1024px) {
            :root {
                --logo-font-size: 32px;
                --logo-icon-size: 28px;
                --logo-gap: 9px;
                --logo-optical-shift: 1px;
            }
        }

        /* ═══════════════════════════════════════
           MOBILE  ≤ 640px
        ═══════════════════════════════════════ */
        @media (max-width: 640px) {
            .container { padding: 0 16px; }
            .header-inner { padding: 14px 16px; }
            /* hide desktop nav, show hamburger */
            nav { display: none; }
            .hamburger { display: flex; }
            section, .dark-section { padding: 48px 16px; }
            .two-col { grid-template-columns: 1fr; gap: 28px; }
            .who-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
            .who-card { padding: 20px 14px; border-radius: 18px; }
            .who-card h3 { font-size: 16px; }
            .formats-grid { grid-template-columns: 1fr; gap: 16px; }
            .format-card { padding: 22px; border-radius: 22px; }
            .hero-content .minor-signature { font-size: 26px; }
            .medium-signature { font-size: 24px; }
            .carousel-container { gap: 4px; }
            .carousel-arrow { width: 36px; height: 36px; font-size: 18px; }
            .testimonial-slide { flex: 0 0 calc(100% - 0px); }
            .testimonial-text { padding: 20px 16px; }
            .contact-block { flex-direction: column; align-items: center; text-align: center; padding: 28px; border-radius: 28px; }
            .social-links a { display: block; margin-right: 0; margin-bottom: 10px; }
            .social-links{
			    width: 100%;
			    display: flex;
			    flex-direction: column;
			    align-items: center;      /* центрируем сами ссылки */
			}
			.img-rounded-rect { border-radius: 24px; }
            .img-rounded-rect-vertical { width: 100%; border-radius: 24px; }
            .logo { font-size: 28px; }
        }

        @media (max-width: 640px) {
            :root {
                --logo-font-size: 28px;
                --logo-icon-size: 24px;
                --logo-gap: 8px;
                --logo-optical-shift: 1px;
            }
        }

/* ====== PHILOSOPHY SECTION ====== */
#philosophy {
    padding: 100px 0;
}

#philosophy h2 {
    text-align: center;
    margin-bottom: 60px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.philosophy-card {
    background: var(--color-background);
    border: 1px solid #e8e0d5;
    border-radius: 4px;
    padding: 40px 32px;
    transition: box-shadow 0.3s ease;
}

.philosophy-card:hover {
    box-shadow: 0 8px 32px rgba(90,79,69,0.10);
}

.philosophy-icon {
    font-size: 28px;
    color: #8a6f5b;
    margin-bottom: 20px;
    line-height: 1;
}

.philosophy-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: #2c2218;
    margin-bottom: 16px;
    line-height: 1.3;
}

.philosophy-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #5a4f45;
}

@media (max-width: 900px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
