/* ========================================
   COPENHAGEN CREATIVE — style.css
   High-end cream design studio aesthetic
======================================== */

:root {
    --cream-100: #FAF8F3;
    --cream-200: #F3EFE6;
    --cream-300: #E8E2D5;
    --cream-400: #D4CCBB;
    --charcoal: #2C2C2C;
    --charcoal-light: #4A4A4A;
    --charcoal-muted: #8A8578;
    --accent: #A69880;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
}

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

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

body {
    background: var(--cream-100);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ========================================
   SKIP TO CONTENT (Accessibility)
======================================== */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--charcoal);
    color: var(--cream-100);
    padding: 12px 24px;
    z-index: 200;
    font-size: 14px;
    border-radius: 0 0 4px 4px;
    transition: top 0.3s ease;
}
.skip-to-content:focus { top: 0; }

/* ========================================
   ANNOUNCEMENT BAR
======================================== */
.announcement-bar {
    background: linear-gradient(90deg, var(--accent), var(--charcoal-muted));
    color: var(--cream-100);
    text-align: center;
    padding: 10px 48px 10px 16px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
}
.announcement-bar .announce-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    padding: 4px 8px;
}
.announcement-bar .announce-close:hover { opacity: 1; }

/* ========================================
   NAVIGATION
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.block-navigation {
    padding: 24px 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
    background: rgba(250, 248, 243, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--cream-300);
}

.site-header.scrolled .block-navigation {
    padding: 16px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-logo svg { width: 38px; height: 38px; }

.nav-logo-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--charcoal);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after { width: 100%; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-hamburger span {
    width: 28px;
    height: 1.5px;
    background: var(--charcoal);
    transition: all 0.3s ease;
    display: block;
}

/* ========================================
   MOBILE NAV
======================================== */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--cream-100);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav.active { opacity: 1; pointer-events: all; }

.mobile-nav a {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 300;
}

/* ========================================
   HERO
======================================== */
.block-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.block-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(166, 152, 128, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(212, 204, 187, 0.12) 0%, transparent 50%);
    animation: heroGradient 20s ease-in-out infinite alternate;
}

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

.hero-video-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
    -webkit-media-controls: none !important;
}

.hero-video-bg video::-webkit-media-controls {
    display: none !important;
    -webkit-appearance: none;
}

.hero-video-bg video::-webkit-media-controls-panel,
.hero-video-bg video::-webkit-media-controls-play-button,
.hero-video-bg video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
    opacity: 0;
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.hero-drift-text {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.drift-line {
    position: absolute;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 300;
    color: var(--cream-300);
    opacity: 0.15;
    animation: driftLeft linear infinite;
}

.drift-line:nth-child(1) { top: 5%; animation-duration: 62s; }
.drift-line:nth-child(2) { top: 20%; animation-duration: 58s; animation-direction: reverse; }
.drift-line:nth-child(3) { top: 38%; animation-duration: 65s; }
.drift-line:nth-child(4) { top: 55%; animation-duration: 60s; animation-direction: reverse; }
.drift-line:nth-child(5) { top: 72%; animation-duration: 67s; }
.drift-line:nth-child(6) { top: 88%; animation-duration: 59s; animation-direction: reverse; }

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

@keyframes heroGradient {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-5%, -3%) rotate(3deg); }
}

.hero-logo {
    width: 120px; height: 120px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 96px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    position: relative;
    z-index: 1;
}

.hero-title em { font-style: italic; font-weight: 300; }

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 200;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--charcoal-muted);
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    position: relative;
    z-index: 1;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 48px;
    border: 1px solid var(--charcoal);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
    position: relative;
    z-index: 1;
}

.hero-cta:hover {
    background: var(--charcoal);
    color: var(--cream-100);
    padding: 18px 56px;
}

.hero-cta svg { width: 16px; height: 16px; transition: transform 0.4s ease; }
.hero-cta:hover svg { transform: translateX(4px); }

/* Hero with video: light text */
.block-hero.has-video .hero-title,
.block-hero.has-video .hero-subtitle,
.block-hero.has-video .hero-logo { color: var(--cream-100); }
.block-hero.has-video .hero-cta { border-color: var(--cream-100); color: var(--cream-100); }
.block-hero.has-video .hero-cta:hover { background: var(--cream-100); color: var(--charcoal); }

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.hero-scroll-indicator span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--charcoal-muted);
}

