/* ========================================
   HS Torre Forte — Light Theme Design System
   Premium Landing Page
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    /* Light Theme Core */
    --white-pure: #ffffff;
    --white-soft: #fafafa;
    --white-warm: #f7f5f2;
    --pearl-100: #f0ece7;
    --pearl-200: #e5dfd8;
    --pearl-300: #d1c9be;

    /* Neutrals */
    --gray-900: #1a1a1a;
    --gray-800: #2d2d2d;
    --gray-700: #404040;
    --gray-600: #555555;
    --gray-500: #777777;
    --gray-400: #999999;
    --gray-300: #bbbbbb;
    --gray-200: #dddddd;
    --gray-100: #eeeeee;

    /* Gold / Bronze Accent */
    --gold-900: #6b4f1d;
    --gold-700: #8b6914;
    --gold-600: #a07d2e;
    --gold-500: #b8943c;
    --gold-400: #c8a54e;
    --gold-300: #d4b76a;
    --gold-200: #e2cc94;
    --gold-100: #f0e4c4;
    --gold-accent: #b8943c;
    --gold-hover: #a07d2e;

    /* Functional Tokens */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-400);
    --surface-main: var(--white-pure);
    --surface-alt: var(--white-warm);
    --surface-card: var(--white-pure);
    --accent: var(--gold-accent);
    --accent-hover: var(--gold-hover);
    --accent-light: var(--gold-100);
    --border-light: var(--gray-200);
    --border-subtle: var(--pearl-200);

    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

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

    /* Transitions */
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.7s;

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

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.06);
    --shadow-gold: 0 8px 30px rgba(184, 148, 60, 0.25);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: var(--surface-main);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* --- Highlight Text --- */
.highlight {
    color: var(--accent);
}

/* --- Reveal Animation Base --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration-slow) var(--ease-smooth),
                transform var(--duration-slow) var(--ease-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.reveal:nth-child(2) { transition-delay: 0.15s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.45s; }


/* ========================================
   NAVIGATION
   ======================================== */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all var(--duration-normal) var(--ease-smooth);
    background: transparent;
}

.nav-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(184, 148, 60, 0.12);
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.nav-logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.nav-header.scrolled .nav-logo-img {
    height: 46px;
}

/* Keep text logo styles as fallback */
.logo-hs {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--accent);
}

.logo-divider {
    width: 1px;
    height: 24px;
    background: var(--gray-300);
}

.logo-text {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-800);
}

/* Hero override: white logo text on dark background */
.nav-header:not(.scrolled) .logo-text {
    color: var(--white-pure);
}

.nav-header:not(.scrolled) .logo-divider {
    background: rgba(255,255,255,0.3);
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    position: relative;
    padding: 0.5rem 0;
}

.nav-header:not(.scrolled) .nav-link {
    color: rgba(255,255,255,0.75);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--duration-normal) var(--ease-smooth);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-header:not(.scrolled) .nav-link:hover {
    color: var(--white-pure);
}

.nav-link:hover::after,
.nav-link.active-link::after {
    width: 100%;
}

.nav-item-mobile {
    display: none;
}

.nav-cta {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-pure);
    background: var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: all var(--duration-fast) ease;
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
    color: var(--white-pure);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: all var(--duration-normal) var(--ease-smooth);
    transform-origin: center;
}

.nav-header:not(.scrolled) .nav-hamburger span {
    background: var(--white-pure);
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('assets/hero-interior.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(26, 26, 26, 0.65) 0%,
        rgba(26, 26, 26, 0.45) 40%,
        rgba(107, 79, 29, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: var(--space-3xl) var(--space-lg);
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--space-lg);
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--gold-300);
}

.badge-text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-300);
}

.hero-headline {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    color: var(--white-pure);
}

.hero-headline .highlight {
    color: var(--gold-300);
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    max-width: 640px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
}

.hero-sub em {
    font-style: normal;
    color: var(--gold-300);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: all var(--duration-normal) var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: var(--white-pure);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-hover);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--duration-normal) var(--ease-smooth);
    z-index: 0;
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

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

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 1.1rem 2rem;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 1;
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-300);
    animation: scrollPulse 2s var(--ease-smooth) infinite;
}

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


/* ========================================
   SECTION SHARED STYLES
   ======================================== */
.section-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-sm);
    padding: 0.4rem 1.2rem;
    border: 1px solid var(--accent-light);
    border-radius: 4px;
    background: rgba(184, 148, 60, 0.06);
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
    color: var(--gray-900);
}

.section-body {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}


/* ========================================
   DOBRA 2 — FURNITURE SECTION
   ======================================== */
