/* =============================================
   IRONBOUND SOLUTIONS - MINIMAL WEBSITE
   Modern, Nike-inspired Design System
   Enhanced Visual Hierarchy + Depth & Warmth
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
    /* Background Colors - Warm Dark Palette */
    --bg-void: #000000;
    --bg-deep: #050505;
    --bg-base: #0a0a0a;
    --bg-elevated: #0f0f0f;
    --bg-surface: #141414;
    --bg-card: #181818;
    --bg-hover: #1c1c1c;
    --bg-active: #222222;

    /* Subtle Warm Tint (barely noticeable) */
    --bg-warm-1: #0a0908;
    --bg-warm-2: #0f0e0c;
    --bg-warm-3: #141310;

    /* Text Colors - Clear Hierarchy */
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-tertiary: #a8a8a8;
    --text-muted: #6b6b6b;
    --text-subtle: #4a4a4a;

    /* Text with opacity for overlays */
    --color-white: #ffffff;
    --color-white-90: rgba(255, 255, 255, 0.9);
    --color-white-70: rgba(255, 255, 255, 0.7);
    --color-white-50: rgba(255, 255, 255, 0.5);
    --color-white-30: rgba(255, 255, 255, 0.3);
    --color-white-15: rgba(255, 255, 255, 0.15);
    --color-white-10: rgba(255, 255, 255, 0.1);
    --color-white-05: rgba(255, 255, 255, 0.05);
    --color-white-03: rgba(255, 255, 255, 0.03);

    /* Accent Color - Warm Burnt Orange */
    --color-accent: #c45c36;
    --color-accent-light: #d96b42;
    --color-accent-dark: #a84d2d;
    --color-accent-glow: rgba(196, 92, 54, 0.15);

    /* Border Colors */
    --border-subtle: rgba(255, 255, 255, 0.04);
    --border-default: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.12);
    --border-active: rgba(255, 255, 255, 0.18);

    /* Typography */
    --font-primary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Font Sizes - Enhanced Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 5rem;
    --text-7xl: 6.5rem;
    --text-8xl: 8rem;
    --text-9xl: 10rem;

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

    /* Layout */
    --max-width: 1400px;
    --header-height: 90px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =============================================
   RESET & BASE STYLES
   ============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-tertiary);
    background-color: var(--bg-base);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Subtle Noise Texture Overlay - Premium Feel */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    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");
}

body.menu-open {
    overflow: hidden;
}

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

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

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

/* =============================================
   TYPOGRAPHY - ENHANCED HIERARCHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(var(--text-6xl), 12vw, var(--text-9xl));
    font-weight: 700;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(var(--text-4xl), 7vw, var(--text-6xl));
    font-weight: 600;
    letter-spacing: -0.03em;
}

h3 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: 500;
}

h4 {
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--text-secondary);
}

p {
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--text-tertiary);
    max-width: 600px;
    line-height: 1.8;
}

.text-large {
    font-size: var(--text-xl);
    line-height: 1.9;
}

.text-thin { font-weight: 300; }
.text-medium { font-weight: 500; }
.text-bold { font-weight: 700; }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Section Backgrounds - Alternating for Depth */
.section {
    padding: var(--space-5xl) 0;
    background-color: var(--bg-base);
    position: relative;
}

.section-alt {
    padding: var(--space-5xl) 0;
    background-color: var(--bg-elevated);
    position: relative;
}

.section-dark {
    padding: var(--space-5xl) 0;
    background-color: var(--bg-deep);
    position: relative;
}

.section-large {
    padding: var(--space-6xl) 0;
}