.scroll-line {
    width: 1px; height: 48px;
    background: var(--cream-300);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%; left: 0;
    width: 100%; height: 100%;
    background: var(--charcoal-muted);
    animation: scrollDown 2s ease-in-out infinite;
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========================================
   INTRO / ABOUT
======================================== */
.block-intro {
    padding: 140px 0;
    border-top: 1px solid var(--cream-300);
}

.intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.intro-label, .section-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--charcoal-muted);
    margin-bottom: 32px;
}

.intro-heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.2;
}

.intro-heading em { font-style: italic; }

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal-light);
    font-weight: 300;
}

.intro-text + .intro-text { margin-top: 24px; }

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
    padding-top: 56px;
    border-top: 1px solid var(--cream-300);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--charcoal-muted);
    font-weight: 300;
}

/* ========================================
   SERVICES
======================================== */
.block-services {
    padding: 140px 0;
    background: var(--cream-200);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label { margin-bottom: 24px; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.2;
}

.section-title em { font-style: italic; }

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

.service-card {
    background: var(--cream-100);
    padding: 56px 40px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.service-card:hover {
    background: var(--charcoal);
    color: var(--cream-100);
}

.service-card:hover .service-number,
.service-card:hover .service-desc { color: var(--cream-300); }

.service-number {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--charcoal-muted);
    margin-bottom: 40px;
    transition: color 0.5s ease;
}

.service-icon {
    width: 48px; height: 48px;
    margin-bottom: 32px;
    stroke: currentColor;
}

.service-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--charcoal-light);
    font-weight: 300;
    transition: color 0.5s ease;
}

/* ========================================
   PORTFOLIO
======================================== */
.block-portfolio { padding: 140px 0; }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--cream-200);
    cursor: pointer;
}

.portfolio-item-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover .portfolio-item-bg { transform: scale(1.05); }

/* Gradient placeholders — only when no image is set */
.portfolio-item-bg:not([style*="background-image"]):nth-child(1) { background: linear-gradient(135deg, var(--cream-300), var(--accent)); }

.portfolio-item:nth-child(4n+1) .portfolio-item-bg.no-image { background: linear-gradient(135deg, var(--cream-300), var(--accent)); }
.portfolio-item:nth-child(4n+2) .portfolio-item-bg.no-image { background: linear-gradient(135deg, var(--charcoal), var(--charcoal-light)); }
.portfolio-item:nth-child(4n+3) .portfolio-item-bg.no-image { background: linear-gradient(135deg, var(--charcoal-light), var(--charcoal)); }
.portfolio-item:nth-child(4n+4) .portfolio-item-bg.no-image { background: linear-gradient(135deg, var(--accent), var(--cream-300)); }

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 44, 44, 0);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px;
    transition: background 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay { background: rgba(44, 44, 44, 0.7); }

.portfolio-info {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover .portfolio-info { transform: translateY(0); opacity: 1; }

.portfolio-category {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cream-300);
    margin-bottom: 12px;
}

.portfolio-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--cream-100);
    line-height: 1.3;
}

.portfolio-year {
    font-size: 13px;
    color: var(--cream-400);
    margin-top: 8px;
    font-weight: 300;
}

/* ========================================
   PROCESS
======================================== */

/* Touch devices: always show portfolio info */
@media (hover: none) {
    .portfolio-overlay {
        background: linear-gradient(to top, rgba(44, 44, 44, 0.75) 0%, rgba(44, 44, 44, 0.3) 50%, transparent 100%);
    }
    .portfolio-info {
        transform: translateY(0);
        opacity: 1;
    }
}

.block-process {
    padding: 140px 0;
    background: var(--charcoal);
    color: var(--cream-100);
}

.block-process .section-label { color: var(--charcoal-muted); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}

.process-step {
    padding: 48px 32px;
    border-left: 1px solid rgba(250, 248, 243, 0.1);
    position: relative;
}

.process-step:first-child { border-left: none; }

.process-step-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 300;
    color: rgba(250, 248, 243, 0.08);
    margin-bottom: 24px;
    line-height: 1;
}

.process-step-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
}

.process-step-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--cream-400);
    font-weight: 200;
}

/* ========================================
   TESTIMONIAL
======================================== */
.block-testimonial {
    padding: 140px 0;
    background: var(--cream-200);
}

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

.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 300;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 40px;
}

