/* ╔══════════════════════════════════════════════════════════╗
   ║  FLORA MUNDI — Ecuador's Finest Flowers                 ║
   ║  Modern premium website styles                          ║
   ╚══════════════════════════════════════════════════════════╝ */

/* ── CUSTOM PROPERTIES ────────────────────────────────────── */
:root {
    /* Colors */
    --c-primary: #8B2252;
    --c-primary-light: #C75B7A;
    --c-primary-soft: #F2D7DE;
    --c-accent: #C9A96E;
    --c-accent-light: #E8D5A8;
    --c-green: #3A7D44;
    --c-green-soft: #A8D5B0;
    --c-dark: #0A0A0A;
    --c-dark-2: #141414;
    --c-dark-3: #1E1E1E;
    --c-light: #FAFAF8;
    --c-cream: #F5F0EB;
    --c-text: #2D2D2D;
    --c-text-muted: #7A7A7A;
    --c-border: rgba(0, 0, 0, 0.08);

    /* Typography */
    --ff-heading: 'Playfair Display', 'Georgia', serif;
    --ff-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
    --ff-accent: 'Cormorant Garamond', 'Georgia', serif;

    /* Spacing */
    --section-pad: clamp(80px, 12vw, 160px);
    --container-max: 1320px;
    --container-pad: clamp(20px, 4vw, 60px);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
    --t-fast: 0.3s;
    --t-medium: 0.6s;
    --t-slow: 1s;

    /* Other */
    --radius: 12px;
    --radius-lg: 24px;
    --header-h: 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;
    overflow-x: hidden;
}

body {
    font-family: var(--ff-body);
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.7;
    color: var(--c-text);
    background: var(--c-light);
    overflow-x: hidden;
    cursor: default;
}

body.loading {
    overflow: hidden;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-heading);
    font-weight: 500;
    line-height: 1.15;
}

em {
    font-style: italic;
    color: var(--c-primary);
}

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

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

/* ── PRELOADER ────────────────────────────────────────────── */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--c-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

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

.preloader__inner {
    text-align: center;
}

.preloader__petal-ring {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    position: relative;
    animation: preloaderSpin 3s linear infinite;
}

.preloader__petal-ring span {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--c-primary);
    border-radius: 50% 50% 50% 0;
    top: 50%;
    left: 50%;
    transform-origin: -8px -8px;
    animation: petalPulse 1.5s ease-in-out infinite;
}

.preloader__petal-ring span:nth-child(1) { transform: rotate(0deg); animation-delay: 0s; }
.preloader__petal-ring span:nth-child(2) { transform: rotate(45deg); animation-delay: 0.1s; }
.preloader__petal-ring span:nth-child(3) { transform: rotate(90deg); animation-delay: 0.2s; }
.preloader__petal-ring span:nth-child(4) { transform: rotate(135deg); animation-delay: 0.3s; }
.preloader__petal-ring span:nth-child(5) { transform: rotate(180deg); animation-delay: 0.4s; }
.preloader__petal-ring span:nth-child(6) { transform: rotate(225deg); animation-delay: 0.5s; }
.preloader__petal-ring span:nth-child(7) { transform: rotate(270deg); animation-delay: 0.6s; }
.preloader__petal-ring span:nth-child(8) { transform: rotate(315deg); animation-delay: 0.7s; }

@keyframes preloaderSpin {
    to { transform: rotate(360deg); }
}

@keyframes petalPulse {
    0%, 100% { opacity: 0.3; transform: rotate(var(--r, 0deg)) scale(0.8); }
    50% { opacity: 1; transform: rotate(var(--r, 0deg)) scale(1.2); }
}

.preloader__brand {
    display: block;
    font-family: var(--ff-heading);
    font-size: clamp(28px, 4vw, 42px);
    color: white;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.3s forwards;
}

.preloader__sub {
    display: block;
    font-family: var(--ff-accent);
    font-size: clamp(14px, 1.5vw, 18px);
    color: var(--c-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.6s forwards;
}

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

/* ── CUSTOM CURSOR ────────────────────────────────────────── */
.cursor {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: difference;
}

@media (hover: hover) and (pointer: fine) {
    .cursor { display: block; }
    html { cursor: none !important; }
    a, button, [data-magnetic] { cursor: none !important; }
}

.cursor__dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    left: -4px;
    transition: transform 0.15s ease;
}

.cursor__ring {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: -20px;
    transition: all 0.25s var(--ease-out-quart);
}

.cursor.hovering .cursor__ring {
    width: 64px;
    height: 64px;
    top: -32px;
    left: -32px;
    border-color: var(--c-accent);
    background: rgba(201, 169, 110, 0.1);
}

.cursor.hovering .cursor__dot {
    transform: scale(0.5);
}

/* ── PETALS CANVAS ────────────────────────────────────────── */
.petals-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.petals-canvas.visible {
    opacity: 1;
}

