/* ==========================================================================
   Degriff'cars — styles
   ========================================================================== */

:root {
    --orange: #FF6B1A;
    --orange-dark: #E55A0A;
    --orange-light: #FF8A47;
    --orange-glow: rgba(255, 107, 26, 0.35);

    --black: #0A0A0A;
    --black-soft: #141414;
    --grey-900: #1A1A1A;
    --grey-800: #262626;
    --grey-700: #3A3A3A;
    --grey-500: #737373;
    --grey-300: #D4D4D4;
    --grey-100: #F5F5F5;
    --white: #FFFFFF;

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 24px;

    --container: 1200px;
    --space: clamp(1rem, 2vw, 1.5rem);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 20px 50px rgba(255, 107, 26, 0.25);

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 200;
    padding: 0.75rem 1.25rem;
    background: var(--orange);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: top 0.2s var(--ease);
}

.skip-link:focus {
    top: 1rem;
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 90;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(255, 107, 26, 0.35), 0 4px 10px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 26, 0.5), 0 4px 10px rgba(0, 0, 0, 0.25);
}

@media (max-width: 600px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }
}

img, svg {
    display: block;
    max-width: 100%;
}

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

button {
    font: inherit;
    cursor: pointer;
    background: none;
    border: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.accent {
    color: var(--orange);
}

.accent--shimmer {
    background: linear-gradient(
        100deg,
        var(--orange) 0%,
        #FFB584 30%,
        #FFFFFF 50%,
        #FFB584 70%,
        var(--orange) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--orange) 0%, #FFB584 100%);
    box-shadow: 0 0 12px var(--orange-glow);
    transition: width 0.08s linear;
    pointer-events: none;
}

.marquee {
    position: relative;
    overflow: hidden;
    padding: 1.25rem 0;
    background: var(--black);
    border-top: 1px solid rgba(255, 107, 26, 0.2);
    border-bottom: 1px solid rgba(255, 107, 26, 0.2);
    color: var(--white);
}

.marquee__track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    white-space: nowrap;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

.marquee:hover .marquee__track {
    animation-play-state: paused;
}

.marquee__item {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
}

.marquee__sep {
    color: var(--orange);
    font-size: 0.7rem;
    opacity: 0.7;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn--sm {
    padding: 0.625rem 1.125rem;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 1.05rem 2rem;
    font-size: 1rem;
}

.btn--block {
    width: 100%;
}

.btn--primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 20px var(--orange-glow);
}
.btn--primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px var(--orange-glow);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}
.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--grey-300);
}
.btn--outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s var(--ease), border-bottom-color 0.3s var(--ease);
}

.header.is-scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.page-legal .header,
.page-legal .header.is-scrolled {
    background: rgba(10, 10, 10, 0.98);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 80px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
}

.logo__img {
    height: 56px;
    width: auto;
    display: block;
    transition: transform 0.3s var(--ease);
}

.logo:hover .logo__img {
    transform: scale(1.03);
}

.logo__img--lg {
    height: 88px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav__link {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
    transition: color 0.2s var(--ease);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s var(--ease);
}

.nav__link:hover {
    color: var(--white);
}

.nav__link:hover::after {
    width: 100%;
}

.header__cta {
    flex-shrink: 0;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
    transform-origin: center;
}

.burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    position: relative;
    padding: 10rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
    background: var(--black);
}

.hero__inner {
    position: relative;
    z-index: 2;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s var(--ease);
    filter: brightness(0.55) saturate(1.05);
    z-index: 1;
}

.hero__video.is-ready {
    opacity: 1;
}

.hero__grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero__gradient {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        radial-gradient(ellipse 70% 80% at 20% 30%, rgba(255, 107, 26, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 70% 80% at 80% 70%, rgba(255, 107, 26, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.75) 100%);
}

.hero__orbs {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    will-change: transform;
}

.orb--1 {
    width: 520px;
    height: 520px;
    top: -100px;
    left: -120px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    animation: orbFloat1 18s ease-in-out infinite;
}

.orb--2 {
    width: 640px;
    height: 640px;
    bottom: -200px;
    right: -180px;
    background: radial-gradient(circle, #FF8A47 0%, transparent 70%);
    animation: orbFloat2 22s ease-in-out infinite;
}

.orb--3 {
    width: 380px;
    height: 380px;
    top: 40%;
    left: 55%;
    background: radial-gradient(circle, var(--orange-dark) 0%, transparent 70%);
    opacity: 0.35;
    animation: orbFloat3 16s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, 60px) scale(1.1); }
    66% { transform: translate(-40px, 100px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-100px, -80px) scale(1.15); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-60px, 40px) scale(1.08); }
}

