/* ═══════════════════════════════════════════
   E.L.I.T.E FRIZERSKI & KOZMETIČNI STUDIO
   Premium Editorial Aesthetic
   ═══════════════════════════════════════════ */

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

:root {
    --bg: #FAFAFA;
    --bg-deep: #F3F0EE;
    --bg-dark: #0F0F0F;
    --primary: #18181B;
    --secondary: #3F3F46;
    --accent: #EC4899;
    --accent-soft: #EC489918;
    --accent-glow: #EC489940;
    --warm: #D4A574;
    --warm-light: #D4A57415;
    --text: #09090B;
    --text-secondary: #71717A;
    --text-light: #A1A1AA;
    --white: #FFFFFF;
    --border: rgba(24, 24, 27, 0.08);
    --font-display: 'Syne', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --font-ui: 'Inter', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* ─── GRAIN TEXTURE OVERLAY ─── */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 10000;
    opacity: 0.5;
}

/* ─── CURSOR GLOW ─── */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    mix-blend-mode: normal;
}

.cursor-glow.active {
    opacity: 1;
}

/* ─── SELECTION ─── */
::selection {
    background: var(--accent);
    color: var(--white);
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ─── UTILITY ─── */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.container--wide { max-width: 1600px; }
.container--narrow { max-width: 900px; }

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* ═══════════════════════════════════════════
   LOADER
   ═══════════════════════════════════════════ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

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

.loader__text {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    display: flex;
    gap: 0.1em;
}

.loader__letter {
    opacity: 0;
    transform: translateY(20px);
    animation: loaderLetter 0.6s var(--ease-out-expo) forwards;
}

@keyframes loaderLetter {
    to { opacity: 1; transform: translateY(0); }
}

.loader__bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 1px;
    overflow: hidden;
    position: relative;
}

.loader__progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--accent);
    border-radius: 1px;
    animation: loaderProgress 1.6s var(--ease-out-expo) 0.5s forwards;
}

@keyframes loaderProgress {
    to { width: 100%; }
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1.25rem 0;
    transition: all 0.5s var(--ease-out-expo);
}

.nav.scrolled {
    background: rgba(250, 250, 250, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    padding: 0.65rem 0;
}

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

.nav__logo {
    font-family: var(--font-display);
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    position: relative;
}

.nav__logo span {
    color: var(--accent);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: clamp(1.2rem, 2.5vw, 2.5rem);
    list-style: none;
}

.nav__link {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
}

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

.nav__link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav__cta {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--accent);
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border-radius: 0;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.nav__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.nav__cta:hover::before {
    left: 100%;
}

.nav__cta:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg);
    padding-top: 6rem;
}

.hero__bg-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
    opacity: 0.5;
}

.hero__line:nth-child(1) { left: 15%; animation: heroLineFloat 8s ease-in-out infinite; }
.hero__line:nth-child(2) { left: 35%; animation: heroLineFloat 10s ease-in-out infinite 1s; opacity: 0.3; }
.hero__line:nth-child(3) { left: 60%; animation: heroLineFloat 12s ease-in-out infinite 2s; }
.hero__line:nth-child(4) { left: 85%; animation: heroLineFloat 9s ease-in-out infinite 0.5s; opacity: 0.3; }

@keyframes heroLineFloat {
    0%, 100% { transform: translateY(-10px) scaleY(1); }
    50% { transform: translateY(10px) scaleY(1.02); }
}

.hero__accent-circle {
    position: absolute;
    width: clamp(300px, 45vw, 650px);
    height: clamp(300px, 45vw, 650px);
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
    right: -5%;
    top: 10%;
    pointer-events: none;
    animation: accentFloat 15s ease-in-out infinite;
}

@keyframes accentFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, 30px) scale(1.05); }
    66% { transform: translate(15px, -20px) scale(0.97); }
}

.hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 6rem);
    align-items: center;
    min-height: 80vh;
}

.hero__text {
    padding: clamp(1rem, 3vw, 3rem) 0;
}

.hero__eyebrow {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: heroFadeUp 0.8s var(--ease-out-expo) 0.3s forwards;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero__title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeUp 1s var(--ease-out-expo) forwards;
}

