/* ═══════════════════════════════════════════════════
   Restaurant.Ink — Dark Luxury Redesign v2.0
   Design: Warm editorial dark theme
═══════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ─── Design Tokens ──────────────────────────────── */
:root {
    /* Colors */
    --bg:           #0a0908;
    --bg-elevated:  #121110;
    --surface:      #1a1816;
    --surface-2:    #242220;
    --text:         #ede8e0;
    --text-muted:   #7a756e;
    --text-dim:     #4a4640;
    --accent:       #c8905a;
    --accent-light: #d9a56e;
    --accent-dark:  #a87040;
    --accent-2:     #a55b48;
    --border:       rgba(237, 232, 224, 0.07);
    --border-mid:   rgba(237, 232, 224, 0.12);
    --border-accent:rgba(200, 144, 90, 0.3);

    /* Typography */
    --font-display: 'Space Grotesk', -apple-system, sans-serif;
    --font-serif:   'DM Serif Display', Georgia, serif;
    --font-body:    'Inter', -apple-system, sans-serif;

    /* Spacing */
    --gap-xs:    0.5rem;
    --gap-sm:    1rem;
    --gap-md:    1.5rem;
    --gap-lg:    2rem;
    --gap-xl:    3rem;
    --gap-2xl:   5rem;
    --gap-3xl:   8rem;

    /* Container */
    --container: 1280px;
    --container-pad: 2rem;

    /* Radius */
    --r-sm:  6px;
    --r-md:  12px;
    --r-lg:  20px;
    --r-xl:  32px;
    --r-full:9999px;

    /* Transitions */
    --ease:      cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out:  cubic-bezier(0, 0, 0.2, 1);
    --ease-in:   cubic-bezier(0.4, 0, 1, 1);
    --t-fast:    0.15s;
    --t-mid:     0.3s;
    --t-slow:    0.5s;

    /* Shadows */
    --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
    --shadow-md:  0 4px 16px rgba(0,0,0,0.5);
    --shadow-lg:  0 12px 40px rgba(0,0,0,0.6);
    --shadow-accent: 0 8px 32px rgba(200, 144, 90, 0.2);
}

/* ─── Base ───────────────────────────────────────── */
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Font loading override */
.fonts-loaded body {
    font-family: var(--font-body);
}
.fonts-loaded h1, .fonts-loaded h2, .fonts-loaded h3,
.fonts-loaded h4, .fonts-loaded h5, .fonts-loaded h6 {
    font-family: var(--font-display);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
}

p { color: var(--text-muted); }

/* Accessibility */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    background: var(--accent);
    color: var(--bg);
    padding: 0.75rem 1.5rem;
    border-radius: var(--r-sm);
    font-weight: 600;
}
.skip-to-main:focus { left: 1rem; top: 1rem; }

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

/* ─── Buttons ────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    padding: 0.8rem 1.5rem;
    border-radius: var(--r-full);
    border: 1.5px solid var(--accent);
    transition: background var(--t-mid) var(--ease),
                color var(--t-mid) var(--ease),
                transform var(--t-fast) var(--ease),
                box-shadow var(--t-mid) var(--ease);
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    padding: 0.8rem 1.5rem;
    border-radius: var(--r-full);
    border: 1.5px solid var(--border-mid);
    transition: border-color var(--t-mid) var(--ease),
                color var(--t-mid) var(--ease),
                transform var(--t-fast) var(--ease);
    cursor: pointer;
    white-space: nowrap;
}
.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px);
}

.btn-large { padding: 1rem 2rem; font-size: 1rem; }

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200, 144, 90, 0.1);
    border: 1px solid var(--border-accent);
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: var(--r-full);
    margin-bottom: 1.25rem;
}

/* Section Headers */
.section-header {
    margin-bottom: var(--gap-xl);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--text);
    margin-bottom: 1rem;
}
.section-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 560px;
}