.hero__spotlight {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background: radial-gradient(
        480px circle at var(--mx, 50%) var(--my, 50%),
        rgba(255, 107, 26, 0.18),
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.hero:hover .hero__spotlight {
    opacity: 1;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    color: rgba(255, 255, 255, 0.45);
}

.hero__scroll-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 500;
}

.hero__scroll-line {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, transparent, var(--orange));
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -56px;
    left: 0;
    width: 100%;
    height: 56px;
    background: var(--orange);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: translateY(0); }
    100% { transform: translateY(112px); }
}

.hero__content {
    max-width: 880px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 26, 0.12);
    border: 1px solid rgba(255, 107, 26, 0.35);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--orange-light);
    margin-bottom: 1.75rem;
}

.badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.25);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.25); }
    50% { box-shadow: 0 0 0 8px rgba(255, 107, 26, 0); }
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero__subtitle {
    font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    max-width: 640px;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 5vw, 4rem);
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stats--single {
    display: inline-flex;
    padding: 1.25rem 2rem;
    border-top: none;
    background: rgba(255, 107, 26, 0.08);
    border: 1px solid rgba(255, 107, 26, 0.25);
    border-radius: 100px;
}

.hero__stats--single .stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero__stats--single .stat__value {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--orange);
}

.hero__stats--single .stat__label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

.stat__value {
    display: block;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.375rem;
}

.stat__label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(3rem, 5vw, 4.5rem);
}

.eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange);
    margin-bottom: 1rem;
}

.section__title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--black);
}

.section__lead {
    color: var(--grey-500);
    font-size: 1.0625rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ==========================================================================
   Services
   ========================================================================== */

.services {
    position: relative;
    background:
        radial-gradient(circle at 1px 1px, rgba(10, 10, 10, 0.06) 1px, transparent 1.5px),
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255, 107, 26, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, #F1EDE6 0%, #E9E3D9 100%);
    background-size: 28px 28px, 100% 100%, 100% 100%;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    mix-blend-mode: overlay;
}

.services > .container {
    position: relative;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 26, 0.2);
}

.service-card--featured {
    background: linear-gradient(145deg, var(--black) 0%, var(--grey-900) 100%);
    color: var(--white);
    border-color: transparent;
}

.service-card--featured .service-card__desc {
    color: rgba(255, 255, 255, 0.7);
}

.service-card--featured .service-card__list li {
    color: rgba(255, 255, 255, 0.85);
}

.service-card--featured .service-card__list li::before {
    background: var(--orange);
}

.service-card__tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.25rem 0.625rem;
    background: var(--orange);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    letter-spacing: 0.02em;
}

.service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 26, 0.1);
    color: var(--orange);
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
}

.service-card--featured .service-card__icon {
    background: rgba(255, 107, 26, 0.2);
}