/* ── NAVIGATION / HEADER ──────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: all var(--t-medium) var(--ease-out-expo);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.nav__logo-icon {
    font-size: 28px;
    color: var(--c-primary-light);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

.nav__logo-text {
    font-family: var(--ff-heading);
    font-size: 22px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.02em;
}

.nav__logo-text em {
    color: var(--c-accent);
    font-style: normal;
}

.nav__menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav__link {
    position: relative;
    display: inline-block;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--t-fast) ease;
    overflow: hidden;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 1px;
    background: var(--c-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--t-medium) var(--ease-out-expo);
}

.nav__link:hover,
.nav__link.active {
    color: white;
}

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

.nav__link--cta {
    background: var(--c-primary);
    color: white !important;
    border-radius: 100px;
    margin-left: 12px;
    transition: all var(--t-fast) ease;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--c-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 34, 82, 0.3);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 32px;
    z-index: 10;
    padding: 4px 0;
}

.nav__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all var(--t-fast) var(--ease-out-expo);
    transform-origin: center;
}

.nav__burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav__burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav__burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ── MOBILE MENU ──────────────────────────────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu.open {
    pointer-events: all;
    visibility: visible;
}

.mobile-menu__bg {
    position: absolute;
    inset: 0;
    background: var(--c-dark);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.7s var(--ease-in-out-quint);
}

.mobile-menu.open .mobile-menu__bg {
    transform: scaleY(1);
}

.mobile-menu__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease 0.3s;
}

.mobile-menu.open .mobile-menu__content {
    opacity: 1;
}

.mobile-menu__list {
    list-style: none;
    text-align: center;
}

.mobile-menu__link {
    display: block;
    font-family: var(--ff-heading);
    font-size: clamp(32px, 8vw, 56px);
    color: white;
    padding: 10px 0;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s var(--ease-out-expo);
}

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

.mobile-menu.open li:nth-child(1) .mobile-menu__link { transition-delay: 0.35s; }
.mobile-menu.open li:nth-child(2) .mobile-menu__link { transition-delay: 0.4s; }
.mobile-menu.open li:nth-child(3) .mobile-menu__link { transition-delay: 0.45s; }
.mobile-menu.open li:nth-child(4) .mobile-menu__link { transition-delay: 0.5s; }
.mobile-menu.open li:nth-child(5) .mobile-menu__link { transition-delay: 0.55s; }

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

.mobile-menu__footer {
    position: absolute;
    bottom: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    line-height: 2;
}

/* ── HERO SECTION ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 2;
}

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

.hero__bg-image {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transition: transform 0.1s linear;
}

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.6) 40%,
        rgba(10, 10, 10, 0.45) 100%
    );
}

.hero__bg-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    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)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
    pointer-events: none;
}

/* Mouse-follow spotlight */
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 400px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(201, 169, 110, 0.08), transparent 60%);
    pointer-events: none;
    z-index: 1;
    transition: background 0.3s ease;
}

.hero__content {
    position: relative;
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 80px;
}

.hero__tag {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero__tag-line {
    width: 48px;
    height: 1px;
    background: var(--c-accent);
}

.hero__tag-text {
    font-family: var(--ff-accent);
    font-size: clamp(14px, 1.2vw, 18px);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-accent);
}

.hero__title {
    margin-bottom: 32px;
}

.hero__title-line {
    display: block;
    overflow: hidden;
}

.hero__title-word {
    display: inline-block;
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 500;
    color: white;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-right: 0.25em;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero__title-accent {
    display: inline-block;
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 500;
    font-style: italic;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: white;
    text-shadow: 0 0 40px rgba(201, 169, 110, 0.5), 0 0 80px rgba(201, 169, 110, 0.2);
    position: relative;
}

.hero__title-accent::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-accent), var(--c-primary-light), var(--c-accent));
    background-size: 200% 100%;
    animation: shimmerLine 3s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes shimmerLine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero__desc {
    font-size: clamp(16px, 1.3vw, 20px);
    color: rgba(255, 255, 255, 0.65);
    max-width: 540px;
    margin-bottom: 48px;
    line-height: 1.8;
}

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

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all var(--t-fast) var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn__text {
    position: relative;
    z-index: 1;
}

.btn__icon {
    position: relative;
    z-index: 1;
    display: flex;
    transition: transform var(--t-fast) var(--ease-out-expo);
}

.btn:hover .btn__icon {
    transform: translate(3px, -3px);
}

.btn--primary {
    background: var(--c-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 34, 82, 0.3);
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c-primary-light), var(--c-accent));
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--t-fast) ease;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(139, 34, 82, 0.4);
}

.btn--primary:hover::before {
    opacity: 1;
}

.btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.btn--white {
    background: white;
    color: var(--c-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn--white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    background: var(--c-cream);
}

/* ── HERO SCROLL INDICATOR ────────────────────────────────── */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    right: var(--container-pad);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

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

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

@keyframes scrollLineAnim {
    0% { top: -100%; }
    50% { top: 100%; }
    50.01% { top: -100%; }
    100% { top: 100%; }
}

.hero__scroll-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: vertical-lr;
}