.testimonial-quote::before {
    content: '"';
    display: block;
    font-size: 80px;
    line-height: 0.5;
    color: var(--cream-400);
    margin-bottom: 24px;
    font-style: normal;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

.testimonial-role {
    font-size: 13px;
    color: var(--charcoal-muted);
    margin-top: 6px;
    font-weight: 300;
}

/* ========================================
   NEWSLETTER
======================================== */
.block-newsletter {
    padding: 100px 0;
    text-align: center;
}

.newsletter-inner { max-width: 560px; margin: 0 auto; }

.newsletter-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 300;
    margin-bottom: 16px;
}

.newsletter-title em { font-style: italic; }

.newsletter-subtitle {
    font-size: 15px;
    color: var(--charcoal-light);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    background: transparent;
    border: 1px solid var(--cream-300);
    border-right: none;
    outline: none;
    color: var(--charcoal);
}

.newsletter-form input[type="email"]:focus { border-color: var(--charcoal); }

.newsletter-form button {
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--charcoal);
    color: var(--cream-100);
    border: 1px solid var(--charcoal);
    cursor: pointer;
    transition: all 0.4s ease;
}

.newsletter-form button:hover { background: var(--charcoal-light); }

.newsletter-gdpr {
    font-size: 12px;
    color: var(--charcoal-muted);
    margin-top: 16px;
}

.newsletter-gdpr a { text-decoration: underline; }

.newsletter-msg {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 300;
}

.newsletter-msg.success { color: #5a8a5a; }
.newsletter-msg.error { color: #a85a5a; }

/* ========================================
   CONTACT
======================================== */
.block-contact { padding: 140px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-heading {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 32px;
}

.contact-heading em { font-style: italic; }

.contact-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal-light);
    font-weight: 300;
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-detail-icon {
    width: 20px; height: 20px;
    color: var(--charcoal-muted);
    flex-shrink: 0;
}

.contact-detail a,
.contact-detail span {
    font-size: 15px;
    font-weight: 300;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-detail a:hover { border-color: var(--charcoal); }

.contact-form { display: flex; flex-direction: column; gap: 24px; }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 0;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--cream-300);
    outline: none;
    color: var(--charcoal);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--charcoal); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--charcoal-muted); font-weight: 200; }

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

.form-submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 48px;
    border: 1px solid var(--charcoal);
    background: transparent;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-submit:hover { background: var(--charcoal); color: var(--cream-100); }

/* ========================================
   FOOTER
======================================== */
.block-footer {
    padding: 60px 0;
    border-top: 1px solid var(--cream-300);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-left svg { width: 28px; height: 28px; }

.footer-copy {
    font-size: 13px;
    color: var(--charcoal-muted);
    font-weight: 300;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-nav { display: flex; gap: 24px; }

.footer-nav a {
    font-size: 13px;
    color: var(--charcoal-muted);
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-nav a:hover { color: var(--charcoal); }

.footer-socials { display: flex; gap: 24px; }

.footer-socials a {
    width: 20px; height: 20px;
    color: var(--charcoal-muted);
    transition: color 0.3s ease;
}

.footer-socials a:hover { color: var(--charcoal); }

/* ========================================
   SCROLL ANIMATIONS
======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

/* ========================================
   GRAIN OVERLAY
======================================== */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: 0.025;
}

/* ========================================
   CURSOR GLOW
======================================== */
.cursor-glow {
    position: fixed;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166, 152, 128, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
}

/* ========================================
   DEBUG BAR
======================================== */
.debug-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #1a1a1a;
    color: #aaa;
    font-family: monospace;
    font-size: 12px;
    padding: 8px 16px;
    z-index: 9999;
    display: flex;
    gap: 24px;
}

/* ========================================
   REDUCED MOTION
======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .drift-line { animation: none !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-step { border-bottom: 1px solid rgba(250, 248, 243, 0.1); }
    .process-step:nth-child(odd) { border-left: none; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .intro-inner,
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }

    .services-grid,
    .portfolio-grid,
    .process-steps { grid-template-columns: 1fr; }

    .process-step { border-left: none; border-bottom: 1px solid rgba(250, 248, 243, 0.1); }

    .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
    .footer-right { flex-direction: column; gap: 16px; }

    .hero-logo { width: 80px; height: 80px; }

    .newsletter-form { flex-direction: column; }
    .newsletter-form input[type="email"] { border-right: 1px solid var(--cream-300); }

    .cursor-glow { display: none; }
}

@media (pointer: coarse) {
    .cursor-glow { display: none; }
}