/* ============================================
   PRESIDENT INK — Premium Dark Luxury Design System
   Private Tattoo Studio · Viljandi, Estonia
   ============================================ */

/* Google Fonts loaded via <link> in HTML head for better performance */

/* ═══════════════════════════════════════
   INTRO — Sakura Petal Scatter Animation
   ═══════════════════════════════════════ */
.intro {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.8s ease;
}

.intro.done {
    opacity: 0;
    pointer-events: none;
}

/* Single-line text */
.intro__text {
    position: relative;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    color: #F5F0E8;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    white-space: nowrap;
}

.intro__text.visible {
    opacity: 1;
    transform: scale(1);
}

.intro__text.fade-out {
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Petals container */
.intro__petals {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

/* Individual petal */
.intro__petal {
    position: absolute;
    border-radius: 50% 0 50% 0;
    opacity: 0;
    will-change: transform, opacity;
    filter: blur(0.5px);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

/* ─── Design Tokens ─── */
:root {
    /* Colors */
    --clr-bg-primary: #0A0A0A;
    --clr-bg-secondary: #111111;
    --clr-bg-card: #161616;
    --clr-bg-elevated: #1A1A1A;
    --clr-surface: #1E1E1E;

    --clr-gold: #C9A96E;
    --clr-gold-light: #D4B980;
    --clr-gold-dark: #A88B52;
    --clr-gold-muted: rgba(201, 169, 110, 0.15);

    --clr-text-primary: #F5F0E8;
    --clr-text-secondary: #A89F91;
    --clr-text-muted: #6B6358;
    --clr-text-accent: var(--clr-gold);

    --clr-border: rgba(201, 169, 110, 0.12);
    --clr-border-hover: rgba(201, 169, 110, 0.3);
    --clr-divider: rgba(255, 255, 255, 0.06);

    --clr-negative: #E74C3C;
    --clr-positive: #2ECC71;

    /* Typography */
    --ff-display: 'Playfair Display', Georgia, serif;
    --ff-body: 'Inter', -apple-system, sans-serif;
    --ff-accent: 'Cormorant Garamond', serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 200ms;
    --duration-normal: 400ms;
    --duration-slow: 600ms;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 32px rgba(201, 169, 110, 0.15);
    --shadow-glow: 0 0 40px rgba(201, 169, 110, 0.08);

    /* Layout */
    --container-max: 1280px;
    --nav-height: 80px;
}

/* ─── 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;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: var(--ff-body);
    background-color: var(--clr-bg-primary);
    color: var(--clr-text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    /* Safe area for notched devices (iPhone X+) */
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    -webkit-tap-highlight-color: transparent;
    text-rendering: optimizeSpeed;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) var(--ease-out);
}

ul, ol {
    list-style: none;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--clr-bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--clr-gold-dark);
    border-radius: var(--radius-full);
}

/* ─── Selection ─── */
::selection {
    background: var(--clr-gold);
    color: var(--clr-bg-primary);
}

/* ─── Container ─── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ─── Performance: skip rendering off-screen sections ─── */
.about,
.fears,
.services,
.process,
.contact,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

/* ─── Scroll offset for fixed navbar ─── */
.about,
.portfolio-showcase,
.services,
.process,
.testimonials,
.contact {
    scroll-margin-top: calc(var(--nav-height) + 20px);
}

/* ─── Typography ─── */
.heading-display {
    font-family: var(--ff-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.heading-section {
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--clr-text-primary);
}

.text-accent {
    font-family: var(--ff-accent);
    font-style: italic;
    color: var(--clr-gold);
}

.section-label {
    font-family: var(--ff-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--clr-gold);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--ff-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
    color: var(--clr-bg-primary);
    border-radius: var(--radius-sm);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--clr-gold);
    border: 1px solid var(--clr-gold);
    border-radius: var(--radius-sm);
}
.btn-outline:hover {
    background: var(--clr-gold);
    color: var(--clr-bg-primary);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--clr-text-primary);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--clr-border);
}
.btn-ghost:hover {
    color: var(--clr-gold);
    border-color: var(--clr-gold);
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--duration-normal) var(--ease-out);
    backdrop-filter: blur(0px);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--clr-border);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(201, 169, 110, 0.3));
    transition: filter var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.nav__logo:hover .nav__logo-img {
    filter: drop-shadow(0 0 16px rgba(201, 169, 110, 0.5));
    transform: scale(1.05);
}

