/* ============================================
   NILO DECOR — Hospitality Interior Website
   ============================================ */

:root {
    --color-bg: #0c0b0a;
    --color-bg-warm: #141210;
    --color-bg-card: #1a1816;
    --color-bg-elevated: #211f1c;
    --color-gold: #c4a265;
    --color-gold-light: #d4b885;
    --color-gold-dark: #9a7d4a;
    --color-cream: #f5f0e8;
    --color-cream-muted: #c8c0b4;
    --color-text: #e8e2d8;
    --color-text-muted: #9a9590;
    --color-border: rgba(196, 162, 101, 0.15);
    --color-border-subtle: rgba(255, 255, 255, 0.06);

    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    --container-max: 1280px;
    --section-padding: clamp(80px, 10vw, 140px);
}

/* ---- 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-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

/* ---- Typography ---- */

.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.section-label--light {
    color: var(--color-gold-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-cream);
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 560px;
    margin-top: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

.section-header {
    margin-bottom: clamp(48px, 6vw, 80px);
}

/* ---- Buttons ---- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-gold);
    color: var(--color-bg);
}

.btn--primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 162, 101, 0.25);
}

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

.btn--outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.btn--light {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--color-cream);
}

.btn--light:hover {
    border-color: var(--color-gold-light);
    color: var(--color-gold-light);
}

.btn--large {
    padding: 18px 48px;
    font-size: 0.9rem;
}

/* ---- Navigation ---- */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 clamp(20px, 4vw, 60px);
    transition: all 0.5s var(--ease-out);
}

.nav--scrolled {
    background: rgba(12, 11, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-subtle);
}

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

.nav__logo img {
    height: 52px;
    width: auto;
    transition: opacity 0.3s;
}

.nav__logo:hover img {
    opacity: 0.85;
}

.nav__links {
    display: flex;
    gap: 40px;
}

.nav__links a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-cream-muted);
    transition: color 0.3s;
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.4s var(--ease-out);
}

.nav__links a:hover {
    color: var(--color-cream);
}

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

.nav__cta {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    padding: 10px 28px;
    border: 1px solid var(--color-gold-dark);
    transition: all 0.4s var(--ease-out);
}

.nav__cta:hover {
    background: var(--color-gold);
    color: var(--color-bg);
}

.nav__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__mobile-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-cream);
    transition: all 0.3s var(--ease-out);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 11, 10, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

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

.mobile-menu__links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-menu__links a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-cream);
    transition: color 0.3s;
}

.mobile-menu__links a:hover {
    color: var(--color-gold);
}

.mobile-menu__cta {
    color: var(--color-gold) !important;
    font-size: 1.2rem !important;
    font-family: var(--font-body) !important;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

/* ---- Hero Section ---- */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

/* Inward masking gradient — fades video edges into the background */
.hero__video-mask {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        /* Top edge */
        linear-gradient(to bottom, var(--color-bg) 0%, transparent 22%),
        /* Bottom edge */
        linear-gradient(to top, var(--color-bg) 0%, transparent 28%),
        /* Left edge */
        linear-gradient(to right, var(--color-bg) 0%, transparent 18%),
        /* Right edge */
        linear-gradient(to left, var(--color-bg) 0%, transparent 18%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__logo {
    width: 110px;
    height: auto;
    margin-bottom: 32px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    animation: heroFadeIn 1.2s var(--ease-out) 0.2s both;
}

.hero__tagline {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
    animation: heroFadeIn 1.2s var(--ease-out) 0.4s both;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-cream);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    animation: heroFadeIn 1.2s var(--ease-out) 0.6s both;
}

.hero__subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-cream-muted);
    margin-bottom: 44px;
    max-width: 580px;
    animation: heroFadeIn 1.2s var(--ease-out) 0.8s both;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: heroFadeIn 1.2s var(--ease-out) 1s both;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: heroFadeIn 1.2s var(--ease-out) 1.4s both;
}

.hero__scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--color-gold-dark), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ---- Intro Section ---- */

.intro {
    padding: var(--section-padding) 0;
    border-bottom: 1px solid var(--color-border-subtle);
}

.intro__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.intro__description {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--color-cream-muted);
    margin-top: 1.5rem;
    font-weight: 300;
}

.intro__stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat {
    padding: 28px 0;
    border-bottom: 1px solid var(--color-border);
}

.stat:last-child {
    border-bottom: none;
}

.stat__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-gold);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* ---- Values Section ---- */

.values {
    padding: var(--section-padding) 0;
    background: var(--color-bg-warm);
}

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

.value-card {
    padding: 40px 32px;
    border: 1px solid var(--color-border-subtle);
    transition: all 0.5s var(--ease-out);
}

.value-card:hover {
    border-color: var(--color-border);
    background: var(--color-bg-card);
    transform: translateY(-4px);
}

.value-card__icon {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* ---- Collections Section ---- */

.collections {
    padding: var(--section-padding) 0;
}

.collections__tabs {
    display: flex;
    gap: 4px;
    margin-bottom: clamp(40px, 5vw, 64px);
    border-bottom: 1px solid var(--color-border-subtle);
}

.collections__tab {
    background: none;
    border: none;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    cursor: pointer;
    position: relative;
    transition: color 0.4s var(--ease-out);
}

.collections__tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out);
}

.collections__tab:hover {
    color: var(--color-cream);
}

.collections__tab.active {
    color: var(--color-gold);
}

.collections__tab.active::after {
    transform: scaleX(1);
}

.collections__tier {
    display: none;
}

.collections__tier.active {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 6vw, 80px);
}