.hero__bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--c-dark), transparent);
    pointer-events: none;
    z-index: 3;
}

/* ── MARQUEE STRIP ────────────────────────────────────────── */
.marquee {
    padding: 28px 0;
    background: var(--c-dark);
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.marquee__track {
    display: flex;
    width: max-content;
}

.marquee__content {
    display: flex;
    align-items: center;
    gap: 0;
    animation: marqueeScroll 30s linear infinite;
    will-change: transform;
}

.marquee__content span {
    font-family: var(--ff-accent);
    font-size: clamp(16px, 1.5vw, 22px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    padding: 0 24px;
    transition: color var(--t-fast) ease;
}

.marquee__dot {
    color: var(--c-primary) !important;
    font-size: 18px !important;
}

.marquee:hover .marquee__content span:not(.marquee__dot) {
    color: rgba(255, 255, 255, 0.8);
}

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

/* ── SECTION LABEL ────────────────────────────────────────── */
.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-family: var(--ff-accent);
    font-size: clamp(13px, 1vw, 16px);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-primary);
}

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

.section-label__line {
    width: 48px;
    height: 1px;
    background: currentColor;
}

/* ── ABOUT SECTION ────────────────────────────────────────── */
.about {
    padding: var(--section-pad) 0;
    background: var(--c-dark);
    position: relative;
    z-index: 5;
    overflow: hidden;
}

/* Animated background glows */
.about__bg-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    opacity: 0.4;
}

.about__bg-glow--1 {
    width: 500px;
    height: 500px;
    background: rgba(139, 34, 82, 0.25);
    top: -10%;
    left: -5%;
    animation: glowDrift 10s ease-in-out infinite;
}

.about__bg-glow--2 {
    width: 400px;
    height: 400px;
    background: rgba(201, 169, 110, 0.2);
    bottom: -10%;
    right: -5%;
    animation: glowDrift 10s ease-in-out infinite 5s;
}

@keyframes glowDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Large ghost text in background */
.about__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--ff-heading);
    font-size: clamp(100px, 14vw, 260px);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: 0.08em;
}

/* Header */
.about__header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.about__title {
    font-size: clamp(30px, 3.8vw, 56px);
    color: white;
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

.about__title em {
    color: var(--c-accent);
}

/* Photo gallery — masonry-like grid */
.about__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-bottom: 64px;
}

.about__gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.about__gallery-item--tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.about__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out-expo), filter 0.6s ease;
    filter: brightness(0.85) saturate(1.1);
}

.about__gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1) saturate(1.2);
}

.about__gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about__gallery-item:hover .about__gallery-overlay {
    opacity: 1;
}

.about__gallery-overlay span {
    font-family: var(--ff-accent);
    font-size: clamp(14px, 1.2vw, 18px);
    color: var(--c-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: translateY(10px);
    transition: transform 0.5s var(--ease-out-expo);
}

.about__gallery-item:hover .about__gallery-overlay span {
    transform: translateY(0);
}

/* Animated glow border on hover */
.about__gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid transparent;
    transition: border-color 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

.about__gallery-item:hover::after {
    border-color: rgba(201, 169, 110, 0.3);
}

/* Body: description + stats */
.about__body {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}

.about__desc {
    padding-top: 8px;
}

.about__desc p {
    color: rgba(255, 255, 255, 0.55);
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.85;
    margin-bottom: 20px;
}

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

/* Stats with animated SVG rings */
.about__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about__stat {
    text-align: center;
    padding: 24px 12px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.about__stat::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(139, 34, 82, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.about__stat:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 169, 110, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(201, 169, 110, 0.05);
}

.about__stat:hover::before {
    opacity: 1;
}

/* SVG ring */
.about__stat-ring {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    position: relative;
}

.about__stat-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.about__stat-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 4;
}

.about__stat-ring-fill {
    fill: none;
    stroke: url(#statGradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 2s var(--ease-out-expo);
}

.about__stat.visible .about__stat-ring-fill {
    stroke-dashoffset: calc(339.292 * (1 - var(--progress)));
}

.about__stat-content {
    position: relative;
    z-index: 1;
}

.about__stat-number {
    font-family: var(--ff-heading);
    font-size: clamp(28px, 2.5vw, 40px);
    font-weight: 600;
    color: white;
    line-height: 1;
    display: inline;
}

.about__stat-suffix {
    font-family: var(--ff-heading);
    font-size: clamp(18px, 1.8vw, 28px);
    color: var(--c-accent);
    font-weight: 400;
}

.about__stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── FEATURES SECTION ─────────────────────────────────────── */
.features {
    padding: var(--section-pad) 0;
    background: var(--c-cream);
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.features__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--ff-heading);
    font-size: clamp(150px, 20vw, 350px);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(139, 34, 82, 0.05);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: 0.05em;
    animation: floatUpDown 8s ease-in-out infinite;
}

.features__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

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

.features__title {
    font-size: clamp(30px, 3.5vw, 52px);
    color: var(--c-dark);
    letter-spacing: -0.01em;
}

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

.feature-card {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: clamp(32px, 3vw, 48px);
    transition: all var(--t-medium) var(--ease-out-expo);
    overflow: hidden;
    border: 1px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 34, 82, 0.03), rgba(201, 169, 110, 0.05));
    opacity: 0;
    transition: opacity var(--t-fast) ease;
    border-radius: inherit;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    border-color: rgba(139, 34, 82, 0.1);
}

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

