@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;500;600;700;800;900&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
    --golden-wheat: #D4A76A;
    --golden-wheat-light: #E8C99B;
    --golden-wheat-dark: #B8894E;
    --winterberry: #A4343A;
    --winterberry-light: #C45A5F;
    --winterberry-dark: #7E282D;
    --bronze-brown: #816D4D;
    --bronze-brown-light: #A08B6B;
    --french-blue: #4A4B60;
    --ocean-blue: #5E6B7F;
    --ocean-blue-light: #7A8899;
    --ocean-blue-dark: #4A5568;
    --cream: #FAF7F2;
    --cream-dark: #F0EBE3;
    --dark: #1A1A1A;
    --dark-soft: #2D2D2D;
    --text: #3A3A3A;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --font-heading: 'Unbounded', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow: 0 4px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--dark);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--golden-wheat-dark);
    margin-bottom: 16px;
    display: inline-block;
}

.section-title {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: #a4343a;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 600px;
    font-weight: 400;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--winterberry);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--winterberry-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(164, 52, 58, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-golden {
    background: var(--golden-wheat);
    color: var(--white);
}

.btn-golden:hover {
    background: var(--golden-wheat-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 167, 106, 0.3);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header--scrolled {
    padding: 10px 0;
    background: rgba(250, 247, 242, 0.98);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 101;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 200px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.5px;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--ocean-blue);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav a:hover {
    color: var(--ocean-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
    padding: 4px;
}

.burger span {
    width: 28px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 2px;
}

.burger--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger--active span:nth-child(2) {
    opacity: 0;
}

.burger--active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 100;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu--active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--dark);
}

.mobile-menu a:hover {
    color: var(--ocean-blue);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0.55;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.7) 0%,
        rgba(26, 26, 26, 0.3) 50%,
        rgba(26, 26, 26, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    padding: 8px 20px;
    margin-bottom: 32px;
}

.hero-badge span {
    font-size: 13px;
    font-weight: 500;
    color: var(--golden-wheat-light);
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(36px, 4.5vw, 56px);
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title .accent {
    color: var(--golden-wheat);
    font-style: italic;
}

.hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: float 2s ease-in-out infinite;
}

.hero-scroll span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

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


.services {
    background: var(--white);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream);
    transition: var(--transition);
    group: true;
}

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

.service-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.06);
}

.service-card-content {
    padding: 28px;
}

.service-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--font-body);
    color: var(--dark);
}

.service-card-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--winterberry);
    letter-spacing: 0.5px;
}

.service-card-link svg {
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-link svg {
    transform: translateX(4px);
}


.promo {
    background: var(--cream);
}

.promo-header {
    text-align: center;
    margin-bottom: 60px;
}

.promo-header .section-subtitle {
    margin: 0 auto;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.promo-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.promo-card-badge {
    display: inline-block;
    background: var(--winterberry);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.promo-card-content {
    padding: 32px;
}

.promo-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 700;
}

.promo-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.promo-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.promo-price .old {
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
}

.promo-price .new {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--winterberry);
}

.team {
    background: var(--white);
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header .section-subtitle {
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.team-card {
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-card-image {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card h3 {
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card .position {
    font-size: 13px;
    color: var(--ocean-blue);
    font-weight: 600;
    margin-bottom: 4px;
}

.team-card .experience {
    font-size: 13px;
    color: var(--text-light);
}

@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .team-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 20px 24px 40px;
        margin: 0 -24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .team-grid::-webkit-scrollbar {
        display: none;
    }

    .team-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
        background: var(--white);
        padding: 16px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow);
    }

    .team-card:hover {
        transform: none;
    }

    .team-card-image {
        margin-bottom: 16px;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(94,107,127,0.7), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.reviews-section {
    background: var(--cream);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    align-items: start;
}

.reviews-item {
    background: var(--white);
    padding: 10px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.reviews-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.reviews-item img {
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius) - 8px);
    display: block;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }
}

.cta {
    background: linear-gradient(135deg, var(--winterberry), var(--winterberry-dark));
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,167,106,0.2), transparent);
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.05), transparent);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta .section-label {
    color: var(--golden-wheat-light);
}

.cta .section-title {
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 20px;
}

.cta .section-subtitle {
    color: rgba(255,255,255,0.7);
    margin: 0 auto 40px;
    text-align: center;
}

.contacts {
    background: var(--white);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-location {
    padding: 36px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact-location:hover {
    box-shadow: var(--shadow);
}

.contact-location h3 {
    font-size: 20px;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-location h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--ocean-blue);
    border-radius: 2px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--ocean-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.contact-info-text {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text);
}

.contact-info-text a {
    font-weight: 600;
    color: var(--dark);
}

.contact-info-text a:hover {
    color: var(--winterberry);
}

.contact-info-text small {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 2px;
}

.map-section {
    padding: 0 0 100px;
    background: var(--white);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer {
    background: #a4343a;
    color: rgba(255,255,255,0.6);
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48p
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 300px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--golden-wheat);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--ocean-blue);
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
}