/* Collection Cards */

.collection-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.collection-card--reverse {
    direction: rtl;
}

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

.collection-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.collection-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.collection-card:hover .collection-card__image img {
    transform: scale(1.04);
}

.collection-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 11, 10, 0.4) 0%, transparent 60%);
    display: flex;
    align-items: flex-start;
    padding: 20px;
}

.collection-card__tier-badge {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-cream);
    background: rgba(196, 162, 101, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 16px;
    border: 1px solid rgba(196, 162, 101, 0.25);
}

.collection-card__tier-badge--deluxe {
    background: rgba(196, 162, 101, 0.35);
    border-color: var(--color-gold);
    color: var(--color-gold-light);
}

.collection-card__name {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: 6px;
}

.collection-card__tagline {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 18px;
    font-weight: 300;
}

.collection-card__desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 20px;
}

.collection-card__colors {
    display: flex;
    gap: 10px;
}

.color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--color-bg);
    box-shadow: 0 0 0 1px var(--color-border);
    cursor: default;
    transition: transform 0.3s var(--ease-out);
}

.color-dot:hover {
    transform: scale(1.2);
}

/* Deluxe card — full width hero style */
.collection-card--deluxe {
    grid-template-columns: 1.5fr 1fr;
}

/* ---- Services Section ---- */

.services {
    padding: var(--section-padding) 0;
    background: var(--color-bg-warm);
}

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

.service-card {
    padding: 44px 36px;
    border: 1px solid var(--color-border-subtle);
    transition: all 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-out);
}

.service-card:hover {
    border-color: var(--color-border);
    background: var(--color-bg-card);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--color-gold-dark);
    opacity: 0.5;
    margin-bottom: 20px;
    line-height: 1;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* ---- Process Section ---- */

.process {
    padding: var(--section-padding) 0;
}

.process__timeline {
    position: relative;
    padding-left: 48px;
}

.process__timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--color-gold-dark), var(--color-border-subtle));
}

.process__step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    position: relative;
    padding-bottom: 56px;
}

.process__step:last-child {
    padding-bottom: 0;
}

.process__step-marker {
    position: absolute;
    left: -48px;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    border: 1px solid var(--color-gold-dark);
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--color-gold);
    transition: all 0.4s var(--ease-out);
    flex-shrink: 0;
}

.process__step:hover .process__step-marker {
    background: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
}

.process__step-content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: 10px;
}

.process__step-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    font-weight: 300;
    max-width: 560px;
}

/* ---- Clients Section ---- */

.clients {
    padding: var(--section-padding) 0;
    background: var(--color-bg-warm);
}

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

.client-card {
    padding: 48px 32px;
    border: 1px solid var(--color-border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.5s var(--ease-out);
    min-height: 140px;
}

.client-card:hover {
    border-color: var(--color-border);
    background: var(--color-bg-card);
}

.client-card__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-cream-muted);
    line-height: 1.4;
}

/* ---- CTA Section ---- */

.cta {
    padding: var(--section-padding) 0;
    position: relative;
}

.cta__inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 48px;
    border: 1px solid var(--color-border);
    position: relative;
}

.cta__inner::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(196, 162, 101, 0.06), transparent 50%);
    pointer-events: none;
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--color-cream);
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ---- Footer ---- */

.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--color-border-subtle);
    background: var(--color-bg);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-border-subtle);
}

.footer__logo {
    height: 64px;
    width: auto;
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-weight: 300;
}

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

.footer__col h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-cream);
    margin-bottom: 20px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__col a {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    font-weight: 300;
    transition: color 0.3s;
}

.footer__col a:hover {
    color: var(--color-gold);
}

.footer__bottom {
    padding-top: 24px;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* ---- Scroll Animations ---- */

[data-animate] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children animations */
.values__grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.values__grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }
.values__grid [data-animate]:nth-child(4) { transition-delay: 0.3s; }

.services__grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.services__grid [data-animate]:nth-child(3) { transition-delay: 0.15s; }
.services__grid [data-animate]:nth-child(4) { transition-delay: 0.2s; }
.services__grid [data-animate]:nth-child(5) { transition-delay: 0.25s; }
.services__grid [data-animate]:nth-child(6) { transition-delay: 0.3s; }

.process__step[data-animate]:nth-child(2) { transition-delay: 0.15s; }
.process__step[data-animate]:nth-child(3) { transition-delay: 0.3s; }
.process__step[data-animate]:nth-child(4) { transition-delay: 0.45s; }

/* ---- Responsive ---- */

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

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

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

    .collection-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .collection-card--reverse {
        direction: ltr;
    }

    .collection-card--deluxe {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav__links,
    .nav__cta {
        display: none;
    }

    .nav__mobile-toggle {
        display: flex;
    }

    .hero__title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero__logo {
        width: 80px;
    }

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

    .intro__stats {
        flex-direction: row;
        gap: 24px;
    }

    .stat {
        padding: 0;
        border-bottom: none;
        border-right: 1px solid var(--color-border);
        padding-right: 24px;
        flex: 1;
    }

    .stat:last-child {
        border-right: none;
        padding-right: 0;
    }

    .stat__number {
        font-size: 2rem;
    }

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

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

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

    .collections__tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .collections__tab {
        padding: 12px 20px;
        white-space: nowrap;
    }

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

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

    .cta__inner {
        padding: 48px 24px;
    }

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

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

@media (max-width: 480px) {
    .intro__stats {
        flex-direction: column;
    }

    .stat {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 20px;
    }

    .stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

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

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