.nav__logo-text {
    font-family: var(--ff-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-text-primary);
    letter-spacing: 0.05em;
}

.nav__logo-text span {
    color: var(--clr-gold);
}

.nav__links {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.nav__link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-text-secondary);
    position: relative;
    padding: 0.25rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--clr-gold);
    transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover {
    color: var(--clr-gold);
}
.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    padding: 0.625rem 1.5rem;
    font-size: 0.75rem;
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.nav__burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--clr-text-primary);
    transition: all var(--duration-fast) var(--ease-out);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    display: flex;
}
.mobile-menu a {
    font-family: var(--ff-display);
    font-size: 2rem;
    color: var(--clr-text-primary);
    transition: color var(--duration-fast) var(--ease-out);
}
.mobile-menu a:hover {
    color: var(--clr-gold);
}
.mobile-menu__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    color: var(--clr-text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ─── Nav Right Mobile Container ─── */
.nav__right-mobile {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

/* ═══════════════════════════════════════
   LANGUAGE SWITCHER
   ═══════════════════════════════════════ */
.lang-switcher {
    position: relative;
}

.lang-switcher__current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
    font-family: var(--ff-body);
    color: var(--clr-text-secondary);
}

.lang-switcher__current:hover {
    border-color: var(--clr-border-hover);
    background: rgba(201, 169, 110, 0.12);
    color: var(--clr-gold);
}

.lang-switcher__flag {
    font-size: 1rem;
    line-height: 1;
}

.lang-switcher__code {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lang-switcher__arrow {
    transition: transform var(--duration-fast) var(--ease-out);
    color: var(--clr-text-muted);
    flex-shrink: 0;
}

.lang-switcher.open .lang-switcher__arrow {
    transform: rotate(180deg);
}

.lang-switcher.open .lang-switcher__current {
    border-color: var(--clr-gold);
    background: rgba(201, 169, 110, 0.12);
}

/* Dropdown */
.lang-switcher__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.375rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--duration-fast) var(--ease-out);
    z-index: 100;
    backdrop-filter: blur(20px);
}

.lang-switcher.open .lang-switcher__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: none;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--clr-text-secondary);
    font-family: var(--ff-body);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
}

.lang-option:hover {
    background: rgba(201, 169, 110, 0.08);
    color: var(--clr-text-primary);
}

.lang-option.active {
    color: var(--clr-gold);
}

.lang-option__flag {
    font-size: 1.125rem;
    line-height: 1;
}

.lang-option__name {
    flex: 1;
    text-align: left;
}

.lang-option__check {
    font-size: 0.75rem;
    color: var(--clr-gold);
    opacity: 0;
    transition: opacity var(--duration-fast) var(--ease-out);
}

.lang-option.active .lang-option__check {
    opacity: 1;
}

/* Mobile-only lang switcher hidden on desktop */
.lang-switcher--mobile {
    display: none;
}

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

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

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) saturate(0.8);
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.4) 40%,
        rgba(10, 10, 10, 0.85) 80%,
        var(--clr-bg-primary) 100%
    );
}

.hero__logo-bg {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 0;
    width: 550px;
    height: 550px;
    opacity: 0.08;
    pointer-events: none;
    animation: heroLogoFloat 8s ease-in-out infinite;
}

.hero__logo-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 60px rgba(201, 169, 110, 0.3));
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-52%) scale(1.03); }
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding-top: calc(var(--nav-height) + var(--space-3xl));
    padding-bottom: var(--space-3xl);
}

.hero__label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: var(--clr-gold-muted);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero__label-dot {
    width: 6px;
    height: 6px;
    background: var(--clr-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero__title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero__title .gold {
    color: var(--clr-gold);
    display: block;
}

.hero__subtitle {
    font-family: var(--ff-accent);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--clr-text-secondary);
    max-width: 560px;
    margin-bottom: var(--space-xl);
    font-style: italic;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s var(--ease-out) 1s both;
}

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

/* ═══════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════ */
.about {
    padding: var(--space-3xl) 0;
    position: relative;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.about__image-wrapper:hover img {
    transform: scale(1.03);
}

.about__image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.about__content {
    padding: var(--space-lg) 0;
}

.about__text {
    font-size: 1.0625rem;
    color: var(--clr-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--clr-divider);
}

.stat {
    text-align: center;
}

.stat__number {
    font-family: var(--ff-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat__label {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════
   FEARS / PAIN POINTS
   ═══════════════════════════════════════ */
.fears {
    padding: var(--space-3xl) 0;
    background: var(--clr-bg-secondary);
    position: relative;
}

.fears::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-gold-muted), transparent);
}

.fears__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-xl);
}

