/* ============================================
   ESMA BEAUTY STUDIO — Premium CSS
   Clean, Minimalist, Premium, Soft Aesthetic
   ============================================ */

/* ============================================
   CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
    /* Colors */
    --color-bg: #F7F6F2;
    --color-bg-alt: #EFEBE6;
    --color-bg-card: #FFFFFF;
    --color-bg-dark: #111111;
    --color-bg-dark-alt: #1C1A19;

    --color-text: #2D2C2A;
    --color-text-light: #8A8A8A;
    --color-text-muted: #A3A09B;
    --color-text-white: #F7F6F2;
    --color-text-heading: #1A1A1A;

    --color-accent: #C4A882;
    --color-accent-light: #D4BFA0;
    --color-border: #D5D0C8;
    --color-border-light: #E8E4DD;

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 140px;
    --section-padding-mobile: 70px;
    --container-max: 1340px;
    --container-padding: 40px;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 50px;

    /* Shadows */
    --shadow-soft: 0px 20px 40px rgba(0, 0, 0, 0.03);
    --shadow-card: 0px 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0px 20px 50px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --transition: all 0.3s ease-in-out;
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

input {
    border: none;
    outline: none;
    font-family: inherit;
    background: transparent;
}

ul {
    list-style: none;
}

::selection {
    background: var(--color-accent);
    color: white;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__inner {
    text-align: center;
}

.preloader__logo {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 300;
    color: var(--color-text-heading);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 30px;
}

.preloader__bar {
    width: 200px;
    height: 2px;
    background: var(--color-border-light);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader__progress {
    width: 0%;
    height: 100%;
    background: var(--color-text-heading);
    border-radius: 2px;
    animation: preloaderProgress 1.8s ease-in-out forwards;
}

@keyframes preloaderProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 25px;
    height: 1px;
    background: var(--color-text-light);
}

.section-title {
    font-family: var(--font-sans);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-text-heading);
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

.section-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn--primary {
    border: 1px solid var(--color-text-heading);
    color: var(--color-text-heading);
    background: transparent;
}

.btn--primary:hover {
    background: var(--color-text-heading);
    color: var(--color-bg);
}

.btn--ghost {
    border: 1px solid var(--color-border);
    color: var(--color-text);
    background: transparent;
}

.btn--ghost:hover {
    border-color: var(--color-text-heading);
    color: var(--color-text-heading);
}

.btn--filled {
    background: var(--color-text-heading);
    color: var(--color-bg);
    border: 1px solid var(--color-text-heading);
}

.btn--filled:hover {
    background: transparent;
    color: var(--color-text-heading);
}

.btn--filled-dark {
    background: var(--color-text-heading);
    color: var(--color-bg);
    border: 1px solid var(--color-text-heading);
    padding: 18px 40px;
    font-size: 12px;
}

.btn--filled-dark:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

.btn--white {
    border: 1px solid white;
    color: white;
    background: transparent;
}

.btn--white:hover {
    background: white;
    color: var(--color-text-heading);
}

.btn svg {
    width: 14px;
    height: 14px;
    transition: var(--transition);
}

.btn:hover svg {
    transform: translate(2px, -2px);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-slow);
}

.header.scrolled {
    background: rgba(247, 246, 242, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.header__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--color-text-heading);
    letter-spacing: 0.05em;
    z-index: 10;
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__nav-list {
    display: flex;
    gap: 36px;
}

.header__nav-link {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
    position: relative;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-text-heading);
    transition: var(--transition);
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__cta {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-heading);
    border: 1px solid var(--color-text-heading);
    padding: 10px 24px;
    border-radius: var(--radius-pill);
}

.header__cta:hover {
    background: var(--color-text-heading);
    color: var(--color-bg);
}

/* Burger */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 10;
}

.header__burger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--color-text-heading);
    transition: var(--transition);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 24px var(--container-padding);
}

.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu__logo {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--color-text-heading);
}

.mobile-menu__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mobile-menu__close span {
    position: absolute;
    width: 24px;
    height: 1px;
    background: var(--color-text-heading);
}

.mobile-menu__close span:first-child {
    transform: rotate(45deg);
}