/* Fade-in animations */
.animate-fade-in {
    animation: fadeInUp 0.6s var(--ease-out) both;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── Navigation ─────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--t-slow) var(--ease),
                backdrop-filter var(--t-slow) var(--ease),
                border-color var(--t-slow) var(--ease);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(10, 9, 8, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: var(--border);
}

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
    transition: color var(--t-fast) var(--ease);
}
.nav-logo:hover { color: var(--accent); }
.logo-dot { color: var(--accent); }

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

.nav-link {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: -0.01em;
    transition: color var(--t-fast) var(--ease);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--t-mid) var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--text); }

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

.nav-cta { font-size: 0.825rem; padding: 0.6rem 1.25rem; }
.nav-cta.btn-primary { display: flex; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    border-radius: var(--r-sm);
    transition: background var(--t-fast) var(--ease);
}
.nav-toggle:hover { background: var(--surface); }
.bar {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--t-mid) var(--ease), opacity var(--t-mid) var(--ease);
}

/* ─── Hero ───────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8rem var(--container-pad) 5rem;
}

/* Radial glow behind hero */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,144,90,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-2xl);
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}

/* Eyebrow */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.eyebrow-pulse {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: var(--text);
}
.hero-title-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 480px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: var(--gap-sm);
    border-top: 1px solid var(--border);
    margin-top: var(--gap-xs);
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 var(--gap-md) 0 0;
}
.hero-stat:first-child { padding-left: 0; }
.stat-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text);
}
.hero-stat .stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
    margin: 0 var(--gap-md);
    flex-shrink: 0;
}

/* Hero Visual — Desktop Image Grid */
.hero-visual {
    display: block;
}
.hero-visual-mobile { display: none; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    height: 540px;
}
.grid-item {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--surface);
}
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
    transform: scale(1.02);
}
.grid-item:hover img { transform: scale(1.06); }

.item-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}
.item-2 { grid-column: 2; grid-row: 1; }
.item-3 { grid-column: 2; grid-row: 2; }

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-dim), transparent);
    animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
    0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
    40%  { opacity: 1; }
    100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

/* Mobile Carousel (hidden on desktop) */
.mobile-image-carousel { display: none; }

/* ─── Marquee ────────────────────────────────────── */
.marquee-section {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
    padding: 1rem 0;
}
.marquee-inner {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    will-change: transform;
}
.marquee-track span {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0 1.5rem;
    transition: color var(--t-fast) var(--ease);
}
.marquee-track span:hover { color: var(--accent); }
.marquee-dot { color: var(--accent) !important; padding: 0 0.25rem !important; }

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

/* ─── Services ───────────────────────────────────── */
.services-section {
    padding: var(--gap-3xl) var(--container-pad);
    background: var(--bg);
}
.services-container {
    max-width: var(--container);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
}

.service-card {
    background: var(--bg-elevated);
    padding: var(--gap-xl) var(--gap-lg);
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    transition: background var(--t-mid) var(--ease);
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--gap-lg);
    right: var(--gap-lg);
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--t-mid) var(--ease-out);
    transform-origin: left;
}
.service-card:hover { background: var(--surface); }
.service-card:hover::after { transform: scaleX(1); }

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--gap-xs);
}
.service-number {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    opacity: 0.7;
}
.service-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    background: rgba(200, 144, 90, 0.1);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    transition: background var(--t-mid) var(--ease),
                transform var(--t-mid) var(--ease);
}
.service-card:hover .service-icon {
    background: rgba(200, 144, 90, 0.18);
    transform: scale(1.05);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--text);
}

.service-description {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-muted);
    flex: 1;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: var(--gap-xs);
}
.service-tags span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    background: var(--surface-2);
    border: 1px solid var(--border);
    padding: 0.25rem 0.6rem;
    border-radius: var(--r-full);
    transition: color var(--t-fast) var(--ease),
                border-color var(--t-fast) var(--ease);
}
.service-card:hover .service-tags span {
    color: var(--text-muted);
    border-color: var(--border-mid);
}

/* ─── Work / Portfolio ───────────────────────────── */
.work-section {
    padding: var(--gap-3xl) var(--container-pad);
    background: var(--bg-elevated);
}
.work-container {
    max-width: var(--container);
    margin: 0 auto;
}