.hero__title-line:nth-child(1) { animation-delay: 0.4s; }
.hero__title-line:nth-child(2) { animation-delay: 0.55s; }
.hero__title-line:nth-child(3) { animation-delay: 0.7s; }

.hero__title-line .accent {
    color: var(--accent);
    font-style: italic;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out-expo) 0.85s forwards;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out-expo) 1s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--accent);
    text-decoration: none;
    padding: 1rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.25);
}

.btn-secondary {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--secondary);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.hero__visual {
    position: relative;
    height: clamp(400px, 60vh, 600px);
    opacity: 0;
    animation: heroFadeUp 1.2s var(--ease-out-expo) 0.6s forwards;
}

.hero__image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.15) contrast(1.05);
    transition: transform 0.8s var(--ease-out-expo);
}

.hero__image-frame:hover img {
    transform: scale(1.03);
}

.hero__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(15, 15, 15, 0.15));
    pointer-events: none;
}

.hero__float-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--white);
    padding: 1.2rem 1.6rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 3;
}

.hero__float-badge-icon {
    width: 36px;
    height: 36px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.hero__float-badge-text {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    line-height: 1.3;
}

.hero__float-badge-text span {
    display: block;
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 0.6rem;
    letter-spacing: 0.04em;
    text-transform: none;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out-expo) 1.3s forwards;
}

.hero__scroll-text {
    font-family: var(--font-ui);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    writing-mode: vertical-rl;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: var(--accent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   MARQUEE STRIP
   ═══════════════════════════════════════════ */
.marquee {
    background: var(--primary);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
}

.marquee__content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 1.5rem;
    white-space: nowrap;
}

.marquee__item {
    font-family: var(--font-display);
    font-size: clamp(0.7rem, 1vw, 0.85rem);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.marquee__dot {
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

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

/* ═══════════════════════════════════════════
   SECTION SHARED STYLES
   ═══════════════════════════════════════════ */
.section {
    padding: clamp(5rem, 10vw, 10rem) 0;
}

.section--dark {
    background: var(--primary);
    color: var(--white);
}

.section--deep {
    background: var(--bg-deep);
}

.section__eyebrow {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section__eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.section__subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 550px;
    line-height: 1.8;
}

.section--dark .section__subtitle {
    color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════ */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(3rem, 6vw, 8rem);
    align-items: center;
    margin-top: 3rem;
}

.about__image-wrapper {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.about__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.1) contrast(1.05);
    transition: transform 0.8s var(--ease-out-expo);
}

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

.about__image-accent {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 40%;
    height: 40%;
    border: 2px solid var(--accent);
    pointer-events: none;
}

.about__image-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--white);
    padding: 0.6rem 1rem;
    font-family: var(--font-ui);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
}

.about__content {}

.about__quote {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.7;
    color: var(--primary);
    padding-left: 1.5rem;
    border-left: 2px solid var(--accent);
    margin-bottom: 2rem;
}