.fears__header .section-label {
    justify-content: center;
}
.fears__header .section-label::before {
    display: none;
}

.fears__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.fear-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.fear-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.fear-card:hover {
    border-color: var(--clr-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.fear-card:hover::before {
    opacity: 1;
}

.fear-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-gold-muted);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}
.fear-card__title {
    font-family: var(--ff-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--clr-text-primary);
}

.fear-card__text {
    font-size: 0.9375rem;
    color: var(--clr-text-secondary);
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   PORTFOLIO SHOWCASE
   ═══════════════════════════════════════ */
.portfolio-showcase {
    position: relative;
    overflow: hidden;
}

.portfolio-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-gold-muted), transparent);
    z-index: 2;
}

.portfolio-showcase__mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    height: 70vh;
    min-height: 460px;
    max-height: 700px;
    padding: 0;
}

.portfolio-showcase__mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: brightness(0.45) saturate(0.75);
    transition: filter 1.5s ease;
}

.portfolio-showcase:hover .portfolio-showcase__mosaic img {
    filter: brightness(0.55) saturate(0.85);
}

/* Tiger-skull: focus on the face area */
.portfolio-showcase__mosaic img:nth-child(1) {
    object-position: center 30%;
}

/* Butterfly-skeleton: focus on the butterfly tattoo, crop out purple clothing */
.portfolio-showcase__mosaic img:nth-child(2) {
    object-position: center 70%;
}

/* Floral-hip: focus on the flower detail */
.portfolio-showcase__mosaic img:nth-child(3) {
    object-position: center 25%;
}

.portfolio-showcase__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.15) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.15) 100%
    );
}

.portfolio-showcase__content {
    text-align: center;
    max-width: 640px;
    padding: var(--space-xl) var(--space-md);
}

.portfolio-showcase__content .section-label {
    justify-content: center;
}
.portfolio-showcase__content .section-label::before {
    display: none;
}

.portfolio-showcase__subtitle {
    color: var(--clr-text-secondary);
    font-family: var(--ff-accent);
    font-size: 1.125rem;
    font-style: italic;
    margin: var(--space-xs) 0 var(--space-lg);
    opacity: 0.85;
}

.portfolio-showcase__btn {
    font-size: 1rem;
    padding: 1rem 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.portfolio-showcase__btn svg {
    transition: transform 0.3s var(--ease-out);
}

.portfolio-showcase__btn:hover svg {
    transform: translate(3px, -3px);
}

/* ═══════════════════════════════════════
   3D GALLERY OVERLAY
   ═══════════════════════════════════════ */
.gallery-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #080808;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-overlay.active {
    display: block;
}

.gallery-overlay.visible {
    opacity: 1;
}

.gallery-overlay__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.06);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    color: var(--clr-gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-overlay__close:hover {
    background: rgba(201, 169, 110, 0.18);
    border-color: rgba(201, 169, 110, 0.5);
    transform: scale(1.08);
}

.gallery-overlay__hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(201, 169, 110, 0.45);
    font-family: var(--ff-accent);
    font-size: 0.9375rem;
    font-style: italic;
    letter-spacing: 0.05em;
    pointer-events: none;
    white-space: nowrap;
    transition: opacity 1s ease;
}

.gallery-overlay__hint.fade-out {
    opacity: 0;
}

#gallery-canvas-3d {
    display: block;
    width: 100%;
    height: 100%;
    cursor: grab;
}

#gallery-canvas-3d:active {
    cursor: grabbing;
}

/* ═══════════════════════════════════════
   REVIEWS CAROUSEL
   ═══════════════════════════════════════ */
.testimonials {
    padding: var(--space-3xl) 0;
    position: relative;
}

.testimonials__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.testimonials__header .section-label {
    justify-content: center;
}

/* Carousel wrapper */
.carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.carousel__track-wrapper {
    overflow: hidden;
    flex: 1 1 0%;
    min-width: 70%;
    border-radius: var(--radius-lg);
}

.carousel__track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.carousel__slide {
    min-width: 100%;
    padding: 0 var(--space-xs);
    box-sizing: border-box;
}

/* Testimonial card */
.testimonial-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
    text-align: center;
    transition: border-color 0.4s ease;
}

.testimonial-card:hover {
    border-color: var(--clr-border-hover);
}