.mobile-menu__close span:last-child {
    transform: rotate(-45deg);
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu__link {
    font-family: var(--font-sans);
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 300;
    color: var(--color-text-heading);
    padding: 8px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu.open .mobile-menu__link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-menu__link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open .mobile-menu__link:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.open .mobile-menu__link:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu.open .mobile-menu__link:nth-child(8) { transition-delay: 0.45s; }

.mobile-menu__link:hover {
    color: var(--color-accent);
}

.mobile-menu__footer {
    padding-bottom: 20px;
}

.mobile-menu__phone {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-heading);
    display: block;
    margin-bottom: 8px;
}

.mobile-menu__address {
    font-size: 14px;
    color: var(--color-text-light);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

/* Video background */
.hero__video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(20, 19, 18, 0.55) 0%,
        rgba(20, 19, 18, 0.30) 40%,
        rgba(20, 19, 18, 0.70) 100%
    );
}

/* Content */
.hero__container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding) 120px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.hero__eyebrow-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
}

.hero__location {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 18px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

.hero__est {
    font-family: var(--font-serif);
    font-size: 13px;
    font-style: italic;
    color: var(--color-gold);
    opacity: 0.9;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(72px, 11vw, 140px);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 28px;
}

.hero__title em {
    font-style: italic;
    color: var(--color-gold);
}

.hero__description {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    margin-bottom: 44px;
    max-width: 460px;
}

.hero__buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero__book-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-gold);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 100px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 30px rgba(196,168,130,0.45);
}

.hero__book-btn:hover {
    background: #b8976b;
    transform: translateY(-2px);
    box-shadow: 0 16px 45px rgba(196,168,130,0.55);
}

.hero__book-btn svg {
    transition: transform 0.3s;
}

.hero__book-btn:hover svg {
    transform: translate(2px, -2px);
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 0;
}

.hero__stat {
    padding: 0 40px;
    text-align: center;
}

.hero__stat:first-child {
    padding-left: 0;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.hero__stat-number {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 300;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.hero__stat-label {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* Scroll indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero__scroll-indicator span {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    writing-mode: vertical-rl;
}

.hero__scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.6);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ============================================
   BOOKING STRIP
   ============================================ */
.booking-strip {
    padding: 0 var(--container-padding);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.booking-strip__container {
    max-width: var(--container-max);
    margin: 0 auto;
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: 50px 60px;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 60px;
}

.booking-strip__info {
    min-width: 200px;
}

.booking-strip__title {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-text-heading);
    margin-bottom: 4px;
}

.booking-strip__subtitle {
    font-size: 13px;
    color: var(--color-text-muted);
}

.booking-strip__form {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
}

.booking-strip__field {
    flex: 1;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.booking-strip__field:focus-within {
    border-bottom-color: var(--color-text-heading);
    border-bottom-width: 2px;
}

.booking-strip__field input {
    width: 100%;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-heading);
}

.booking-strip__field input::placeholder {
    color: var(--color-text-muted);
    font-weight: 300;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding) 0;
}

.about__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about__text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 20px;
}

.about__highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 36px 0;
    padding: 28px 0;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.about__highlight-line {
    width: 3px;
    min-height: 60px;
    background: var(--color-accent);
    border-radius: 2px;
    flex-shrink: 0;
}

.about__highlight-text {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-heading);
    line-height: 1.5;
}

/* About gallery */
.about__gallery {
    position: relative;
}

.about__gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 16px;
}

.about__gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(8%) contrast(95%) brightness(97%);
    transition: transform 0.6s ease;
}

.about__gallery-item:hover img {
    transform: scale(1.05);
}

.about__gallery-item--large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.about__gallery-item--small {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.about__gallery-item--medium {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.about__instagram-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--color-bg-card);
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-card);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-heading);
    z-index: 2;
    transition: var(--transition);
}

.about__instagram-badge:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

/* ============================================
   OWNER SECTION
   ============================================ */
.owner {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.owner__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.owner__image {
    position: relative;
}

.owner__image img {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-xl);
    filter: sepia(6%) contrast(96%) brightness(98%);
}