.service-card__icon svg {
    width: 24px;
    height: 24px;
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.service-card__desc {
    color: var(--grey-500);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-card__list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: var(--grey-700);
    margin-bottom: 0.5rem;
}

.service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 12px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

/* ==========================================================================
   About
   ========================================================================== */

.about {
    position: relative;
    background:
        radial-gradient(ellipse 50% 80% at 100% 50%, rgba(255, 107, 26, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 40% 60% at 0% 0%, rgba(255, 107, 26, 0.03) 0%, transparent 50%),
        var(--white);
}

.about__inner {
    display: grid;
    grid-template-columns: 6fr 5fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.about__media {
    position: relative;
}

.about__portrait {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
}

.about__badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-glow);
}

.about__badge-num {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.about__badge-label {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.about__content .section__title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about__lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.about__text {
    color: var(--grey-500);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about__points {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.about__point {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 0.9375rem;
    color: var(--black);
    font-weight: 500;
}

.about__point svg {
    width: 22px;
    height: 22px;
    padding: 4px;
    background: rgba(255, 107, 26, 0.15);
    color: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery {
    background: var(--grey-100);
}

.gallery__ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ba {
    --pos: 50%;
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--black);
    box-shadow: var(--shadow-lg);
    user-select: none;
    isolation: isolate;
}

.ba__pane {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ba__pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.ba__pane--before {
    z-index: 2;
    clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.ba__label {
    position: absolute;
    top: 1rem;
    z-index: 4;
    padding: 0.375rem 0.875rem;
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.ba__label--before {
    left: 1rem;
    border-color: rgba(255, 255, 255, 0.18);
}

.ba__label--after {
    right: 1rem;
    background: rgba(255, 107, 26, 0.9);
    border-color: rgba(255, 255, 255, 0.25);
}

.ba__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--pos);
    width: 2px;
    background: var(--white);
    z-index: 3;
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 20px rgba(255, 107, 26, 0.6);
}

.ba__handle-line {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, var(--white) 15%, var(--white) 85%, transparent);
}

.ba__handle-grip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--orange);
    border: 3px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 6px rgba(255, 107, 26, 0.15);
    transition: transform 0.2s var(--ease);
}

.ba__handle-grip svg {
    width: 14px;
    height: 14px;
}

.ba:hover .ba__handle-grip,
.ba:focus-within .ba__handle-grip {
    transform: translate(-50%, -50%) scale(1.08);
}

.ba__input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

.ba__input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 52px;
    height: 100%;
    cursor: ew-resize;
}

.ba__input::-moz-range-thumb {
    width: 52px;
    height: 100%;
    cursor: ew-resize;
    border: 0;
    background: transparent;
}

.ba__input:focus-visible {
    outline: none;
}

.ba__input:focus-visible ~ .ba__handle .ba__handle-grip {
    outline: 3px solid var(--white);
    outline-offset: 4px;
}

.ba__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    padding: 2rem 1.25rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    text-align: center;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85), transparent);
    pointer-events: none;
}

@media (max-width: 768px) {
    .gallery__ba-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .ba {
        aspect-ratio: 3 / 4;
    }
    .ba__handle-grip {
        width: 44px;
        height: 44px;
    }
}

/* ==========================================================================
   Cinematic band (between Gallery and Reviews)
   ========================================================================== */

.cinematic {
    position: relative;
    width: 100%;
    min-height: 440px;
    height: 56vh;
    max-height: 640px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    isolation: isolate;
}

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

.cinematic__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
    transform: scale(1.02);
}

.cinematic__video.is-ready {
    opacity: 1;
}

.cinematic__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.7) 100%),
        radial-gradient(ellipse 80% 60% at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
}

.cinematic__inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cinematic__quote {
    color: #fff;
    font-size: clamp(1.75rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.cinematic__quote .accent {
    color: var(--orange);
}

@media (max-width: 768px) {
    .cinematic {
        min-height: 340px;
        height: 48vh;
    }
}

/* ==========================================================================
   Reviews
   ========================================================================== */

.reviews {
    position: relative;
    background:
        radial-gradient(ellipse 60% 40% at 15% 0%, rgba(255, 107, 26, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 85% 100%, rgba(255, 107, 26, 0.06) 0%, transparent 55%),
        linear-gradient(180deg, #FDFAF5 0%, #F8F3EA 100%);
}

.reviews__slider {
    position: relative;
    margin: 0 auto;
}

.reviews__track {
    display: flex;
    gap: 1.5rem;
    overflow: hidden;
    padding: 0.75rem 0.5rem 1.5rem;
}

.reviews__track > .review {
    flex-shrink: 0;
    width: calc((100% - 3rem) / 3);
}

@media (max-width: 900px) {
    .reviews__track > .review {
        width: calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 600px) {
    .reviews__track > .review {
        width: 100%;
    }
}

.reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.reviews__nav:hover:not(:disabled) {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-50%) scale(1.08);
    border-color: var(--orange);
}

.reviews__nav:disabled {
    opacity: 0.3;
    cursor: default;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.reviews__nav--prev { left: -16px; }
.reviews__nav--next { right: -16px; }

.reviews__slider:not(.has-overflow) .reviews__nav {
    display: none;
}

@media (max-width: 768px) {
    .reviews__nav {
        display: none;
    }
    .reviews__slider:not(.has-overflow) .reviews__nav {
        display: none;
    }
}

.reviews__dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    min-height: 8px;
}

.reviews__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.15);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s var(--ease), width 0.25s var(--ease), border-radius 0.25s var(--ease);
}

.reviews__dot:hover {
    background: rgba(255, 107, 26, 0.5);
}

.reviews__dot.is-active {
    background: var(--orange);
    width: 28px;
    border-radius: 4px;
}

.review {
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.review:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 26, 0.2);
}

.review__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.review__stars {
    display: flex;
    gap: 2px;
    color: var(--orange);
}

.review__stars svg {
    width: 18px;
    height: 18px;
}

.review__quote-mark {
    width: 40px;
    height: 40px;
    color: var(--orange);
    opacity: 0.18;
    flex-shrink: 0;
}

.review__quote {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--grey-700);
    flex: 1;
    margin: 0;
}