.feature-card__icon {
    width: 80px;
    height: 80px;
    color: var(--c-primary);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.feature-card__icon svg {
    width: 100%;
    height: 100%;
}

.feature-card__number {
    position: absolute;
    top: clamp(24px, 2vw, 40px);
    right: clamp(24px, 2vw, 40px);
    font-family: var(--ff-heading);
    font-size: 64px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    z-index: 0;
}

.feature-card__title {
    font-family: var(--ff-heading);
    font-size: clamp(22px, 1.8vw, 28px);
    color: var(--c-dark);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.feature-card__text {
    color: var(--c-text-muted);
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.feature-card__line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-medium) var(--ease-out-expo);
}

.feature-card:hover .feature-card__line {
    transform: scaleX(1);
}

/* ── SHOWCASE / SERVICES ──────────────────────────────────── */
.showcase {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 5;
    padding: var(--section-pad) 0;
}

.showcase__visual {
    position: absolute;
    inset: 0;
}

.showcase__visual-inner {
    width: 100%;
    height: 120%;
    margin-top: -10%;
    will-change: transform;
}

.showcase__visual-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.2);
}

.showcase__visual-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(139, 34, 82, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(201, 169, 110, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.82) 40%, rgba(10, 10, 10, 0.92) 100%);
}

/* Floating particles */
.showcase__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.showcase__particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--c-accent);
    border-radius: 50%;
    opacity: 0;
    animation: showcaseParticle 8s ease-in-out infinite;
}

.showcase__particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.showcase__particles span:nth-child(2) { left: 25%; top: 70%; animation-delay: 1.2s; width: 3px; height: 3px; }
.showcase__particles span:nth-child(3) { left: 45%; top: 15%; animation-delay: 2.4s; width: 5px; height: 5px; }
.showcase__particles span:nth-child(4) { left: 65%; top: 60%; animation-delay: 0.8s; }
.showcase__particles span:nth-child(5) { left: 80%; top: 30%; animation-delay: 3.6s; width: 3px; height: 3px; }
.showcase__particles span:nth-child(6) { left: 15%; top: 85%; animation-delay: 4.8s; width: 5px; height: 5px; }
.showcase__particles span:nth-child(7) { left: 90%; top: 75%; animation-delay: 1.6s; }
.showcase__particles span:nth-child(8) { left: 55%; top: 90%; animation-delay: 5.2s; width: 3px; height: 3px; }
.showcase__particles span:nth-child(9) { left: 35%; top: 45%; animation-delay: 6s; }
.showcase__particles span:nth-child(10) { left: 70%; top: 10%; animation-delay: 3s; width: 5px; height: 5px; }

@keyframes showcaseParticle {
    0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
    10% { opacity: 0.6; }
    50% { opacity: 0.3; transform: translateY(-60px) scale(1.5); }
    90% { opacity: 0.5; }
}

/* Decorative animated lines */
.showcase__deco-line {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.showcase__deco-line--1 {
    top: 10%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.15), transparent);
    animation: decoLinePulse 4s ease-in-out infinite;
}

.showcase__deco-line--2 {
    bottom: 10%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 34, 82, 0.15), transparent);
    animation: decoLinePulse 4s ease-in-out infinite 2s;
}

@keyframes decoLinePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Content layout */
.showcase__content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Header centered */
.showcase__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.showcase__title {
    font-size: clamp(36px, 5vw, 72px);
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.showcase__title em {
    color: var(--c-accent);
    position: relative;
}

.showcase__title em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: -4px;
    right: -4px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
    animation: gradientShift 3s ease-in-out infinite;
    background-size: 200% 100%;
}

.showcase__subtitle {
    font-family: var(--ff-accent);
    font-size: clamp(16px, 1.4vw, 22px);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
    line-height: 1.6;
}

/* Service cards grid */
.showcase__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.showcase__card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 2.5vw, 40px);
    text-align: center;
    transition: all 0.6s var(--ease-out-expo);
    overflow: hidden;
    cursor: default;
}

.showcase__card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.showcase__card:hover .showcase__card-glow {
    opacity: 1;
}