/* =============================================
   HEADER & NAVIGATION - GLASS MORPHISM
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.92);
    border-bottom-color: var(--border-default);
}

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

.logo {
    font-size: var(--text-2xl);
    font-weight: 700;
    letter-spacing: -0.04em;
    z-index: 1001;
    color: var(--text-primary);
}

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

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--transition-base);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

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

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    z-index: 1001;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
    border-radius: 1px;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(-5px);
}

.menu-toggle span:nth-child(2) {
    transform: translateY(5px);
}

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

.menu-toggle.active span:nth-child(2) {
    transform: translateY(-1px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-void);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
    z-index: 999;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .nav-link {
    font-size: var(--text-5xl);
    font-weight: 600;
    letter-spacing: -0.03em;
    text-transform: none;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.mobile-menu .nav-link:hover {
    color: var(--color-accent);
}

.mobile-menu.active .nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .nav-link:nth-child(4) { transition-delay: 0.25s; }

/* =============================================
   BUTTONS - REFINED HOVER STATES
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--border-hover);
    background: transparent;
    color: var(--text-secondary);
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--text-primary);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

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

.btn:hover {
    border-color: var(--text-primary);
    color: var(--bg-base);
}

.btn:hover::before {
    transform: translateY(0);
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-base);
    border-color: var(--text-primary);
}

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

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

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

.btn-accent::before {
    background: var(--color-accent);
}

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

.btn-large {
    padding: var(--space-lg) var(--space-3xl);
    font-size: var(--text-base);
}

.btn-ghost {
    border-color: var(--border-default);
    color: var(--text-muted);
}

.btn-ghost:hover {
    border-color: var(--border-active);
    color: var(--text-primary);
}

/* =============================================
   HERO SECTIONS - DEPTH WITH GRADIENT
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--header-height);
    position: relative;
    background: linear-gradient(
        180deg,
        var(--bg-void) 0%,
        var(--bg-deep) 50%,
        var(--bg-base) 100%
    );
}

/* Subtle radial glow for depth */
.hero::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 80%;
    background: radial-gradient(
        ellipse at center,
        rgba(196, 92, 54, 0.03) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--bg-elevated));
    pointer-events: none;
}

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

.hero-title {
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl));
    font-weight: 400;
    color: var(--text-tertiary);
    margin-bottom: var(--space-xl);
    max-width: 650px;
    line-height: 1.6;
}

.hero-cta {
    margin-top: var(--space-2xl);
}

/* Page Hero (smaller) */
.page-hero {
    min-height: auto;
    padding: var(--space-6xl) 0 var(--space-4xl);
    padding-top: calc(var(--header-height) + var(--space-5xl));
    background: linear-gradient(
        180deg,
        var(--bg-void) 0%,
        var(--bg-base) 100%
    );
}

.page-hero::before {
    display: none;
}

.page-hero::after {
    display: none;
}

.page-hero .hero-title {
    margin-bottom: var(--space-lg);
}

/* =============================================
   STATISTICS SECTION - ELEVATED CARD
   ============================================= */
.stats-section {
    background: var(--bg-elevated);
    padding: var(--space-5xl) 0;
    position: relative;
}

/* Top edge highlight */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--border-default) 20%,
        var(--border-hover) 50%,
        var(--border-default) 80%,
        transparent 100%
    );
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.stat-item {
    padding: var(--space-xl) var(--space-lg);
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background: linear-gradient(
        180deg,
        transparent,
        var(--border-default),
        transparent
    );
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: clamp(var(--text-6xl), 10vw, var(--text-8xl));
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    letter-spacing: -0.04em;
}

.stat-label {
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* =============================================
   SPLIT SECTIONS - ALTERNATING BACKGROUNDS
   ============================================= */
.split-section {
    background: var(--bg-base);
    position: relative;
}

.split-section-alt {
    background: var(--bg-elevated);
    position: relative;
}

/* Subtle top border on alternate sections */
.split-section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--border-subtle);
}

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

.split-reverse {
    direction: rtl;
}

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

.split-content {
    padding: var(--space-2xl) 0;
}

.split-content h2 {
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.split-content p {
    margin-bottom: var(--space-xl);
    color: var(--text-tertiary);
    font-size: var(--text-lg);
    line-height: 1.8;
}

.split-image {
    position: relative;
    overflow: hidden;
}

.split-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-accent);
    opacity: 0;
    z-index: 1;
    transition: opacity var(--transition-slow);
    mix-blend-mode: overlay;
}

.split-image:hover::before {
    opacity: 0.3;
}

.split-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1) brightness(0.95);
    transition: all var(--transition-slow);
}

.split-image:hover img {
    filter: grayscale(0%) contrast(1) brightness(1);
    transform: scale(1.02);
}

/* =============================================
   BOOKING CALENDAR SECTION
   ============================================= */
.booking-section {
    background: var(--bg-secondary);
}

.booking-widget {
    max-width: 960px;
    margin: 0 auto;
}

.booking-step {
    display: none;
}

.booking-step-active {
    display: flex;
    gap: var(--space-2xl);
}

#bookingStep2.booking-step-active,
#bookingStep3.booking-step-active {
    display: block;
}

/* Calendar Table */
.cal-table-wrap {
    flex: 1.4;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid rgba(255,255,255,0.06);
}

