/* ========================================
   WOBEE CORPORATE GIFT - REFINED LUXURY
   Inspired by The Eight Project, Rosa Hotels, HUUS Gstaad
   
   NOTE: This CSS file can be minified/compressed for production
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-black: #0B0B0B;
    --color-dark: #1a1a1a;
    --color-white: #FAFAF8;
    --color-pearl: #E6E3DC;
    --color-gold: #C7A86A;
    --color-gold-light: #D4B886;
    --color-copper: #B68B60;

    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-unit: 8px;
    --spacing-xs: calc(var(--spacing-unit) * 2);
    --spacing-sm: calc(var(--spacing-unit) * 3);
    --spacing-md: calc(var(--spacing-unit) * 6);
    --spacing-lg: calc(var(--spacing-unit) * 10);
    --spacing-xl: calc(var(--spacing-unit) * 15);
    --spacing-xxl: calc(var(--spacing-unit) * 20);

    /* Layout */
    --container-narrow: 800px;
    --container-wide: 1400px;
    --container-padding: clamp(30px, 8vw, 120px);
    --section-padding: clamp(80px, 12vw, 160px);

    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius: 2px;

    /* Shadows */
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 10px 40px rgba(199, 168, 106, 0.2);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-black);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

em {
    font-style: italic;
    font-weight: inherit;
}

p {
    max-width: 70ch;
    line-height: 1.8;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
}

/* Utility Classes */
.desktop-only {
    display: inline;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
}

/* ========================================
   LAYOUT CONTAINERS
   ======================================== */

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

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

section {
    position: relative;
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    margin-bottom: var(--spacing-xl);
}

.section-header.centered {
    text-align: center;
}

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

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-black);
}

.section-title em {
    color: var(--color-gold);
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(11, 11, 11, 0.05);
    transition: var(--transition-medium);
}

.nav-bar.scrolled {
    background: rgba(250, 250, 248, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: var(--spacing-sm) var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.125rem;
    letter-spacing: 0.2em;
    color: var(--color-black);
    font-weight: 400;
    transition: var(--transition-fast);
    display: block;
}

.nav-logo img {
    height: 28px;
    width: auto;
    transition: var(--transition-fast);
}

.nav-logo:hover {
    color: var(--color-gold);
    opacity: 0.8;
}

.nav-cta {
    padding: 0.75rem 1.75rem;
    background: var(--color-black);
    color: var(--color-white);
    border-radius: var(--radius);
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-cta span {
    text-transform: uppercase;
}

.nav-cta .cta-icon {
    width: 16px;
    height: 16px;
    stroke: var(--color-pearl);
}

.nav-cta:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.nav-cta:hover .cta-icon {
    stroke: var(--color-black);
}

.nav-lang {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-black);
    text-transform: uppercase;
    transition: var(--transition-fast);
    text-decoration: none;
    padding: 0.5rem 0;
    opacity: 0.7;
}

.nav-lang:hover {
    opacity: 1;
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .nav-logo img {
        height: 24px;
    }

    .nav-right {
        gap: var(--spacing-sm);
    }

    .nav-lang {
        font-size: 0.8125rem;
    }

    .nav-cta {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

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

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(11, 11, 11, 0.4) 0%, rgba(11, 11, 11, 0.6) 100%),
        radial-gradient(circle at center, transparent 0%, rgba(11, 11, 11, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: var(--spacing-xl) var(--container-padding);
    max-width: 900px;
}

.hero-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
}

.hero-title em {
    font-style: italic;
    color: var(--color-gold-light);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto;
}

.hero-scroll {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    visibility: visible;
}

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

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* ========================================
   INTRO SECTION
   ======================================== */

.intro {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
}

.intro-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.intro-title em {
    font-style: italic;
    color: var(--color-gold);
}

.intro-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.intro-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(11, 11, 11, 0.8);
    margin: 0 auto;
}

/* ========================================
   DECORATIVE SEPARATOR
   ======================================== */

.separator {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-lg) 0;
    background: var(--color-white);
}