.review__author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.review__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 107, 26, 0.25);
}

.review__info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
}

.review__name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--black);
}

.review__meta {
    font-size: 0.8125rem;
    color: var(--grey-500);
}

.reviews__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing {
    position: relative;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 107, 26, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 107, 26, 0.1) 0%, transparent 55%),
        linear-gradient(180deg, var(--grey-900) 0%, var(--black) 50%, var(--grey-900) 100%);
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
}

.pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    z-index: -1;
}

.pricing .section__title {
    color: var(--white);
}

.pricing .section__lead {
    color: rgba(255, 255, 255, 0.65);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    padding: 2.25rem 2rem;
    background: var(--white);
    color: var(--black);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.pricing-card--featured {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 107, 26, 0.2) 0%, transparent 55%),
        linear-gradient(160deg, var(--grey-900) 0%, var(--black) 100%);
    color: var(--white);
    border: 1.5px solid rgba(255, 107, 26, 0.5);
    transform: scale(1.04);
    box-shadow:
        0 0 0 1px rgba(255, 107, 26, 0.15),
        0 25px 70px rgba(255, 107, 26, 0.35),
        0 15px 40px rgba(0, 0, 0, 0.5);
}

.pricing-card--featured:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow:
        0 0 0 1px rgba(255, 107, 26, 0.25),
        0 35px 80px rgba(255, 107, 26, 0.45),
        0 15px 40px rgba(0, 0, 0, 0.5);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: var(--orange);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 100px;
    box-shadow: 0 8px 20px var(--orange-glow);
}

.pricing-card__head {
    text-align: center;
}

.pricing-card__head h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.pricing-card__head p {
    font-size: 0.9rem;
    color: var(--grey-500);
    margin-bottom: 1.5rem;
}

.pricing-card--featured .pricing-card__head p {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.375rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-card--featured .pricing-card__price {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card__amount {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--orange);
}

.pricing-card--featured .pricing-card__amount {
    color: var(--orange-light);
}

.pricing-card__unit {
    font-size: 0.9rem;
    color: var(--grey-500);
}

.pricing-card--featured .pricing-card__unit {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-card__features {
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-card__features li {
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.9375rem;
    color: var(--grey-700);
    margin-bottom: 0.75rem;
}

.pricing-card--featured .pricing-card__features li {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 18px;
    height: 18px;
    background: rgba(255, 107, 26, 0.15);
    border-radius: 50%;
}

.pricing-card__features li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 0.55rem;
    width: 8px;
    height: 4px;
    border-left: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(-45deg);
}

.pricing-card--featured .pricing-card__features li::before {
    background: rgba(255, 107, 26, 0.25);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 107, 26, 0.04) 0%, transparent 55%),
        var(--white);
}

.faq__list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.faq__item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.faq__item[open] {
    border-color: rgba(255, 107, 26, 0.35);
    box-shadow: var(--shadow);
}

.faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    list-style: none;
    transition: color 0.2s var(--ease);
}

.faq__q::-webkit-details-marker {
    display: none;
}

.faq__q:hover {
    color: var(--orange);
}

.faq__icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--orange);
    border-radius: 2px;
    transition: transform 0.3s var(--ease);
}