.owner__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 1px solid var(--color-accent-light);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.owner__text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 20px;
}

.owner__text--accent {
    font-style: italic;
    color: var(--color-text-light);
    border-left: 2px solid var(--color-accent);
    padding-left: 20px;
    margin-top: 28px;
}

.owner__signature {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border-light);
}

.owner__signature-name {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-heading);
    display: block;
    margin-bottom: 4px;
}

.owner__signature-role {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
    padding: var(--section-padding) 0;
}

.why-us__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.why-us__header {
    text-align: center;
    margin-bottom: 70px;
}

.why-us__header .section-tag {
    padding-left: 0;
}

.why-us__header .section-tag::before {
    display: none;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-us__card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.why-us__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.why-us__card:hover::before {
    transform: scaleX(1);
}

.why-us__card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.why-us__card-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 300;
    color: var(--color-border-light);
    display: block;
    margin-bottom: 20px;
    line-height: 1;
}

.why-us__card-title {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-heading);
    margin-bottom: 12px;
}

.why-us__card-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.services__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.services__header {
    text-align: center;
    margin-bottom: 70px;
}

.services__header .section-tag {
    padding-left: 0;
}

.services__header .section-tag::before {
    display: none;
}

.services__intro {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* Visual Grid */
.services__visual-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 16px;
    margin-bottom: 80px;
}

.services__visual-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.services__visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(8%) contrast(95%) brightness(92%);
    transition: transform 0.6s ease;
}

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

.services__visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.services__visual-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
}

.services__visual-title {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 400;
    color: white;
}

.services__visual-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    opacity: 0;
    transform: translate(-10px, 10px);
}

.services__visual-card:hover .services__visual-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.services__visual-card--large {
    grid-row: span 2;
}

/* Price List */
.services__pricelist {
    max-width: 900px;
    margin: 0 auto;
}

.services__pricelist-heading {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.services__pricelist-heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-border);
    margin: 16px auto 0;
}

.services__category {
    border-bottom: 1px solid var(--color-border-light);
    margin-bottom: 0;
}

.services__category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    cursor: pointer;
    transition: var(--transition);
}

.services__category-header:hover {
    opacity: 0.8;
}

.services__category-title {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-heading);
    margin-bottom: 4px;
}

.services__category-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    max-width: 500px;
}

.services__category-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.services__category-duration {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.services__category-toggle {
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--color-text);
}

.services__category-header.active .services__category-toggle {
    transform: rotate(180deg);
    background: var(--color-text-heading);
    border-color: var(--color-text-heading);
    color: var(--color-bg);
}

.services__category-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 0 0 20px;
}

.services__category-body.open {
    max-height: 600px;
    padding-bottom: 24px;
}

.services__price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 10px 0;
}

.services__price-name {
    font-size: 15px;
    font-weight: 300;
    color: var(--color-text);
    white-space: nowrap;
}

.services__price-time {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 300;
}

.services__price-dots {
    flex: 1;
    border-bottom: 1px dotted var(--color-border);
    min-width: 30px;
    margin-bottom: 4px;
}

.services__price-value {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text-heading);
    white-space: nowrap;
}

.services__price-row--note {
    display: block;
    padding: 0 0 6px;
}

.services__price-note {
    font-size: 13px;
    font-style: italic;
    color: var(--color-text-muted);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
    padding: 60px 0;
    overflow: hidden;
}

.marquee__track {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee__item {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 300;
    font-style: italic;
    color: var(--color-border);
    padding: 0 40px;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
    padding: var(--section-padding) 0;
}

.team__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

.team__header .section-tag {
    padding-left: 0;
}

.team__header .section-tag::before {
    display: none;
}

.team__intro {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 480px;
    margin: 0 auto;
}

.team__group {
    margin-bottom: 60px;
}

.team__group-title {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.team__group-badge {
    color: var(--color-accent);
    font-size: 16px;
}

.team__carousel {
    overflow: hidden;
    position: relative;
}

.team__carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team__member {
    flex: 0 0 calc(25% - 18px);
    min-width: 220px;
}

.team__member-photo {
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
}

.team__member-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: var(--transition);
}

.team__member:hover .team__member-photo::after {
    background: rgba(0, 0, 0, 0.08);
}

.team__member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(6%) contrast(96%) brightness(98%);
    transition: transform 0.6s ease;
}