.showcase__card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 169, 110, 0.2);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(201, 169, 110, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Featured card glow */
.showcase__card--featured {
    background: rgba(139, 34, 82, 0.08);
    border-color: rgba(139, 34, 82, 0.15);
}

.showcase__card--featured .showcase__card-glow {
    background: radial-gradient(circle, rgba(139, 34, 82, 0.12), transparent 70%);
}

.showcase__card--featured:hover {
    background: rgba(139, 34, 82, 0.12);
    border-color: rgba(139, 34, 82, 0.3);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(139, 34, 82, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.showcase__card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    color: var(--c-accent);
    transition: all 0.6s var(--ease-out-expo);
    position: relative;
    z-index: 1;
}

.showcase__card-icon svg {
    width: 100%;
    height: 100%;
}

.showcase__card:hover .showcase__card-icon {
    transform: scale(1.15) rotate(5deg);
    color: white;
    filter: drop-shadow(0 0 12px rgba(201, 169, 110, 0.4));
}

.showcase__card--featured .showcase__card-icon {
    color: var(--c-primary-light);
}

.showcase__card--featured:hover .showcase__card-icon {
    color: white;
    filter: drop-shadow(0 0 12px rgba(199, 91, 122, 0.5));
}

.showcase__card-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--ff-heading);
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    transition: color 0.6s ease;
}

.showcase__card:hover .showcase__card-number {
    color: rgba(201, 169, 110, 0.08);
}

.showcase__card-title {
    font-family: var(--ff-heading);
    font-size: clamp(20px, 1.6vw, 26px);
    color: white;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    line-height: 1.25;
}

.showcase__card-text {
    color: rgba(255, 255, 255, 0.45);
    font-size: clamp(13px, 0.95vw, 15px);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.showcase__card:hover .showcase__card-text {
    color: rgba(255, 255, 255, 0.65);
}

/* Animated bottom border */
.showcase__card-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-accent), var(--c-primary-light));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s var(--ease-out-expo);
    animation: gradientShift 3s ease-in-out infinite;
}

.showcase__card:hover .showcase__card-border {
    transform: scaleX(1);
}

/* Bottom tags */
.showcase__bottom {
    text-align: center;
}

.showcase__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.showcase .tag {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.showcase .tag:hover {
    background: rgba(201, 169, 110, 0.1);
    border-color: var(--c-accent);
    color: var(--c-accent);
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.1);
    transform: translateY(-3px);
}

.tag {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--t-fast) ease;
    backdrop-filter: blur(8px);
}

.tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--c-accent);
    color: var(--c-accent);
    transform: translateY(-2px);
}

/* ── QUOTE STRIP ──────────────────────────────────────────── */
.quote-strip {
    position: relative;
    padding: clamp(60px, 8vw, 120px) 0;
    background: var(--c-cream);
    overflow: hidden;
    z-index: 5;
}

.quote-strip__bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 300px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(139, 34, 82, 0.06), transparent 70%);
    pointer-events: none;
}

.quote-strip__inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-strip__mark {
    display: block;
    font-family: var(--ff-heading);
    font-size: clamp(80px, 12vw, 160px);
    color: var(--c-primary);
    opacity: 0.12;
    line-height: 0.6;
    margin-bottom: -20px;
    user-select: none;
}

.quote-strip__text {
    font-family: var(--ff-accent);
    font-size: clamp(20px, 2.5vw, 36px);
    color: var(--c-dark);
    line-height: 1.6;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 32px;
}

.quote-strip__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.quote-strip__author-line {
    width: 40px;
    height: 1px;
    background: var(--c-accent);
}

.quote-strip__author-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-primary);
}

/* ── CONTACT SECTION ──────────────────────────────────────── */
.contact {
    position: relative;
    padding: var(--section-pad) 0;
    background: var(--c-dark);
    overflow: hidden;
    z-index: 5;
}

.contact__bg-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    opacity: 0.35;
}

.contact__bg-glow--1 {
    width: 500px;
    height: 500px;
    background: rgba(139, 34, 82, 0.3);
    top: -15%;
    right: -10%;
    animation: glowDrift 12s ease-in-out infinite;
}

.contact__bg-glow--2 {
    width: 400px;
    height: 400px;
    background: rgba(201, 169, 110, 0.2);
    bottom: -15%;
    left: -10%;
    animation: glowDrift 12s ease-in-out infinite 6s;
}

.contact__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--ff-heading);
    font-size: clamp(80px, 12vw, 220px);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.015);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.contact__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.contact__particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--c-accent);
    border-radius: 50%;
    opacity: 0;
    animation: showcaseParticle 10s ease-in-out infinite;
}

.contact__particles span:nth-child(1) { left: 5%; top: 15%; animation-delay: 0s; }
.contact__particles span:nth-child(2) { left: 20%; top: 80%; animation-delay: 2s; }
.contact__particles span:nth-child(3) { left: 40%; top: 10%; animation-delay: 4s; }
.contact__particles span:nth-child(4) { left: 60%; top: 70%; animation-delay: 1s; }
.contact__particles span:nth-child(5) { left: 80%; top: 25%; animation-delay: 5s; }
.contact__particles span:nth-child(6) { left: 90%; top: 60%; animation-delay: 3s; }
.contact__particles span:nth-child(7) { left: 50%; top: 90%; animation-delay: 6.5s; }
.contact__particles span:nth-child(8) { left: 70%; top: 5%; animation-delay: 7.5s; }