.furniture-section {
    padding: var(--space-3xl) 0;
    background: var(--surface-main);
    position: relative;
}

.furniture-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.split-reverse {
    direction: rtl;
}

.split-reverse > * {
    direction: ltr;
}

.split-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.split-image:hover img {
    transform: scale(1.03);
}

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--accent);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.4;
}

.image-accent.accent-left {
    right: auto;
    left: -20px;
}

.split-content .section-title {
    text-align: left;
}

.highlight-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--accent-light);
    border-left: 3px solid var(--accent);
    border-radius: 0 6px 6px 0;
    margin-bottom: var(--space-lg);
}

.highlight-box svg {
    color: var(--accent);
    flex-shrink: 0;
}

.highlight-box span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-900);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-warm);
    border: 1px solid var(--pearl-200);
    border-radius: 10px;
    color: var(--accent);
    transition: all var(--duration-fast) ease;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-list li:hover .feature-icon {
    background: var(--accent-light);
    border-color: var(--accent);
}

.feature-list strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.15rem;
}

.feature-list p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.6;
}


/* ========================================
   DOBRA 3 — RENOVATION SECTION
   ======================================== */
.renovation-section {
    padding: var(--space-3xl) 0;
    background: var(--surface-alt);
}

.stats-row {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--border-subtle);
}

.stat-block {
    text-align: center;
    flex: 1;
}

.stat-block .stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    display: inline;
}

.stat-block .stat-suffix {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-block .stat-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-top: 0.5rem;
}

.stat-divider-v {
    width: 1px;
    height: 50px;
    background: var(--border-subtle);
}


/* ========================================
   PORTFOLIO SECTION
   ======================================== */
.portfolio-section {
    padding: var(--space-3xl) 0;
    background: var(--surface-main);
    position: relative;
}

.section-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: var(--space-sm);
    grid-auto-flow: dense;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--duration-normal) var(--ease-smooth);
}

.portfolio-item:hover {
    box-shadow: var(--shadow-lg);
}

.portfolio-item.portfolio-wide {
    grid-column: span 2;
}

.portfolio-item.portfolio-tall {
    grid-row: span 2;
}

.portfolio-item.portfolio-large {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.portfolio-item:hover img {
    transform: scale(1.06);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 26, 26, 0.85) 0%,
        rgba(26, 26, 26, 0.2) 40%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-smooth);
}

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

.portfolio-cat {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-300);
    margin-bottom: 0.4rem;
}

.portfolio-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white-pure);
}


/* ========================================
   DOBRA 4 — FOUNDERS SECTION
   ======================================== */
.founders-section {
    padding: var(--space-3xl) 0;
    background: var(--surface-main);
}

.founders-grid {
    display: flex;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.founder-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    align-items: stretch;
    background: var(--white-pure);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--duration-normal) var(--ease-smooth);
    box-shadow: var(--shadow-md);
}

.founder-card.single-founder {
    width: 100%;
}

.founder-card:hover {
    border-color: var(--accent-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.founder-image-wrap {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

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

.founder-card:hover .founder-img {
    transform: scale(1.05);
}

.founder-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.15) 0%, transparent 40%);
}

.founder-info {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-role {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
}

.founder-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0.5rem 0;
    letter-spacing: -0.01em;
    color: var(--gray-900);
}

.founder-exp {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-light);
}

.exp-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.exp-label {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.founder-bio {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.founder-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    color: var(--gray-500);
    transition: all var(--duration-fast) ease;
}

.founder-card:hover .skill-tag {
    border-color: var(--accent-light);
    color: var(--accent);
    background: rgba(184, 148, 60, 0.04);
}


/* ========================================
   DOBRA 5 — TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: var(--space-3xl) 0;
    background: var(--surface-alt);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 148, 60, 0.04), transparent 70%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--white-pure);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: var(--space-xl) var(--space-lg);
    position: relative;
    transition: all var(--duration-normal) var(--ease-smooth);
    box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold-300));
    border-radius: 12px 12px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.testimonial-card:hover {
    border-color: var(--accent-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

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

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--space-md);
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.testimonial-quote {
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
}

.author-project {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--gray-400);
}


/* ========================================
   DOBRA 6 — CONTACT SECTION
   ======================================== */
.contact-section {
    padding: var(--space-3xl) 0;
    background: var(--pearl-100);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: 10px;
    color: var(--accent);
}

.contact-detail-item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.1rem;
}