.faq__icon::before {
    width: 14px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq__icon::after {
    width: 2px;
    height: 14px;
    transform: translate(-50%, -50%);
}

.faq__item[open] .faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq__a {
    padding: 0 1.5rem 1.5rem;
    color: var(--grey-500);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
    background:
        radial-gradient(ellipse at top, rgba(255, 107, 26, 0.12) 0%, transparent 60%),
        var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    pointer-events: none;
}

.contact__inner {
    position: relative;
}

.contact__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.contact .section__title {
    color: var(--white);
}

.contact__lead {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.0625rem;
    margin-bottom: 3rem;
}

.contact__info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

a.contact__item:hover {
    background: rgba(255, 107, 26, 0.08);
    border-color: rgba(255, 107, 26, 0.3);
}

.contact__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 26, 0.15);
    color: var(--orange);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact__icon svg {
    width: 20px;
    height: 20px;
}

.contact__label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.contact__value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
}

.contact__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.contact__map {
    position: relative;
    margin: 3.5rem auto 0;
    width: 100%;
    max-width: 920px;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    background: var(--grey-900);
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact__map-open {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(10, 10, 10, 0.85);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
    z-index: 2;
}

.contact__map-open:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.contact__map-open svg {
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .contact__map {
        aspect-ratio: 4 / 3;
    }
}

/* ==========================================================================
   Legal page
   ========================================================================== */

.legal {
    padding: clamp(8rem, 14vw, 12rem) 0 clamp(4rem, 8vw, 7rem);
    background:
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(255, 107, 26, 0.06) 0%, transparent 55%),
        var(--white);
    min-height: 80vh;
}

.legal__inner {
    max-width: 820px;
}

.legal__back {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--grey-500);
    margin-bottom: 2rem;
    transition: color 0.2s var(--ease);
}

.legal__back:hover {
    color: var(--orange);
}

.legal__title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.legal__updated {
    font-size: 0.875rem;
    color: var(--grey-500);
    margin-bottom: 3rem;
}

.legal__section {
    margin-bottom: 2.5rem;
}

.legal__section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
    color: var(--black);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.legal__section p {
    color: var(--grey-700);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

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

.legal__section a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.legal__section a:hover {
    color: var(--orange-dark);
}

.legal__section em {
    color: var(--orange);
    background: rgba(255, 107, 26, 0.08);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-style: normal;
    font-weight: 500;
    font-size: 0.875rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: var(--black-soft);
    color: rgba(255, 255, 255, 0.65);
    padding: 2.5rem 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1.4fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
}

.footer__brand p {
    margin-top: 0.75rem;
    max-width: 320px;
    font-size: 0.9rem;
    line-height: 1.55;
}

.footer__links h4 {
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.875rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links--grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1.25rem;
    align-content: start;
}

.footer__links--grid h4 {
    grid-column: 1 / -1;
}

.footer__links a,
.footer__links span {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s var(--ease);
}

.footer__links a:hover {
    color: var(--orange);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
}

.footer__bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer__bottom a {
    color: inherit;
    transition: color 0.2s var(--ease);
}

.footer__bottom a:hover {
    color: var(--orange);
}

/* ==========================================================================
   Reveal animation
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(32px) scale(0.98);
    filter: blur(6px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

[data-tilt] {
    transform-style: preserve-3d;
    transition: transform 0.5s var(--ease-out), box-shadow 0.3s var(--ease);
    will-change: transform;
}

[data-tilt].is-tilting {
    transition: transform 0.1s linear, box-shadow 0.3s var(--ease);
}

[data-magnetic] {
    transition: transform 0.25s var(--ease-out), background 0.2s var(--ease), box-shadow 0.3s var(--ease);
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
    html {
        scroll-behavior: auto;
    }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }
    .footer__brand {
        grid-column: 1 / -1;
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about__media {
        max-width: 420px;
        margin: 0 auto;
    }

    .about__badge {
        bottom: -20px;
        right: 12px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transform: translateY(-120%);
        transition: transform 0.3s var(--ease);
        padding: 1rem 0;
    }

    .nav.is-open {
        transform: translateY(0);
    }

    .nav__link {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .nav__link::after {
        display: none;
    }

    .header__cta {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero {
        padding: 8rem 0 4rem;
        min-height: auto;
    }

    .hero__scroll-hint {
        display: none;
    }

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

    .hero__actions .btn {
        justify-content: center;
    }

    .pricing-card--featured {
        transform: none;
    }
    .pricing-card--featured:hover {
        transform: translateY(-6px);
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .service-card,
    .pricing-card {
        padding: 1.75rem 1.5rem;
    }
}