/* Header */
.contact__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.contact__title {
    font-size: clamp(32px, 4vw, 60px);
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.contact__title em {
    color: var(--c-accent);
}

.contact__subtitle {
    font-family: var(--ff-accent);
    font-size: clamp(15px, 1.3vw, 20px);
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* Grid layout */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: clamp(32px, 4vw, 64px);
    align-items: start;
}

/* Info cards */
.contact__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__info-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all 0.5s var(--ease-out-expo);
    overflow: hidden;
}

.contact__info-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact__info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 169, 110, 0.15);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(201, 169, 110, 0.04);
}

.contact__info-card:hover .contact__info-card-glow {
    opacity: 1;
}

.contact__info-icon {
    width: 40px;
    height: 40px;
    color: var(--c-accent);
    margin-bottom: 16px;
    transition: all 0.5s var(--ease-out-expo);
}

.contact__info-icon svg {
    width: 100%;
    height: 100%;
}

.contact__info-card:hover .contact__info-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(201, 169, 110, 0.3));
}

.contact__info-label {
    font-family: var(--ff-heading);
    font-size: 18px;
    color: white;
    margin-bottom: 6px;
    font-weight: 500;
}

.contact__info-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
    display: block;
}

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

/* Contact form wrap */
.contact__form-wrap {
    position: relative;
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 3vw, 48px);
    overflow: hidden;
}

.contact__form-glow {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 34, 82, 0.06), transparent 70%);
    pointer-events: none;
    animation: glowDrift 10s ease-in-out infinite;
}

/* Form fields */
.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact__field {
    position: relative;
    margin-bottom: 28px;
}

.contact__field input,
.contact__field textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 24px 16px 10px;
    font-family: var(--ff-body);
    font-size: 15px;
    color: white;
    outline: none;
    transition: all 0.4s var(--ease-out-expo);
    resize: none;
}

.contact__field input:focus,
.contact__field textarea:focus {
    background: rgba(255, 255, 255, 0.06);
    border-bottom-color: var(--c-accent);
}

.contact__field label {
    position: absolute;
    top: 18px;
    left: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    transition: all 0.3s var(--ease-out-expo);
    letter-spacing: 0.02em;
}

.contact__field input:focus ~ label,
.contact__field input:not(:placeholder-shown) ~ label,
.contact__field textarea:focus ~ label,
.contact__field textarea:not(:placeholder-shown) ~ label {
    top: 6px;
    font-size: 11px;
    color: var(--c-accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Animated underline */
.contact__field-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
    transition: all 0.5s var(--ease-out-expo);
    transform: translateX(-50%);
}

.contact__field input:focus ~ .contact__field-line,
.contact__field textarea:focus ~ .contact__field-line {
    width: 100%;
}

/* Field error state */
.contact__field.error input,
.contact__field.error textarea {
    border-bottom-color: #e74c3c;
}

.contact__field.error .contact__field-line {
    width: 100%;
    background: linear-gradient(90deg, #e74c3c, #ff6b6b);
}

.contact__field.error label {
    color: #ff6b6b;
}

/* Submit button */
.contact__submit {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 42px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
    color: white;
    border: none;
    border-radius: 100px;
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 8px 30px rgba(139, 34, 82, 0.3);
}

.contact__submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c-accent), var(--c-primary-light));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.contact__submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(139, 34, 82, 0.4), 0 0 20px rgba(201, 169, 110, 0.1);
}

.contact__submit:hover::before {
    opacity: 1;
}

.contact__submit-text,
.contact__submit-icon {
    position: relative;
    z-index: 1;
}

.contact__submit-icon {
    display: flex;
    transition: transform 0.4s var(--ease-out-expo);
}

.contact__submit:hover .contact__submit-icon {
    transform: translate(3px, -3px);
}

/* Loading state */
.contact__submit-loading {
    display: none;
    position: relative;
    z-index: 1;
    gap: 6px;
}

.contact__submit.loading .contact__submit-text,
.contact__submit.loading .contact__submit-icon {
    display: none;
}

.contact__submit.loading .contact__submit-loading {
    display: flex;
}

.contact__submit-loading span {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.contact__submit-loading span:nth-child(2) { animation-delay: 0.16s; }
.contact__submit-loading span:nth-child(3) { animation-delay: 0.32s; }

@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* Success state */
.contact__form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}

.contact__form-success.active {
    display: block;
    animation: scaleUp 0.6s var(--ease-out-expo);
}