.team__member:hover .team__member-photo img {
    transform: scale(1.03);
}

.team__member-name {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-heading);
    margin-bottom: 4px;
}

.team__member-role {
    font-size: 13px;
    color: var(--color-text-muted);
}

.team__nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.team__nav-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: var(--transition);
}

.team__nav-btn:hover {
    background: var(--color-text-heading);
    border-color: var(--color-text-heading);
    color: var(--color-bg);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.gallery__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.gallery__header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery__header .section-tag {
    padding-left: 0;
}

.gallery__header .section-tag::before {
    display: none;
}

.gallery__intro {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 480px;
    margin: 0 auto;
}

.gallery__filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery__filter {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-light);
    padding: 10px 22px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.gallery__filter:hover,
.gallery__filter--active {
    background: var(--color-text-heading);
    border-color: var(--color-text-heading);
    color: var(--color-bg);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 220px);
    grid-auto-flow: dense;
    gap: 14px;
}

.gallery__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: var(--transition);
}

.gallery__item:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(8%) contrast(95%) brightness(97%);
    transition: transform 0.6s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item--tall {
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 2;
}
.reviews {
    padding: var(--section-padding) 0;
}

.reviews__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

.reviews__header .section-tag {
    padding-left: 0;
}

.reviews__header .section-tag::before {
    display: none;
}

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

.reviews__card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-slow);
}

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

.reviews__card--rotated-left {
    transform: rotate(-1.5deg);
}

.reviews__card--rotated-left:hover {
    transform: rotate(0deg) translateY(-4px);
}

.reviews__card--rotated-right {
    transform: rotate(1.5deg);
}

.reviews__card--rotated-right:hover {
    transform: rotate(0deg) translateY(-4px);
}

.reviews__card--featured {
    background: var(--color-text-heading);
    color: var(--color-text-white);
}

.reviews__card--featured .reviews__text {
    color: rgba(255, 255, 255, 0.85);
}

.reviews__card--featured .reviews__author-name {
    color: white;
}

.reviews__card--featured .reviews__author-source {
    color: rgba(255, 255, 255, 0.5);
}

.reviews__stars {
    font-size: 16px;
    letter-spacing: 4px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.reviews__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 24px;
    font-style: italic;
}

.reviews__author-name {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-heading);
    display: block;
    margin-bottom: 2px;
}

.reviews__author-source {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ============================================
   PROMO SECTION
   ============================================ */
.promo {
    padding: 80px 0;
}

.promo__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.promo__card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
}

.promo__card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(10%) contrast(90%) brightness(70%);
}

.promo__card-content {
    position: relative;
    z-index: 2;
    padding: 48px;
    width: 100%;
}

.promo__card-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

.promo__card-title {
    font-family: var(--font-sans);
    font-size: 36px;
    font-weight: 300;
    color: white;
    margin-bottom: 12px;
    line-height: 1.15;
}

.promo__card-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    max-width: 320px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

.faq__header .section-tag {
    padding-left: 0;
}

.faq__header .section-tag::before {
    display: none;
}

.faq__item {
    border-bottom: 1px solid var(--color-border-light);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 0;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-heading);
}

.faq__question:hover {
    color: var(--color-accent);
}

.faq__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--color-text-light);
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq__answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    padding-bottom: 24px;
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
}

.contact__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact__details {
    margin: 40px 0;
}

.contact__detail {
    margin-bottom: 28px;
}

.contact__detail-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 8px;
}

.contact__detail-value {
    font-size: 16px;
    color: var(--color-text-heading);
    line-height: 1.5;
}

.contact__detail-link:hover {
    color: var(--color-accent);
}

.contact__hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: var(--color-text);
    padding: 6px 0;
    max-width: 300px;
}

.contact__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 480px;
    box-shadow: var(--shadow-soft);
}