.about__bio {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.about__stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.about__stat-number .accent {
    color: var(--accent);
}

.about__stat-label {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ═══════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════ */
.services__header {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 5rem);
}

.services__header .section__subtitle {
    margin: 0 auto;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-left: 1px solid rgba(255,255,255,0.08);
}

.service-card {
    padding: clamp(2rem, 3vw, 3rem);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-right: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

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

.service-card:hover {
    background: rgba(255, 255, 255, 0.03);
}

.service-card__icon {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.service-card:hover .service-card__icon {
    filter: grayscale(0);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.service-card__desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card__arrow {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s var(--ease-out-expo);
}

.service-card:hover .service-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

.service-card__arrow svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card__arrow svg {
    transform: translateX(3px);
}

/* ═══════════════════════════════════════════
   EDITORIAL FEATURE STRIP
   ═══════════════════════════════════════════ */
.feature-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
}

.feature-strip__visual {
    position: relative;
    background: linear-gradient(135deg, #E8E4E0, #D4CFC9);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-strip__faint-text {
    font-family: var(--font-display);
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 700;
    color: rgba(0, 0, 0, 0.04);
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.9;
    position: absolute;
    white-space: nowrap;
    user-select: none;
}

.feature-strip__visual-icon {
    position: relative;
    z-index: 2;
    font-size: clamp(4rem, 8vw, 6rem);
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.05));
}

.feature-strip__content {
    padding: clamp(3rem, 5vw, 6rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-strip__eyebrow {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--warm);
    margin-bottom: 1.5rem;
}

.feature-strip__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-strip__desc {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2rem;
    max-width: 480px;
}

.feature-strip__details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-strip__detail {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-strip__detail::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════ */
.gallery__header {
    margin-bottom: clamp(3rem, 5vw, 5rem);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.5rem, 1vw, 1rem);
}

.gallery__item {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) contrast(1.05);
    transition: all 0.6s var(--ease-out-expo);
}

.gallery__item:hover img {
    transform: scale(1.06);
    filter: grayscale(0) contrast(1.1);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-label {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
}

.gallery__item--wide {
    grid-column: span 2;
    aspect-ratio: 8 / 5;
}

/* ═══════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════ */
.pricing__header {
    margin-bottom: clamp(3rem, 5vw, 5rem);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 2rem);
}

.pricing-card {
    background: var(--white);
    padding: clamp(2rem, 3vw, 3rem);
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s var(--ease-out-expo);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    border-color: transparent;
}

.pricing-card--featured {
    border-color: var(--accent);
}

.pricing-card--featured::before {
    content: 'Priljubljeno';
    position: absolute;
    top: -0.5rem;
    right: 1.5rem;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-ui);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
}

.pricing-card__category {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.pricing-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.pricing-card__list {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.pricing-card__item:last-child {
    border-bottom: none;
}

.pricing-card__service {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-card__price {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

.pricing-card__cta {
    display: block;
    text-align: center;
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    padding: 0.8rem;
    border: 1px solid var(--primary);
    transition: all 0.3s var(--ease-out-expo);
}

.pricing-card__cta:hover {
    background: var(--primary);
    color: var(--white);
}

.pricing-card--featured .pricing-card__cta {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.pricing-card--featured .pricing-card__cta:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.pricing__note {
    text-align: center;
    margin-top: 2.5rem;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ═══════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════ */
.contact {
    text-align: center;
}

.contact__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact__title .stroke-text {
    -webkit-text-stroke: 1.5px var(--primary);
    -webkit-text-fill-color: transparent;
}

.contact__desc {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.contact__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.contact__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--accent);
    text-decoration: none;
    padding: 1.1rem 2.5rem;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.contact__btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.contact__btn-primary:hover::before { left: 100%; }

.contact__btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(236, 72, 153, 0.25);
}

.contact__btn-secondary {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    padding: 1.1rem 2.5rem;
    border: 1px solid var(--primary);
    transition: all 0.3s var(--ease-out-expo);
}

.contact__btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.contact__info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.contact__info-item {}

.contact__info-label {
    font-family: var(--font-ui);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact__info-value {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--primary);
}

.contact__info-value a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.contact__info-value a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    background: var(--primary);
    padding: 3rem 0;
    color: rgba(255,255,255,0.4);
}

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

.footer__logo {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--white);
}

.footer__logo span {
    color: var(--accent);
}

.footer__links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer__link {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer__copy {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero__visual {
        height: 400px;
        order: -1;
    }

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

    .feature-strip {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .feature-strip__visual {
        min-height: 30vh;
    }

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

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

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

    .pricing__grid .pricing-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav__links {
        gap: 1rem;
    }

    .nav__link {
        font-size: 0.6rem;
    }

    .nav__cta {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 5rem;
        padding-bottom: 3rem;
    }

    .hero__visual {
        height: 300px;
    }

    .hero__float-badge {
        bottom: -1rem;
        left: 1rem;
    }

    .hero__scroll {
        display: none;
    }

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

    .about__image-wrapper {
        aspect-ratio: 4 / 3;
    }

    .about__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

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

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

    .gallery__item--wide {
        grid-column: span 1;
        aspect-ratio: 4 / 5;
    }

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

    .pricing__grid .pricing-card:last-child {
        grid-column: span 1;
    }

    .contact__info {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .contact__title .stroke-text {
        -webkit-text-stroke: 1px var(--primary);
    }

    .footer__inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

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

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

    .contact__actions {
        flex-direction: column;
    }

    .contact__btn-primary,
    .contact__btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