.separator-line {
    width: min(400px, 70vw);
    height: 1px;
    background: var(--color-gold);
    box-shadow:
        0 1px 3px rgba(199, 168, 106, 0.3),
        0 -1px 3px rgba(199, 168, 106, 0.2);
    animation: separatorFadeIn 1s ease-out;
}

@keyframes separatorFadeIn {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* ========================================
   IMAGE PLACEHOLDER
   ======================================== */

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E6E3DC 0%, #d4cfc4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: attr(data-text);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-style: italic;
    color: rgba(11, 11, 11, 0.3);
    text-align: center;
    padding: var(--spacing-md);
}

.image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(11, 11, 11, 0.02) 10px,
            rgba(11, 11, 11, 0.02) 20px
        );
}

/* ========================================
   SERVICES SECTION
   ======================================== */

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    background: #F5F3EE;
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.service-card:hover {
    background: #EFEAE0;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(199, 168, 106, 0.12);
}

.service-title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: var(--spacing-xs);
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(11, 11, 11, 0.7);
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: var(--spacing-sm);
}

.service-features li {
    font-size: 0.9375rem;
    color: rgba(11, 11, 11, 0.6);
    padding-left: 1.25rem;
    position: relative;
}

.service-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-xl) / 2);
    }
    
    .service-card {
        padding: calc(var(--spacing-lg) / 2);
    }
}

/* ========================================
   APPROACH SECTION
   ======================================== */

.approach {
    padding: var(--section-padding) 0;
    background: var(--color-pearl);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.approach-step {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
}

.approach-step.reverse {
    direction: ltr;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-gold);
    opacity: 0.4;
    line-height: 1;
}

.step-title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-black);
}

.step-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(11, 11, 11, 0.7);
    max-width: none;
}

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

@media (max-width: 640px) {
    .approach-steps {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   VALUES SECTION
   ======================================== */

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

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

.values .section-title {
    color: var(--color-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.value-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.value-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 0;
    margin-top: var(--spacing-sm);
}

.value-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(250, 250, 248, 0.7);
    margin-top: var(--spacing-xs);
}

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

@media (max-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
    padding: var(--section-padding) 0;
    background: var(--color-pearl);
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) 0;
}

.testimonial-item {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    color: rgba(11, 11, 11, 0.9);
}

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

.author-name {
    font-weight: 400;
    font-size: 1rem;
    color: var(--color-black);
}

.author-title {
    font-size: 0.875rem;
    color: rgba(11, 11, 11, 0.6);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(11, 11, 11, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.testimonial-dot.active {
    background: var(--color-gold);
    transform: scale(1.25);
}

.testimonial-dot:hover {
    background: var(--color-gold);
    opacity: 0.7;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    padding: var(--section-padding) 0;
    background: var(--color-black);
    color: var(--color-white);
}

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

.contact-content {
    text-align: center;
}

.contact-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.contact-title em {
    font-style: italic;
    color: var(--color-gold);
}

.contact-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(250, 250, 248, 0.7);
    margin: var(--spacing-lg) auto;
    max-width: 600px;
}

.contact-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    transition: var(--transition-fast);
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn span {
    text-transform: uppercase;
}

.btn .cta-icon {
    width: 18px;
    height: 18px;
    stroke: var(--color-pearl);
}

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

.btn-primary .cta-icon {
    stroke: var(--color-black);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(250, 250, 248, 0.3);
}

.btn-secondary:hover {
    background: rgba(250, 250, 248, 0.1);
    border-color: var(--color-white);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: var(--spacing-md);
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(250, 250, 248, 0.5);
    font-style: italic;
    margin-bottom: var(--spacing-xs);
}

.footer-location {
    font-size: 0.8125rem;
    color: rgba(250, 250, 248, 0.4);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.02em;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: rgba(250, 250, 248, 0.4);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ========================================
   SMOOTH SCROLLING
   ======================================== */

html.smooth-scroll {
    scroll-behavior: auto;
}

/* ========================================
   SELECTION
   ======================================== */

::selection {
    background: var(--color-gold);
    color: var(--color-black);
}

::-moz-selection {
    background: var(--color-gold);
    color: var(--color-black);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
    :root {
        --section-padding: clamp(60px, 10vw, 100px);
    }

    .hero {
        min-height: 90vh;
    }

    .contact-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