.testimonial-card__stars {
    font-size: 1.25rem;
    color: var(--clr-gold);
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
}

.testimonial-card__text {
    font-family: var(--ff-accent);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--clr-text-secondary);
    margin-bottom: var(--space-lg);
    min-height: 100px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--clr-bg-primary);
}

.testimonial-card__name {
    font-family: var(--ff-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--clr-text-primary);
}

/* Carousel arrows */
.carousel__arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.06);
    border: 1px solid rgba(201, 169, 110, 0.2);
    color: var(--clr-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel__arrow:hover {
    background: rgba(201, 169, 110, 0.18);
    border-color: rgba(201, 169, 110, 0.5);
    transform: scale(1.1);
}

/* Carousel dots */
.carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: var(--space-md);
    width: 100%;
    padding: 0.5rem 0;
}

.carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(201, 169, 110, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    /* Override WCAG min-size for dots — they have enough spacing for touch */
    min-height: unset !important;
    min-width: unset !important;
}

.carousel__dot.active {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    transform: scale(1.3);
}

.carousel__dot:hover:not(.active) {
    background: rgba(201, 169, 110, 0.35);
}

/* ═══════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════ */
.services {
    padding: var(--space-3xl) 0;
    background: var(--clr-bg-secondary);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.service-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
}

.service-card:hover {
    border-color: var(--clr-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.service-card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.service-card__title {
    font-family: var(--ff-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-card__text {
    font-size: 0.9375rem;
    color: var(--clr-text-secondary);
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════ */
.process {
    padding: var(--space-3xl) 0;
}

.process__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.process__header .section-label {
    justify-content: center;
}
.process__header .section-label::before {
    display: none;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    position: relative;
}

.process__steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-gold-muted), var(--clr-gold-muted), transparent);
}

.step {
    text-align: center;
    position: relative;
}

.step__number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    background: var(--clr-bg-card);
    border: 2px solid var(--clr-gold-muted);
    border-radius: 50%;
    font-family: var(--ff-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-gold);
    position: relative;
    z-index: 1;
    transition: all var(--duration-normal) var(--ease-out);
}

.step:hover .step__number {
    background: var(--clr-gold);
    color: var(--clr-bg-primary);
    border-color: var(--clr-gold);
    box-shadow: var(--shadow-gold);
}

.step__title {
    font-family: var(--ff-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step__text {
    font-size: 0.875rem;
    color: var(--clr-text-secondary);
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--clr-bg-secondary);
}

.testimonials__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.testimonials__header .section-label {
    justify-content: center;
}
.testimonials__header .section-label::before {
    display: none;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
}

.testimonial-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: relative;
}

.testimonial-card__stars {
    color: var(--clr-gold);
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
    letter-spacing: 0.15em;
}

.testimonial-card__text {
    font-family: var(--ff-accent);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--clr-text-secondary);
    margin-bottom: var(--space-md);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-weight: 700;
    color: var(--clr-gold);
    font-size: 0.875rem;
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 0.9375rem;
}

.testimonial-card__detail {
    font-size: 0.8125rem;
    color: var(--clr-text-muted);
}

/* ═══════════════════════════════════════
   CONTACT / BOOKING
   ═══════════════════════════════════════ */
.contact {
    padding: var(--space-3xl) 0;
    position: relative;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.contact__info {
    padding: var(--space-lg) 0;
}

.contact__detail {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-gold-muted);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
}

.contact__detail-label {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.contact__detail-value {
    font-size: 1.0625rem;
    color: var(--clr-text-primary);
    font-weight: 500;
}

.contact__detail-value a {
    color: var(--clr-gold);
}

.contact__form {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.form__group {
    margin-bottom: var(--space-md);
}

.form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--clr-text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form__input,
.form__textarea,
.form__select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--clr-bg-secondary);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    color: var(--clr-text-primary);
    font-family: var(--ff-body);
    font-size: 0.9375rem;
    transition: border-color var(--duration-fast) var(--ease-out);
    outline: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    border-color: var(--clr-gold);
    box-shadow: 0 0 0 3px var(--clr-gold-muted);
}

.form__textarea {
    min-height: 120px;
    resize: vertical;
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form__submit {
    width: 100%;
    margin-top: var(--space-sm);
}

/* ═══════════════════════════════════════
   SOCIAL PROOF BAR
   ═══════════════════════════════════════ */
.social-bar {
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--clr-divider);
    border-bottom: 1px solid var(--clr-divider);
}