/* Featured Project */
.projects-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
}

.featured-project {
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: border-color var(--t-mid) var(--ease),
                box-shadow var(--t-mid) var(--ease);
}
.featured-project:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-accent);
}
.featured-project .project-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.project-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--surface-2);
}
.featured-project .project-image-container {
    aspect-ratio: unset;
    min-height: 420px;
}
.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}
.featured-project:hover .project-image,
.project-card:hover .project-image { transform: scale(1.04); }

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 9, 8, 0.35);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--t-mid) var(--ease);
}
.featured-project:hover .project-overlay,
.project-card:hover .project-overlay { opacity: 1; }

.project-badge {
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: var(--r-full);
}
.project-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(237, 232, 224, 0.15);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text);
    transition: background var(--t-fast) var(--ease),
                transform var(--t-fast) var(--ease);
}
.project-card:hover .project-arrow { transform: rotate(45deg); }

.project-details {
    padding: var(--gap-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--gap-sm);
}
.featured-project .project-details { padding: var(--gap-2xl); }

.project-meta {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
}
.project-category {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}
.project-year {
    font-size: 0.72rem;
    color: var(--text-dim);
    font-weight: 500;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.035em;
    color: var(--text);
    line-height: 1.2;
}
.featured-project .project-title { font-size: 2rem; }

.project-description {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--gap-xs);
}
.tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--surface-2);
    border: 1px solid var(--border);
    padding: 0.3rem 0.75rem;
    border-radius: var(--r-full);
}

/* Project Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
}
.project-card {
    background: var(--bg-elevated);
    transition: background var(--t-mid) var(--ease);
}
.project-card:hover { background: var(--surface); }
.project-card .project-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.project-card .project-image-container {
    aspect-ratio: 4/3;
    min-height: unset;
}
.project-card .project-details {
    padding: var(--gap-md);
    gap: 0.5rem;
}
.project-card .project-title { font-size: 1rem; }
.project-card .project-description { font-size: 0.825rem; }

/* ─── Process ────────────────────────────────────── */
.process-section {
    padding: var(--gap-3xl) var(--container-pad);
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.process-header-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-2xl);
    align-items: end;
    margin-bottom: var(--gap-xl);
    padding-bottom: var(--gap-xl);
    border-bottom: 1px solid var(--border);
}
.process-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 42ch;
    align-self: end;
}

/* List of steps */
.process-list {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--gap-3xl);
}

.process-item {
    display: grid;
    grid-template-columns: 80px 1fr 120px;
    gap: var(--gap-xl);
    align-items: start;
    padding: var(--gap-2xl) 0;
    border-bottom: 1px solid var(--border);
    transition: background var(--t-mid) var(--ease);
    position: relative;
}
.process-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(200, 144, 90, 0.03);
    opacity: 0;
    transition: opacity var(--t-mid) var(--ease);
    pointer-events: none;
    border-radius: var(--r-md);
}
.process-item:hover::before { opacity: 1; }
.process-item:first-child { border-top: 1px solid var(--border); }

.process-num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 3rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.35;
    transition: opacity var(--t-mid) var(--ease);
    padding-top: 4px;
}
.process-item:hover .process-num { opacity: 0.75; }

.process-body {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}

.process-icon-title {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
}
.process-icon-title i {
    font-size: 1.1rem;
    color: var(--accent);
}

.process-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text);
}

.process-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 56ch;
}

.process-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.deliverable-tag {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px 12px;
    transition: border-color var(--t-fast) var(--ease),
                color var(--t-fast) var(--ease);
}
.process-item:hover .deliverable-tag {
    border-color: rgba(200,144,90,0.3);
    color: var(--text);
}

.process-aside {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 8px;
}
.process-duration {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(200, 144, 90, 0.08);
    border: 1px solid rgba(200, 144, 90, 0.2);
    border-radius: 100px;
    padding: 6px 14px;
    white-space: nowrap;
}