@keyframes scaleUp {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.contact__form-success-icon {
    width: 72px;
    height: 72px;
    color: var(--c-accent);
    margin: 0 auto 24px;
}

.contact__form-success-icon svg {
    width: 100%;
    height: 100%;
}

.contact__form-success-icon circle {
    stroke-dasharray: 176;
    stroke-dashoffset: 176;
    animation: drawCircle 0.8s var(--ease-out-expo) 0.2s forwards;
}

.contact__form-success-icon path {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: drawCheck 0.5s var(--ease-out-expo) 0.7s forwards;
}

@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

.contact__form-success h3 {
    font-family: var(--ff-heading);
    font-size: 28px;
    color: white;
    margin-bottom: 12px;
}

.contact__form-success p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
}

/* ── CTA MOTTO STRIP ─────────────────────────────────────── */
.cta-strip {
    position: relative;
    padding: clamp(80px, 10vw, 140px) 0;
    overflow: hidden;
    z-index: 5;
}

.cta-strip__bg {
    position: absolute;
    inset: 0;
}

.cta-strip__bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-strip__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.82) 0%,
        rgba(139, 34, 82, 0.35) 100%
    );
}

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

.cta-strip__flower {
    display: inline-block;
    font-size: 56px;
    color: var(--c-accent);
    margin-bottom: 28px;
    animation: ctaFlowerSpin 8s linear infinite;
    filter: drop-shadow(0 0 20px rgba(201, 169, 110, 0.3));
}

@keyframes ctaFlowerSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-strip__title {
    font-size: clamp(32px, 4.5vw, 64px);
    color: white;
    letter-spacing: -0.01em;
}

.cta-strip__title em {
    color: var(--c-accent);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
    background: var(--c-dark-2);
    position: relative;
    z-index: 5;
    padding-top: 80px;
}

.footer__top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c-primary), var(--c-accent), var(--c-primary-light), transparent);
    background-size: 200% 100%;
    animation: gradientShift 5s ease-in-out infinite;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(32px, 4vw, 64px);
    margin-bottom: 48px;
}

/* Brand col */
.footer__logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer__logo-icon {
    font-size: 28px;
    color: var(--c-primary-light);
    animation: logoPulse 3s ease-in-out infinite;
}

.footer__logo-text {
    font-family: var(--ff-heading);
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.footer__logo-text em {
    color: var(--c-accent);
    font-style: normal;
}

.footer__brand-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 320px;
}

/* Social links */
.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.4s var(--ease-out-expo);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

.footer__social-link:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.15);
    background: rgba(201, 169, 110, 0.05);
}

/* Nav columns */
.footer__col-title {
    font-family: var(--ff-heading);
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer__nav-list {
    list-style: none;
}

.footer__nav-list li {
    margin-bottom: 12px;
}

.footer__nav-list a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer__nav-list a::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--c-accent);
    transition: width 0.3s var(--ease-out-expo);
    transform: translateY(-50%);
}

.footer__nav-list a:hover {
    color: var(--c-accent);
    padding-left: 18px;
}

.footer__nav-list a:hover::before {
    width: 10px;
}

/* Contact col */
.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.footer__contact-item svg {
    flex-shrink: 0;
    color: var(--c-accent);
    opacity: 0.6;
}

.footer__contact-item a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.footer__contact-item a:hover {
    color: var(--c-accent);
}

/* Footer bottom */
.footer__bottom {
    padding-bottom: 32px;
}

.footer__bottom-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    margin-bottom: 24px;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer__back-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
}

.footer__back-top:hover {
    color: var(--c-accent);
    border-color: rgba(201, 169, 110, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.footer__back-top svg {
    transition: transform 0.3s ease;
}

.footer__back-top:hover svg {
    transform: translateY(-2px);
}

/* ── REVEAL ANIMATIONS ────────────────────────────────────── */
.reveal-up,
.reveal-text,
.reveal-image,
.reveal-scale {
    opacity: 0;
    transition: all 1.2s var(--ease-out-expo);
}

.reveal-up {
    transform: translateY(80px);
}

.reveal-text {
    transform: translateY(30px);
    filter: blur(4px);
}

.reveal-image {
    clip-path: inset(100% 0 0 0);
}

.reveal-scale {
    transform: scale(0.7);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.reveal-image.visible {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

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

/* ── GLOW & SHIMMER EFFECTS ───────────────────────────────── */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 34, 82, 0.2); }
    50% { box-shadow: 0 0 40px rgba(139, 34, 82, 0.4), 0 0 60px rgba(201, 169, 110, 0.15); }
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(201, 169, 110, 0.2); }
    50% { border-color: rgba(201, 169, 110, 0.6); }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(201, 169, 110, 0.3); }
    50% { text-shadow: 0 0 20px rgba(201, 169, 110, 0.6), 0 0 40px rgba(201, 169, 110, 0.2); }
}