.contact__map iframe {
    border-radius: var(--radius-xl);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 100px 0;
    text-align: center;
}

.cta__container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.cta__title {
    font-family: var(--font-sans);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-text-heading);
    margin-bottom: 16px;
}

.cta__title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.cta__text {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-bg-dark);
    color: var(--color-text-white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    color: white;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 8px;
}

.footer__tagline {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer__brand-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

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

.footer__col-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.footer__link {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    padding: 5px 0;
    transition: var(--transition);
}

.footer__link:hover {
    color: white;
    padding-left: 6px;
}

.footer__hours {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}

.footer__copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer__link--inline {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.footer__link--inline:hover {
    color: var(--color-accent);
}

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer__social-link:hover {
    background: white;
    border-color: white;
    color: var(--color-bg-dark);
}

/* Footer Decorative Image */
.footer__decor {
    position: absolute;
    bottom: 0;
    right: 8%;
    z-index: 2;
    pointer-events: none;
}

.footer__decor img {
    width: 220px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    filter: sepia(15%) contrast(90%) brightness(80%);
    opacity: 0.5;
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-heading);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-text-heading);
    border-color: var(--color-text-heading);
    color: var(--color-bg);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   RESPONSIVE — TABLET (<=1024px)
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 100px;
        --container-padding: 30px;
    }

    .header__nav {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .hero__container {
        padding-bottom: 90px;
    }

    .hero__title {
        font-size: clamp(56px, 9vw, 100px);
    }

    .hero__stat {
        padding: 0 24px;
    }

    .hero__stat-number {
        font-size: 34px;
    }

    .services__visual-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 240px 240px 240px;
    }

    .services__visual-card--large {
        grid-row: span 1;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .owner__container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .owner__image {
        display: flex;
        justify-content: center;
    }

    .owner__image img {
        max-width: 340px;
    }

    .owner__text--accent {
        text-align: left;
    }

    .why-us__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact__map {
        height: 350px;
    }

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

    .promo__container {
        grid-template-columns: 1fr;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-auto-rows: 200px;
    }

    .team__member {
        flex: 0 0 calc(33.333% - 16px);
    }
}

/* ============================================
   RESPONSIVE — MOBILE (<=768px)
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
        --container-padding: 20px;
    }

    .hero__container {
        padding-bottom: 80px;
    }

    .hero__title {
        font-size: clamp(42px, 12vw, 64px);
    }

    .hero__description {
        font-size: 14px;
        max-width: 100%;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 48px;
    }

    .hero__book-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero__stats {
        gap: 0;
        width: 100%;
    }

    .hero__stat {
        padding: 0 16px;
        flex: 1;
    }

    .hero__stat:first-child {
        padding-left: 0;
    }

    .hero__stat-number {
        font-size: 28px;
    }

    .hero__scroll-indicator {
        display: none;
    }

    .services__visual-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
    }

    .services__visual-card--large {
        grid-row: span 1;
    }

    .about__gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .about__gallery-item--large {
        grid-column: auto;
        grid-row: auto;
    }

    .about__gallery-item {
        height: 200px;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
    }

    .services__visual-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .services__category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .services__category-meta {
        width: 100%;
        justify-content: space-between;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery__item--tall {
        grid-row: span 1;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
    }

    .reviews__card--rotated-left,
    .reviews__card--rotated-right {
        transform: none;
    }

    .reviews__card--rotated-left:hover,
    .reviews__card--rotated-right:hover {
        transform: translateY(-4px);
    }

    .promo__card {
        min-height: 350px;
    }

    .promo__card-title {
        font-size: 28px;
    }

    .team__member {
        flex: 0 0 calc(50% - 12px);
        min-width: 160px;
    }

    .footer__links {
        grid-template-columns: 1fr 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer__decor {
        display: none;
    }

    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (<=480px)
   ============================================ */
@media (max-width: 480px) {
    .hero__title {
        font-size: clamp(40px, 14vw, 56px);
    }

    .hero__container {
        padding-bottom: 64px;
    }

    .hero__stat-number {
        font-size: 22px;
    }

    .hero__stat-label {
        font-size: 9px;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .footer__links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