.process-cta {
    display: flex;
    align-items: center;
    gap: var(--gap-lg);
}
.process-cta-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ─── Contact ────────────────────────────────────── */
.contact-section {
    padding: var(--gap-3xl) var(--container-pad);
    background: var(--bg-elevated);
}
.contact-container {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xl);
}

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

.contact-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1rem;
}
.contact-title-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}
.contact-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--gap-md);
    padding: var(--gap-lg) var(--gap-xl);
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    transition: background var(--t-mid) var(--ease),
                border-color var(--t-mid) var(--ease);
    cursor: pointer;
}
.contact-method:last-child { border-bottom: none; }
.contact-method:hover { background: var(--surface); }

.method-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: rgba(200, 144, 90, 0.1);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: background var(--t-mid) var(--ease),
                transform var(--t-mid) var(--ease);
}
.contact-method:hover .method-icon {
    background: rgba(200, 144, 90, 0.18);
    transform: scale(1.05);
}

.method-content { flex: 1; }
.method-content h3 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 2px;
}
.method-content p {
    font-size: 0.825rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.method-action {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.01em;
}

/* Contact Main */
.contact-main {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--gap-2xl);
    align-items: start;
}

/* Contact Form */
.contact-form-container {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
}

.form-header {
    padding: var(--gap-xl) var(--gap-xl) 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: var(--gap-lg);
    margin-bottom: var(--gap-lg);
}
.form-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 0.4rem;
}
.form-header p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.contact-form {
    padding: 0 var(--gap-xl) var(--gap-xl);
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
}

.form-section { display: flex; flex-direction: column; gap: var(--gap-md); }
.form-section-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-field label {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--text-muted);
}
.required { color: var(--accent); }

.form-field input,
.form-field select,
.form-field textarea {
    background: var(--bg-elevated);
    border: 1px solid var(--border-mid);
    border-radius: var(--r-md);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    transition: border-color var(--t-mid) var(--ease),
                background var(--t-mid) var(--ease),
                box-shadow var(--t-mid) var(--ease);
    outline: none;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-dim); }

.form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a756e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.form-field select option {
    background: var(--surface);
    color: var(--text);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--accent);
    background: var(--surface);
    box-shadow: 0 0 0 3px rgba(200, 144, 90, 0.1);
}
.form-field.focused input,
.form-field.focused textarea { border-color: var(--accent); }

.form-field textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
    position: sticky;
    top: 100px;
}

.team-intro {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: var(--gap-xl);
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}
.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-accent);
    flex-shrink: 0;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-info h4 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text);
    margin-bottom: 2px;
}
.team-info > p {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.75rem;
}
.team-info blockquote {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-muted);
    border-left: 2px solid var(--border-accent);
    padding-left: var(--gap-sm);
    font-style: italic;
}