@keyframes rotateIn {
    from { transform: rotate(-5deg) scale(0.95); opacity: 0; }
    to { transform: rotate(0deg) scale(1); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-80px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(80px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes scaleUp {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes shakeX {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

/* Hero section glow aura */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c-accent), var(--c-primary-light), var(--c-accent), transparent);
    background-size: 200% 100%;
    animation: gradientShift 4s ease-in-out infinite;
    z-index: 10;
}

/* Hero description glow on hover */
.hero__desc {
    transition: all 0.6s ease;
}

.hero__desc:hover {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Enhanced button effects */
.btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--c-primary), var(--c-accent), var(--c-primary-light));
    background-size: 300% 300%;
    animation: gradientShift 4s ease infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(8px);
}

.btn:hover::after {
    opacity: 0.6;
}

/* Marquee enhanced */
.marquee__content span:not(.marquee__dot) {
    transition: all 0.4s ease;
}

.marquee__content span:not(.marquee__dot):hover {
    color: white !important;
    text-shadow: 0 0 20px rgba(201, 169, 110, 0.4);
    transform: scale(1.05);
}

.marquee__dot {
    animation: pulseGlow 2s ease-in-out infinite, logoPulse 3s ease-in-out infinite;
    display: inline-block;
}

/* About section decorative elements */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.2), transparent);
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 34, 82, 0.2), transparent);
}

/* About stat enhanced hover — glow overrides */
.about__stat:hover .about__stat-number {
    text-shadow: 0 0 20px rgba(201, 169, 110, 0.4);
}

/* Feature card supercharged */
.feature-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--c-primary), var(--c-accent), var(--c-primary-light));
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: gradientShift 4s ease infinite;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    background: white;
}

.feature-card__icon {
    transition: all 0.6s var(--ease-out-expo);
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(139, 34, 82, 0.3));
}

.feature-card__number {
    transition: all 0.6s ease;
}

.feature-card:hover .feature-card__number {
    color: rgba(139, 34, 82, 0.08);
    transform: scale(1.1);
}

/* Showcase enhanced */
.showcase__visual-inner img {
    transition: transform 0.6s ease;
}

.showcase:hover .showcase__visual-inner img {
    transform: scale(1.02);
}

.showcase__title {
    transition: text-shadow 0.6s ease;
}

.showcase__title:hover {
    text-shadow: 0 0 40px rgba(201, 169, 110, 0.3);
}

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

.tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.tag:hover::before {
    width: 200%;
    height: 200%;
}

/* CTA section enhanced */
.cta-strip__flower {
    filter: drop-shadow(0 0 20px rgba(201, 169, 110, 0.4));
    transition: all 0.4s ease;
}

.cta-strip__flower:hover {
    filter: drop-shadow(0 0 30px rgba(201, 169, 110, 0.6));
    transform: scale(1.2);
}

.cta-strip__title {
    transition: text-shadow 0.6s ease;
}

.cta-strip__title:hover {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

/* Section decorative line between sections */
.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
    border-radius: 2px;
}

/* Footer enhancements */
.footer__nav-list a {
    position: relative;
}

.footer__logo-link {
    transition: text-shadow 0.4s ease;
}

.footer__logo-link:hover {
    text-shadow: 0 0 20px rgba(201, 169, 110, 0.3);
}

/* ── SMOOTH SECTION TRANSITIONS ───────────────────────────── */
.about__title em,
.features__title em,
.showcase__title em,
.cta-strip__title em,
.contact__title em {
    position: relative;
}

.about__title em::after,
.features__title em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s var(--ease-out-expo);
}

.about__title em.underline-visible::after,
.features__title em.underline-visible::after {
    transform: scaleX(1);
}

/* ── SCROLL-TRIGGERED ANIMATIONS ──────────────────────────── */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all var(--t-slow) var(--ease-out-expo);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all var(--t-slow) var(--ease-out-expo);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-rotate {
    opacity: 0;
    transform: rotate(-5deg) scale(0.95);
    transition: all var(--t-slow) var(--ease-out-expo);
}

.reveal-rotate.visible {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .nav__menu {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

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

    .about__gallery-item--tall {
        grid-row: span 1;
        aspect-ratio: 4 / 3;
    }

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

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

    .features__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .showcase__visual-overlay {
        background:
            radial-gradient(ellipse at 50% 0%, rgba(139, 34, 82, 0.2) 0%, transparent 60%),
            linear-gradient(180deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.88) 100%);
    }

    .cta-strip__bg-image {
        background-attachment: scroll;
    }

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

    .contact__info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact__info-card {
        flex: 1;
        min-width: 200px;
    }

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

@media (max-width: 768px) {
    :root {
        --header-h: 70px;
    }

    .hero__scroll {
        display: none;
    }

    .hero__title-word,
    .hero__title-accent {
        margin-right: 0.15em;
    }

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

    .showcase__cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact__form-row {
        grid-template-columns: 1fr;
    }

    .contact__info {
        flex-direction: column;
    }

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

    .footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

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

    .footer__social {
        justify-content: flex-start;
    }
}