.contact-detail-item span,
.contact-detail-item a {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.contact-detail-item a:hover {
    color: var(--accent);
}

/* Contact Form */
.contact-form {
    background: var(--white-pure);
    border: 1px solid var(--pearl-200);
    border-radius: 12px;
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.4rem;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-primary);
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--gray-800);
    background: var(--white-warm);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    transition: all var(--duration-fast) ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: var(--white-pure);
    box-shadow: 0 0 0 3px rgba(184, 148, 60, 0.1);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}


/* ========================================
   FOOTER
   ======================================== */
.footer-section {
    background: var(--gray-900);
    color: var(--white-pure);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    padding: var(--space-2xl) 0 var(--space-xl);
}

.footer-logo .logo-text {
    color: var(--white-pure);
}

.footer-logo .logo-divider {
    background: rgba(255,255,255,0.2);
}

.footer-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2);
}

.footer-tagline {
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    margin-top: 0.75rem;
    letter-spacing: 0.05em;
}

.footer-area-text {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    margin-top: 0.35rem;
}

.footer-top h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-300);
    margin-bottom: var(--space-md);
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links-col a {
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    transition: color var(--duration-fast) ease;
}

.footer-links-col a:hover {
    color: var(--white-pure);
}

.footer-contact-col p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.4rem;
}

.footer-contact-col a {
    color: rgba(255,255,255,0.6);
}

.footer-contact-col a:hover {
    color: var(--white-pure);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    transition: all var(--duration-fast) ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(184, 148, 60, 0.08);
    transform: translateY(-2px);
}

.footer-bottom {
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}


/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: var(--white-pure);
    color: var(--gray-800);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--duration-normal) var(--ease-smooth);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--white-pure);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }
    .nav-link {
        font-size: 0.72rem;
        letter-spacing: 0.05em;
    }
    .nav-cta.nav-cta-desktop {
        padding: 0.6rem 1rem;
        font-size: 0.72rem;
    }

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

    .split-reverse {
        direction: ltr;
    }

    .split-image img {
        height: 400px;
    }

    .founders-grid {
        display: block;
    }

    .founder-card {
        grid-template-columns: 1fr;
    }

    .founder-card.single-founder {
        max-width: 600px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 260px;
    }

    .portfolio-item.portfolio-wide,
    .portfolio-item.portfolio-large {
        grid-column: span 2;
    }

    .portfolio-item.portfolio-tall,
    .portfolio-item.portfolio-large {
        grid-row: span 1;
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --space-lg: 1.5rem;
        --space-xl: 2.5rem;
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }

    /* Mobile Nav */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-lg);
        transition: right var(--duration-normal) var(--ease-smooth);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links.active .nav-link {
        color: var(--gray-800);
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-cta.nav-cta-desktop {
        display: none;
    }

    .nav-item-mobile {
        display: block;
        margin-top: 1rem;
    }
    
    .nav-item-mobile .nav-cta {
        display: inline-block;
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }

    .nav-hamburger {
        display: flex;
    }

    /* When mobile menu is open, always show dark hamburger */
    .nav-hamburger.active span {
        background: var(--gray-800);
    }

    /* Hero Mobile */
    .hero-scroll-indicator {
        display: none;
    }

    /* Split sections */
    .split-image img {
        height: 300px;
    }

    .image-accent {
        display: none;
    }

    /* Stats */
    .stats-row {
        flex-direction: column;
        gap: var(--space-md);
    }

    .stat-divider-v {
        width: 40px;
        height: 1px;
    }

    /* Founders */
    .founder-card {
        grid-template-columns: 1fr;
    }

    .founder-image-wrap {
        min-height: 300px;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .portfolio-item.portfolio-wide,
    .portfolio-item.portfolio-large {
        grid-column: span 1;
    }

    .portfolio-item.portfolio-tall,
    .portfolio-item.portfolio-large {
        grid-row: span 1;
    }

    .portfolio-overlay {
        opacity: 1;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand-col .nav-logo {
        justify-content: center;
    }

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

    /* WhatsApp */
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 54px;
        height: 54px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }

    .hero-headline {
        font-size: 2rem;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.78rem;
    }

    .contact-form {
        padding: var(--space-lg);
    }

    .founder-image-wrap {
        min-height: 250px;
    }
}

/* ========================================
   GDPR COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: -100px; /* Hidden by default */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-subtle);
    box-shadow: 0 -5px 25px rgba(0,0,0,0.05);
    z-index: 9999;
    padding: 1.25rem 0;
    transition: transform 0.6s var(--ease-smooth);
}

.cookie-banner.active {
    transform: translateY(-100px); /* Slide up */
    bottom: 0;
}

.cookie-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.cookie-content p {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 500;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
}