.footer-legal {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255,255,255,0.35);
    margin-top: 16px;
    max-width: 600px;
}

/* MISSION SECTION */
.mission-section {
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mission-card {
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    background: var(--cream);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.mission-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-weight: 500;
}

.mission-card .mission-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--bronze-brown);
    margin-bottom: 12px;
}

.mission-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.mission-card--accent {
    background: var(--ocean-blue);
    color: var(--white);
}

.mission-card--accent h3 {
    color: var(--white);
}

.mission-card--accent p,
.mission-card--accent .loyalty-item span {
    color: rgba(255,255,255,0.8);
}

.mission-card--highlight {
    background: var(--winterberry);
    color: var(--white);
}

.mission-card--highlight h3 {
    color: var(--white);
}

.mission-card--highlight p,
.mission-card--highlight .loyalty-item span {
    color: rgba(255,255,255,0.85);
}

.loyalty-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}

.loyalty-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
    min-width: 70px;
    text-align: right;
}

.mission-card--accent .loyalty-number,
.mission-card--highlight .loyalty-number {
    color: var(--golden-wheat-light);
}

/* ADVANTAGE FULL CARDS */
.advantages {
    background: var(--cream);
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.advantages-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 80px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    width: 100%;
}

.brand-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.brand-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

@media (max-width: 480px) {
    .logo{ width: 100px; }
    .brands-grid {
        grid-template-columns: 1fr;
    }
}

.advantage-card-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


.advantage-card-full--reverse {
    direction: rtl;
}

.advantage-card-full--reverse > * {
    direction: ltr;
}

.advantage-card-full-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.advantage-card-full-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.6s ease;
}

.advantage-card-full:hover .advantage-card-full-img img {
    transform: scale(1.03);
}

.advantage-card-full-text h2 {
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 20px;
    line-height: 1.2;
}

.advantage-card-full-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.closing-text {
    margin-top: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.closing-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.closing-text p:last-child {
    margin-bottom: 0;
    color: var(--dark);
    font-weight: 600;
}

/* SERVICES CATEGORY */
.services-category {
    margin-bottom: 48px;
}

.services-category:last-child {
    margin-bottom: 0;
}

.services-category-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--winterberry);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--golden-wheat-light);
    display: inline-block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* HISTORY */
.history {
    background: #a4343a;
    color: var(--white);
}

.history .section-label {
    color: var(--golden-wheat);
}

.history .section-title {
    color: var(--white);
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

.history-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.history-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.history-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.history-text p:last-child {
    margin-bottom: 0;
}

/* TEAM DETAILS */
.team-details {
    margin-top: 60px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.team-salon-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.team-tab {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 28px;
    border: 2px solid var(--golden-wheat);
    background: transparent;
    border-radius: 100px;
    cursor: pointer;
    color: var(--dark);
    transition: var(--transition);
}

.team-tab.active {
    background: var(--golden-wheat);
    color: var(--white);
}

.team-tab:hover {
    background: var(--golden-wheat-light);
    color: var(--white);
}

.team-salon-content {
    display: none;
}

.team-salon-content.active {
    display: block;
}

.team-roster {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-roster-group h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--winterberry);
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.team-roster-group ol {
    padding-left: 20px;
}

.team-roster-group li,
.team-roster-group p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 0;
}

/* GALLERY PORTFOLIO */
.gallery-grid-portfolio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-grid-portfolio .gallery-item img {
    height: 450px;
}

/* INFOGRAPHIC */
.infographic {
    background: #a4343a;
    color: var(--white);
}

.infographic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.infographic-card {
    text-align: center;
    padding: 48px 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.infographic-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
}

.infographic-icon {
    margin-bottom: 24px;
    color: var(--golden-wheat);
}

.infographic-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.infographic-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
}

/* PHOTO GALLERY */
.photo-gallery {
    background: var(--cream);
}

.photo-gallery .gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

/* SOCIAL LINKS */
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--cream);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    border: 1px solid rgba(0,0,0,0.08);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--ocean-blue);
    color: var(--white);
    border-color: var(--ocean-blue);
}

/* FOOTER EXTRAS */
.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(10);
}