.contact-stats {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: var(--gap-xl);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-sm);
    text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text);
}
.stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.sidebar-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: var(--gap-md);
    background: rgba(200, 144, 90, 0.06);
    border: 1px solid var(--border-accent);
    border-radius: var(--r-lg);
}
.sidebar-note i {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.sidebar-note p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* ─── Footer ─────────────────────────────────────── */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: var(--gap-2xl) var(--container-pad) var(--gap-xl);
}
.footer-container {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-2xl);
    align-items: start;
    padding-bottom: var(--gap-xl);
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text);
    margin-bottom: 0.75rem;
}
.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 320px;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xl);
}
.footer-nav-group { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav-group h5 {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}
.footer-link {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color var(--t-fast) var(--ease);
}
.footer-link:hover { color: var(--text); }
.footer-location {
    font-size: 0.875rem;
    color: var(--text-dim);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-copyright span {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
    animation: status-pulse 3s ease-in-out infinite;
}
@keyframes status-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}
.status-indicator span {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

/* ─── Back to Top ────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border-mid);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity var(--t-mid) var(--ease),
                transform var(--t-mid) var(--ease),
                background var(--t-fast) var(--ease),
                border-color var(--t-fast) var(--ease);
    pointer-events: none;
}
.back-to-top:hover {
    background: var(--surface-2);
    border-color: var(--accent);
    color: var(--accent);
}
.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* ─── Mobile Nav (overrides the JS-injected style) ── */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 72px !important;
        flex-direction: column !important;
        background-color: rgba(10, 9, 8, 0.97) !important;
        backdrop-filter: blur(24px) !important;
        width: 100% !important;
        text-align: center !important;
        transition: left 0.3s var(--ease) !important;
        box-shadow: 0 20px 40px rgba(0,0,0,0.5) !important;
        padding: 2rem 0 !important;
        border-top: 1px solid var(--border) !important;
        gap: 0.25rem !important;
    }
    .nav-menu.active { left: 0 !important; }
    .nav-menu a {
        padding: 1rem !important;
        display: block !important;
        font-size: 1.1rem !important;
        color: var(--text-muted) !important;
    }
    .nav-menu a:hover { color: var(--text) !important; }
    .nav-toggle { display: flex !important; }
    .nav-cta.btn-primary { display: none; }

    .nav-toggle.active .bar:nth-child(2) { opacity: 0; }
    .nav-toggle.active .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-toggle.active .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
    :root { --gap-3xl: 5rem; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-header-row { grid-template-columns: 1fr; gap: var(--gap-xl); }
    .process-item { grid-template-columns: 60px 1fr 100px; gap: var(--gap-lg); }
    .contact-hero { grid-template-columns: 1fr; }
    .contact-main { grid-template-columns: 1fr; }
    .contact-sidebar { position: static; }
}

@media (max-width: 768px) {
    :root {
        --container-pad: 1.25rem;
        --gap-3xl: 4rem;
        --gap-2xl: 3rem;
    }

    /* Hero */
    .hero {
        padding: 6rem var(--container-pad) 4rem;
        min-height: auto;
    }
    .hero-container { grid-template-columns: 1fr; gap: var(--gap-xl); }
    .hero-visual { display: none; }
    .hero-visual-mobile { display: block; margin: var(--gap-md) 0; }
    .hero-visual-mobile .hero-grid { height: 260px; }
    .mobile-image-carousel { display: block; margin: var(--gap-md) 0; }

    .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
    .hero-stats { flex-wrap: wrap; gap: var(--gap-md); }
    .hero-stat-divider { display: none; }
    .hero-stat { padding: 0; }

    /* Nav */
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; }

    /* Work */
    .projects-grid { grid-template-columns: 1fr 1fr; }

    /* Contact */
    .form-grid { grid-template-columns: 1fr; }
    .contact-stats { grid-template-columns: repeat(3, 1fr); }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: var(--gap-xl); }
    .footer-bottom { flex-direction: column; gap: var(--gap-sm); text-align: center; }

    /* Section titles */
    .section-title { font-size: clamp(1.75rem, 6vw, 2.5rem); }

    /* Process */
    .process-item { grid-template-columns: 50px 1fr; }
    .process-aside { display: none; }
    .process-num { font-size: 2.2rem; }
    .process-cta { flex-direction: column; align-items: flex-start; }

    /* Scroll hint */
    .hero-scroll-hint { display: none; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .projects-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
}

/* ─── Carousel ───────────────────────────────────── */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-xl);
    background: var(--surface);
    cursor: grab;
}
.carousel-container:active { cursor: grabbing; }

.carousel-track {
    display: flex;
    transition: transform 0.4s var(--ease-out);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--gap-lg);
    background: linear-gradient(to top, rgba(10,9,8,0.9) 0%, transparent 100%);
}
.carousel-overlay h3 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 0.25rem;
}
.carousel-overlay p {
    font-size: 0.825rem;
    color: rgba(237,232,224,0.7);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 0.75rem;
}
.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-dim);
    border: none;
    cursor: pointer;
    transition: background var(--t-mid) var(--ease),
                transform var(--t-mid) var(--ease);
    padding: 0;
}
.carousel-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}
.carousel-touch-hint {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-dim);
    padding: 0 0.75rem 0.75rem;
    letter-spacing: 0.05em;
}

/* ─── Utility ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .marquee-track { animation: none; }
}