.social-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--clr-text-muted);
    font-size: 0.875rem;
    transition: color var(--duration-fast) var(--ease-out);
}

.social-link:hover {
    color: var(--clr-gold);
}

.social-link__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    font-size: 1.125rem;
    transition: all var(--duration-fast) var(--ease-out);
}

.social-link:hover .social-link__icon {
    border-color: var(--clr-gold);
    background: var(--clr-gold-muted);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    padding: var(--space-xl) 0 var(--space-lg);
    background: var(--clr-bg-secondary);
    border-top: 1px solid var(--clr-divider);
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer__brand p {
    color: var(--clr-text-muted);
    font-size: 0.9375rem;
    margin-top: var(--space-sm);
    max-width: 320px;
    line-height: 1.7;
}

.footer__heading {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clr-gold);
    margin-bottom: var(--space-sm);
}

.footer__link {
    display: block;
    color: var(--clr-text-muted);
    font-size: 0.9375rem;
    padding: 0.25rem 0;
    transition: color var(--duration-fast) var(--ease-out);
}
.footer__link:hover {
    color: var(--clr-gold);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--clr-divider);
    font-size: 0.8125rem;
    color: var(--clr-text-muted);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

/* ─── Desktop-only hover effects (prevents sticky hover on touch) ─── */
@media (hover: hover) and (pointer: fine) {
    .contact-btn:hover {
        transform: perspective(800px) rotateX(-2deg) rotateY(3deg) translateY(-4px);
    }
}

/* ─── Tablet ─── */
@media (max-width: 1024px) {
    .about__grid { grid-template-columns: 1fr; }
    .about__image-wrapper { max-height: 500px; }
    .footer__top { grid-template-columns: 1fr 1fr; }
    .process__steps { grid-template-columns: repeat(2, 1fr); }
    .process__steps::before { display: none; }
    .contact__hub { grid-template-columns: 1fr; max-width: 600px; }
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
    :root {
        --space-3xl: 5rem;
    }

    .nav__links { display: none; }
    .nav__burger { display: flex; }
    .nav__right-mobile { display: flex; }
    .lang-switcher--mobile { display: block; }

    .hero__title { font-size: clamp(2.5rem, 10vw, 4rem); }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; min-height: 48px; }
    .hero__logo-bg { width: 300px; height: 300px; right: -5%; opacity: 0.06; }

    .portfolio-showcase__mosaic { height: 60vh; min-height: 400px; }

    .about__stats { grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
    .stat__number { font-size: 2rem; }

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

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

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

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

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

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

    /* Touch-friendly targets (min 44px per WCAG) */
    .btn,
    .nav__link,
    .footer__link,
    .social-link,
    .contact-btn,
    .carousel__arrow {
        min-height: 44px;
        min-width: 44px;
    }

    /* Carousel mobile layout — force visible since IntersectionObserver
       can have issues with nested overflow containers on mobile */
    .carousel.fade-in,
    .testimonials__header.fade-in {
        opacity: 1 !important;
        transform: none !important;
    }

    .carousel {
        display: block;
        position: relative;
        max-width: 100%;
    }

    .carousel__arrow {
        width: 36px;
        height: 36px;
        min-height: 36px;
        min-width: 36px;
        position: absolute;
        top: 45%;
        transform: translateY(-50%);
        z-index: 5;
        background: rgba(10, 10, 10, 0.75);
        backdrop-filter: blur(8px);
    }

    .carousel__arrow--left {
        left: 0.5rem;
    }

    .carousel__arrow--right {
        right: 0.5rem;
    }

    .carousel__track-wrapper {
        width: 100%;
        display: block;
    }

    .carousel__dots {
        margin-top: var(--space-sm);
    }

    .testimonial-card {
        padding: var(--space-md);
    }

    .testimonial-card__text {
        font-size: 0.9375rem;
        min-height: auto;
        line-height: 1.7;
    }

    .testimonial-card__avatar {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .footer__link {
        padding: 0.375rem 0;
        display: inline-block;
    }

    /* Social bar stacking */
    .social-bar__inner {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .social-link {
        justify-content: center;
    }
}

/* ─── Small Mobile ─── */
@media (max-width: 480px) {
    .portfolio-showcase__mosaic { height: 50vh; min-height: 350px; grid-template-columns: repeat(2, 1fr); }
    .portfolio-showcase__subtitle { font-size: 0.9375rem; }

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

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

    /* Prevent horizontal overflow */
    .container {
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
    }
}

/* ─── Utility - No script fallback ─── */
.no-js .fade-in {
    opacity: 1;
    transform: none;
}

/* ═══════════════════════════════════════
   CONTACT HUB — 3D Buttons & Map
   ═══════════════════════════════════════ */
.contact__hub {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

/* ─── 3D Action Buttons ─── */
.contact__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 110, 0.12);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--clr-text-primary);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: perspective(800px) rotateX(0deg) rotateY(0deg);
    transform-style: preserve-3d;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 50%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.contact-btn:hover {
    transform: perspective(800px) rotateX(-2deg) rotateY(3deg) translateY(-4px);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.4),
        0 16px 48px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 169, 110, 0.3);
}