.footer-license {
    max-width: 120px;
    border-radius: 8px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-license:hover {
    opacity: 1;
}

.footer-legal {
    font-size: 12px;
    line-height: 1.8;
    color: rgba(255,255,255,0.35);
    margin-top: 24px;
    max-width: none;
}

.footer-legal p {
    margin-bottom: 2px;
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (max-width: 1024px) {
    .nav { display: none; }
    .header-phone { display: none; }
    .burger { display: flex; }
    .mobile-menu { display: flex; }

    .mission-grid { grid-template-columns: 1fr; }
    .advantage-card-full { grid-template-columns: 1fr; gap: 30px; }
    .advantage-card-full--reverse { direction: ltr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-grid { grid-template-columns: repeat(2, 1fr); }
    .history-grid { grid-template-columns: 1fr; }
    .team-roster { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid-portfolio { grid-template-columns: repeat(2, 1fr); }
    .infographic-grid { grid-template-columns: repeat(2, 1fr); }
    .contacts-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .section { padding: 70px 0; }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid-portfolio { grid-template-columns: 1fr; }
    .infographic-grid { grid-template-columns: 1fr; }
    .team-roster { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }

    .services-header { flex-direction: column; align-items: flex-start; }
    .gallery-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .photo-gallery .gallery-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .hero-content { padding: 120px 0 80px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .section { padding: 60px 0; }
    .container { padding: 0 16px; }
    .advantage-card-full-img img { height: 280px; }
    .gallery-grid-portfolio { grid-template-columns: 1fr; }
    .gallery-grid-portfolio .gallery-item img { height: 60vh; width: 100%; object-fit: cover; }
}

/* SUBPAGE STYLES */
.subpage-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--dark);
    overflow: hidden;
    text-align: center;
}

.subpage-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(45,45,45,0.9) 50%, rgba(26,26,26,0.95) 100%);
}

.subpage-hero-inner {
    position: relative;
    z-index: 2;
}

.subpage-hero-inner--master {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
}

.subpage-hero-title {
    font-size: clamp(32px, 4vw, 56px);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.subpage-master-portrait {
    flex-shrink: 0;
    width: 380px;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 3px solid var(--golden-wheat);
}

.subpage-master-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.subpage-master-info {
    flex: 1;
}

.subpage-master-position {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--golden-wheat);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.subpage-master-experience {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
    font-weight: 400;
}

.subpage-cta-btn {
    padding: 18px 48px;
    font-size: 14px;
}

.subpage-content {
    padding: 60px 0 100px;
    background: var(--cream);
}

.subpage-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.subpage-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--winterberry);
    margin-top: 40px;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.subpage-back-link:hover {
    color: var(--winterberry-dark);
    border-bottom-color: var(--winterberry-dark);
}

.subpage-back-link svg {
    transition: transform 0.3s ease;
}

.subpage-back-link:hover svg {
    transform: translateX(-4px);
}

.subpage-portfolio-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.subpage-portfolio-image img {
    width: 100%;
    height: auto;
    display: block;
}

.subpage-hero--portfolio {
    padding: 160px 0 60px;
}

.subpage-privacy-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 20px;
}

.subpage-privacy-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .subpage-hero-inner--master {
        flex-direction: column;
        text-align: center;
    }
    .subpage-master-portrait {
        width: 300px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .subpage-hero {
        padding: 120px 0 60px;
    }
    .subpage-master-portrait {
        width: 260px;
        height: 340px;
    }
    .subpage-container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item img { height: 280px; }
    .team-salon-tabs { flex-direction: column; }
    html { font-size: 15px; }
    .price-tabs { flex-direction: column; }
}

.service-hero {
    position: relative;
    height: 50vh;
    min-height: 340px;
    overflow: hidden;
    background: var(--dark);
}

.service-hero-bg {
    position: absolute;
    inset: 0;
}

.service-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.7) 0%, rgba(26,26,26,0.3) 50%, rgba(26,26,26,0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.service-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.service-price-section {
    background: var(--dark);
    padding: 80px 0 100px;
}

.price-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.price-tab {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 28px;
    border: 2px solid var(--golden-wheat);
    background: transparent;
    border-radius: 100px;
    cursor: pointer;
    color: var(--golden-wheat);
    transition: var(--transition);
}

.price-tab.active {
    background: var(--golden-wheat);
    color: var(--white);
}

.price-tab:hover {
    background: var(--golden-wheat-light);
    color: var(--white);
    border-color: var(--golden-wheat-light);
}

.price-tab-content {
    display: none;
}

.price-tab-content.active {
    display: block;
}

.price-table {
    max-width: 800px;
    margin: 0 auto;
}

.price-header {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--golden-wheat);
    padding: 20px 0 10px;
    margin-top: 12px;
    border-bottom: 1px solid rgba(212,167,106,0.25);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 16px;
}

.price-row:hover {
    background: rgba(255,255,255,0.03);
}

.price-name {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    font-weight: 400;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--golden-wheat-light);
    white-space: nowrap;
    flex-shrink: 0;
}



    .loyalty-item:last-child span:last-child {
      margin-left: 10px; }
} 