.cal-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.cal-month {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.cal-nav {
    background: none;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-nav:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(232, 99, 10, 0.08);
}

.cal-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 4px;
}

.cal-table thead th {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: var(--space-sm) 0;
    text-align: center;
    font-weight: 500;
}

.cal-cell {
    text-align: center;
    padding: 10px 4px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    vertical-align: top;
    position: relative;
}

.cal-cell:hover:not(.cal-disabled):not(.cal-empty) {
    background: rgba(232, 99, 10, 0.08);
}

.cal-day-num {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.cal-indicator {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.cal-open {
    color: #34d399;
}

.cal-partial {
    color: #fbbf24;
}

.cal-full {
    color: #ef4444;
}

.cal-disabled {
    cursor: not-allowed;
    opacity: 0.25;
}

.cal-disabled .cal-day-num {
    color: var(--text-muted);
}

.cal-empty {
    cursor: default;
}

.cal-today {
    outline: 2px solid var(--color-accent);
    outline-offset: -2px;
}

.cal-selected {
    background: var(--color-accent) !important;
}

.cal-selected .cal-day-num {
    color: #fff !important;
}

.cal-selected .cal-indicator {
    color: rgba(255,255,255,0.8) !important;
}

/* Legend */
.cal-legend {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.legend-available {
    background: #34d399;
}

.legend-partial {
    background: #fbbf24;
}

.legend-full {
    background: #ef4444;
}

/* Time Slots */
.time-slots-panel {
    flex: 1;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid rgba(255,255,255,0.06);
    max-height: 480px;
    overflow-y: auto;
}

.time-slots-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.time-slots-subtitle {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.time-slots-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.time-slot {
    padding: var(--space-sm) var(--space-lg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    background: none;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: var(--text-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.time-slot:hover:not(.time-slot-booked) {
    border-color: var(--color-accent);
    background: rgba(232, 99, 10, 0.08);
}

.time-slot-selected {
    border-color: var(--color-accent) !important;
    background: var(--color-accent) !important;
    color: #fff !important;
}

.time-slot-selected .slot-status {
    color: rgba(255,255,255,0.8) !important;
}

.slot-time {
    font-weight: 500;
}

.slot-status {
    font-size: var(--text-xs);
    font-weight: 500;
}

.slot-status-open {
    color: #34d399;
}

.slot-status-booked {
    color: #ef4444;
}

.time-slot-booked {
    opacity: 0.35;
    cursor: not-allowed;
}

/* Booking Form (Step 2) */
.booking-summary {
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.booking-summary .summary-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 99, 10, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-summary .summary-text h4 {
    color: var(--text-primary);
    margin-bottom: 4px;
}

.booking-summary .summary-text p {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.booking-form {
    max-width: 100%;
}

.booking-actions {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-primary);
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: var(--text-sm);
    transition: all var(--transition-base);
}

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

/* Confirmation (Step 3) */
.booking-confirmed {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
}

.confirmed-icon {
    margin-bottom: var(--space-xl);
}

.booking-confirmed h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.confirmed-details {
    color: var(--color-accent);
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.confirmed-meet {
    font-size: var(--text-sm);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.confirmed-note {
    color: var(--text-muted);
    margin-bottom: var(--space-2xl);
    font-size: var(--text-sm);
}

/* Responsive booking */
/* Booking responsive moved to main 768px block below */

/* =============================================
   QUOTE SECTION - WARM ELEVATED ZONE
   ============================================= */
.quote-section {
    padding: var(--space-6xl) 0;
    text-align: center;
    background: linear-gradient(
        180deg,
        var(--bg-surface) 0%,
        var(--bg-warm-2) 50%,
        var(--bg-surface) 100%
    );
    position: relative;
}

/* Subtle warm glow */
.quote-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(
        ellipse at center,
        rgba(196, 92, 54, 0.04) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: var(--space-3xl);
    left: 50%;
    transform: translateX(-50%);
    font-size: 15rem;
    font-weight: 700;
    color: var(--color-white-03);
    line-height: 1;
    pointer-events: none;
}

.quote {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: 400;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.quote-author {
    margin-top: var(--space-xl);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* =============================================
   SERVICES GRID - ELEVATED CARDS
   ============================================= */
.services-section {
    background: var(--bg-elevated);
    position: relative;
}

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

.service-item {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
    position: relative;
}

.service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--color-white-03) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-item:hover {
    border-color: var(--border-hover);
    background: var(--bg-card);
    transform: translateY(-4px);
}

.service-item:hover::before {
    opacity: 1;
}

.service-icon {
    margin-bottom: var(--space-xl);
    display: block;
    color: var(--text-muted);
    transition: color var(--transition-base), transform var(--transition-base);
}

.service-icon svg {
    width: 48px;
    height: 48px;
}

.service-item:hover .service-icon {
    color: var(--color-accent);
    transform: scale(1.25);
}

.service-title {
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.service-desc {
    font-size: var(--text-base);
    color: var(--text-tertiary);
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   PROCESS SECTION - NUMBERED STEPS
   ============================================= */
.process-section {
    background: var(--bg-base);
    position: relative;
}

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

.process-step {
    position: relative;
    padding: var(--space-xl);
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
}

.process-step:hover {
    border-color: var(--border-default);
    background: var(--bg-surface);
}

.process-number {
    font-size: var(--text-8xl);
    font-weight: 700;
    color: var(--bg-hover);
    line-height: 1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.05em;
    transition: color var(--transition-base);
}

.process-step:hover .process-number {
    color: var(--color-accent-dark);
}

.process-title {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.process-desc {
    font-size: var(--text-base);
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* =============================================
   VALUES SECTION
   ============================================= */
.values-section {
    background: var(--bg-elevated);
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--border-default),
        transparent
    );
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.value-item {
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
}

.value-item:hover {
    border-bottom-color: var(--color-accent);
}

.value-title {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    letter-spacing: -0.03em;
    transition: color var(--transition-base);
}

.value-item:hover .value-title {
    color: var(--color-accent);
}

.value-desc {
    font-size: var(--text-lg);
    color: var(--text-tertiary);
    max-width: 400px;
    line-height: 1.7;
}

/* =============================================
   ABOUT CONTENT
   ============================================= */
.about-section {
    background: var(--bg-base);
}

.about-content {
    max-width: 800px;
}

.about-content p {
    font-size: var(--text-xl);
    line-height: 2;
    margin-bottom: var(--space-xl);
    color: var(--text-tertiary);
}

.about-content p:first-of-type {
    font-size: var(--text-2xl);
    color: var(--text-secondary);
}

.about-image {
    margin: var(--space-5xl) 0;
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        var(--bg-base)
    );
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1) brightness(0.95);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
    background: var(--bg-elevated);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-subtle);
}

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

.contact-info h3 {
    margin-bottom: var(--space-3xl);
    color: var(--text-primary);
    font-size: var(--text-3xl);
}

.contact-detail {
    margin-bottom: var(--space-xl);
}

.contact-label {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.contact-value {
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--text-primary);
}

.contact-value a {
    transition: color var(--transition-base);
}

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

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-family: inherit;
    font-size: var(--text-base);
    color: var(--text-primary);
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    transition: all var(--transition-base);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--border-hover);
    background: var(--bg-card);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: var(--bg-card);
    box-shadow: 0 0 0 3px var(--color-accent-glow);
}

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

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

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    padding: var(--space-6xl) 0;
    text-align: center;
    background: linear-gradient(
        180deg,
        var(--bg-surface) 0%,
        var(--bg-warm-3) 50%,
        var(--bg-surface) 100%
    );
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--border-default),
        transparent
    );
}

/* Subtle warm glow */
.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(196, 92, 54, 0.05) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.cta-section h2 {
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.cta-section .hero-subtitle {
    margin: 0 auto var(--space-2xl);
    position: relative;
    z-index: 1;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    background: var(--bg-deep);
    border-top: 1px solid var(--border-subtle);
}

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

.footer-brand .footer-logo {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
    display: inline-block;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    max-width: 300px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.footer-col a {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-base);
}

.footer-col a:hover {
    color: var(--color-accent);
}

.footer-col p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-xs);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-subtle);
}

.footer-copyright {
    font-size: var(--text-xs);
    color: var(--text-subtle);
}

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

.footer-bottom-links a {
    font-size: var(--text-xs);
    color: var(--text-subtle);
    transition: color var(--transition-base);
}

.footer-bottom-links a:hover {
    color: var(--text-primary);
}

/* =============================================
   FULL WIDTH IMAGE
   ============================================= */
.full-width-image {
    width: 100%;
    height: 75vh;
    overflow: hidden;
    position: relative;
}

.full-width-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        var(--bg-base) 0%,
        transparent 15%,
        transparent 85%,
        var(--bg-base) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.full-width-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slower), transform var(--transition-slower);
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
[data-reveal] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="delay-1"] { transition-delay: 0.15s; }
[data-reveal="delay-2"] { transition-delay: 0.3s; }
[data-reveal="delay-3"] { transition-delay: 0.45s; }
[data-reveal="delay-4"] { transition-delay: 0.6s; }

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    :root {
        --space-5xl: 8rem;
        --space-6xl: 10rem;
    }

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

    .split-reverse {
        direction: ltr;
    }

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

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

    .service-item {
        padding: var(--space-2xl);
    }

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

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

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

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --space-4xl: 4rem;
        --space-5xl: 5rem;
        --space-6xl: 6rem;
    }

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

    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero-title {
        font-size: clamp(2.8rem, 12vw, 4.5rem);
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }

    .hero-cta {
        flex-direction: column;
        gap: var(--space-md);
    }

    /* Stats - horizontal scroll row */
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
    }

    .stat-item {
        padding: var(--space-lg) var(--space-xs);
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: var(--text-4xl);
    }

    .stat-label {
        font-size: 9px;
    }

    /* Split sections */
    .split {
        grid-template-columns: 1fr !important;
        gap: var(--space-xl);
    }

    .split-reverse {
        direction: ltr;
    }

    .split-content {
        padding: 0;
    }

    .split-content h2 {
        font-size: var(--text-3xl);
    }

    .split-image img {
        height: 280px;
        border-radius: var(--radius-lg);
        filter: grayscale(60%) contrast(1.05) brightness(0.9);
    }

    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-lg);
    }

    .service-item {
        padding: var(--space-xl);
    }

    .service-title {
        font-size: var(--text-xl);
    }

    /* Process grid */
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .process-number {
        font-size: var(--text-5xl);
    }

    .process-step {
        padding: var(--space-lg);
    }

    /* Values grid */
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-lg);
    }

    /* Contact grid - stack */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-2xl);
    }

    .contact-info h3 {
        font-size: var(--text-2xl);
        margin-bottom: var(--space-xl);
    }

    .contact-value {
        font-size: var(--text-xl);
    }

    /* Forms */
    .contact-form,
    .booking-form {
        gap: var(--space-lg);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--text-sm);
    }

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

    /* Booking calendar */
    .booking-widget {
        max-width: 100%;
    }

    .booking-step-active {
        flex-direction: column !important;
    }

    .cal-table-wrap {
        padding: var(--space-md);
    }

    .cal-table-header {
        margin-bottom: var(--space-md);
    }

    .cal-month {
        font-size: var(--text-lg);
    }

    .cal-cell {
        padding: 8px 2px;
    }

    .cal-day-num {
        font-size: var(--text-xs);
    }

    .cal-indicator {
        font-size: 8px;
    }

    .cal-legend {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }

    .time-slots-panel {
        max-height: 300px;
        padding: var(--space-md);
    }

    .time-slot {
        padding: var(--space-sm) var(--space-md);
    }

    .booking-summary {
        padding: var(--space-md);
        flex-direction: column;
        text-align: center;
    }

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

    .booking-confirmed {
        padding: var(--space-2xl) var(--space-md);
    }

    /* Full width images */
    .full-width-image {
        height: 40vh;
    }

    .about-image img {
        height: 250px;
    }

    /* Quote */
    .quote-section::before {
        font-size: 6rem;
    }

    .quote {
        font-size: var(--text-2xl);
    }

    /* CTA */
    .cta-section h2 {
        font-size: var(--text-4xl);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 1.25rem;
        --space-xl: 1.75rem;
        --space-2xl: 2.5rem;
        --space-3xl: 3rem;
        --space-4xl: 3.5rem;
        --space-5xl: 4rem;
        --space-6xl: 4.5rem;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .hero-title {
        font-size: clamp(2.2rem, 11vw, 3.5rem);
    }

    .btn-large {
        padding: var(--space-sm) var(--space-xl);
        font-size: var(--text-sm);
        width: 100%;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stat-item {
        padding: var(--space-md) 0;
        border-bottom: 1px solid var(--border-subtle);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: var(--text-5xl);
    }

    .stat-label {
        font-size: var(--text-xs);
    }

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

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

    .process-number {
        font-size: var(--text-4xl);
    }

    .mobile-menu .nav-link {
        font-size: var(--text-3xl);
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .contact-info h3 {
        font-size: var(--text-xl);
    }

    .contact-value {
        font-size: var(--text-lg);
    }

    .cal-nav {
        width: 32px;
        height: 32px;
    }

    .cal-table thead th {
        font-size: 9px;
    }
}