.contact-btn:active {
    transform: perspective(800px) rotateX(0deg) rotateY(0deg) translateY(-1px);
    transition-duration: 0.1s;
}

/* Icon */
.contact-btn__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform: translateZ(20px);
}

.contact-btn:hover .contact-btn__icon {
    transform: translateZ(30px) scale(1.05);
}

/* Instagram gradient */
.contact-btn--instagram .contact-btn__icon {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.3);
}
.contact-btn--instagram:hover {
    border-color: rgba(225, 48, 108, 0.3);
}
.contact-btn--instagram:hover .contact-btn__icon {
    box-shadow: 0 6px 30px rgba(225, 48, 108, 0.4);
}

/* Facebook blue */
.contact-btn--facebook .contact-btn__icon {
    background: linear-gradient(135deg, #0084FF, #0066CC);
    box-shadow: 0 4px 20px rgba(0, 132, 255, 0.3);
}
.contact-btn--facebook:hover {
    border-color: rgba(0, 132, 255, 0.3);
}
.contact-btn--facebook:hover .contact-btn__icon {
    box-shadow: 0 6px 30px rgba(0, 132, 255, 0.4);
}

/* Phone gold */
.contact-btn--phone .contact-btn__icon {
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
    color: var(--clr-bg-primary);
}
.contact-btn--phone:hover {
    border-color: rgba(201, 169, 110, 0.35);
}
.contact-btn--phone:hover .contact-btn__icon {
    box-shadow: 0 6px 30px rgba(201, 169, 110, 0.4);
}

/* Content */
.contact-btn__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    transform: translateZ(10px);
}

.contact-btn__label {
    font-family: var(--ff-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--clr-text-primary);
}

.contact-btn__sub {
    font-family: var(--ff-body);
    font-size: 0.8125rem;
    color: var(--clr-text-muted);
    margin-top: 0.125rem;
}

.contact-btn__arrow {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
    transform: translateZ(15px);
}

.contact-btn:hover .contact-btn__arrow {
    transform: translateZ(15px) translateX(4px);
    color: var(--clr-gold);
}

/* ─── Google Maps Card ─── */
.contact__map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.12);
    background: rgba(255, 255, 255, 0.02);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact__map-embed {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.contact__map-embed iframe {
    border-radius: 0 !important;
    filter: brightness(0.85) contrast(1.1) saturate(0.6);
    transition: filter 0.4s ease;
}

.contact__map-card:hover .contact__map-embed iframe {
    filter: brightness(0.95) contrast(1.05) saturate(0.8);
}

.contact__map-info {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.contact__map-address {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact__map-pin {
    font-size: 1.5rem;
}

.contact__map-address strong {
    display: block;
    font-family: var(--ff-heading);
    font-size: 0.9375rem;
    color: var(--clr-text-primary);
}

.contact__map-address span {
    font-size: 0.8125rem;
    color: var(--clr-text-muted);
}

.contact__map-route {
    font-family: var(--ff-body);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--clr-gold);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.contact__map-route:hover {
    background: rgba(201, 169, 110, 0.1);
    border-color: rgba(201, 169, 110, 0.5);
}

/* ─── Quick Info Pills ─── */
.contact__quick-info {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.contact__info-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 100px;
    font-family: var(--ff-body);
    font-size: 0.875rem;
    color: var(--clr-text-secondary);
}

/* ─── Responsive Contact Hub ─── */
@media (max-width: 768px) {
    .contact__hub {
        grid-template-columns: 1fr;
    }

    .contact-btn {
        padding: 1rem 1.25rem;
    }

    .contact-btn__icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .contact-btn__icon svg {
        width: 22px;
        height: 22px;
    }

    .contact__map-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact__quick-info {
        flex-direction: column;
    }
}
