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

:root {
    --bg: #030303;
    --panel: #0a0a0c;
    --panel-2: #08080a;
    --panel-alt: #050506;
    --ink-1: #f8fafc;
    --ink-2: #cbd5e1;
    --ink-3: #64748b;
    --border: rgba(255, 255, 255, 0.045);
    --border-strong: rgba(255, 255, 255, 0.08);
    --accent: #ceb298;      /* Warm artistic sand-linen champagne */
    --accent-2: #e8dfd8;    /* Soft creamy linen */
    --accent-3: #98a2b5;    /* Artistic muted slate-steel */
    --accent-4: #c5a59c;    /* Warm terracotta sand */
    --danger: #ff7b7b;
    --shadow-soft: 0 40px 100px rgba(0,0,0,0.8);
    --shadow-quiet: 0 15px 50px rgba(0,0,0,0.6);
    --radius-md: 4px; /* Cambiado a un radio técnico estilo bento suizo */
    --radius-lg: 6px;
    --container: 1240px;
    --section: 8rem 1.25rem;
    --grid-gap: 0px;
}

html { 
    scroll-behavior: smooth; 
    font-size: 16px; 
    background-color: var(--bg);
}

html.has-custom-cursor, 
html.has-custom-cursor * {
    cursor: none !important;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--ink-1);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Grilla estructural analítica que cubre toda la pantalla del sitio */
.grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: none;
    z-index: 0;
}

/* Custom Mouse Cursor Follower (Deactivated based on user preference) */
.cursor-follower {
    display: none !important;
}

/* Ocultar custom cursor en táctiles */
@media (hover: none) and (pointer: coarse) {
    .cursor-follower {
        display: none !important;
    }
    html {
        cursor: auto !important;
    }
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

section { 
    position: relative; 
    padding: var(--section);
    border-bottom: 1px solid var(--border);
}

/* --------------------------------------------------
   Navbar (Isla Táctica)
-------------------------------------------------- */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: var(--container);
    background: rgba(8, 8, 10, 0.9);
    border: 1px solid var(--border);
    border-radius: 12px;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    background: rgba(8, 8, 10, 0.96);
    border-color: rgba(206, 178, 152, 0.25);
    box-shadow: 0 10px 24px rgba(0,0,0,0.32);
    top: 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0.5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ink-1);
    letter-spacing: -0.02em;
    font-family: 'Syne', sans-serif;
}

.logo-mark {
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover .logo-mark {
    transform: rotate(90deg);
}

.footer-logo {
    display: inline-flex;
    text-decoration: none;
    margin-bottom: 0.85rem;
}

.logo-text {
    display: inline-flex;
    align-items: baseline;
    gap: 0.14rem;
    color: var(--ink-1);
}

.logo-text-main {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.logo-text-accent {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--ink-3);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    padding: 0.45rem 0.35rem;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link:hover {
    color: var(--ink-1);
}

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

.nav-link.active {
    color: var(--ink-1);
}

.nav-cta {
    padding: 0.5rem 1.2rem;
    background: var(--accent);
    border: none;
    border-radius: 6px;
    color: #030303 !important;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.nav-cta:hover {
    background: #fff !important;
    color: #030303 !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(206, 178, 152, 0.25);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.35rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 1.5px;
    background: var(--ink-1);
    transition: all 0.25s ease;
}

@media (max-width: 820px) {
    .mobile-menu-btn { display: flex; }
    .nav-menu {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        background: rgba(10, 10, 12, 0.98);
        border: 1px solid var(--border);
        border-radius: 12px;
        flex-direction: column;
        padding: 2rem;
        gap: 1.2rem;
        transform: translateY(-10px) scale(0.98);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .nav-menu .nav-link { width: 100%; color: var(--ink-1); font-size: 1.05rem; }
    .nav-menu.active { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }
}

/* --------------------------------------------------
   Hero (NYC Studio Style)
-------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 0 6rem;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background:
        url('images/hero_1.jpg') center center / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 3, 3, 0.9) 0%, rgba(3, 3, 3, 0.78) 32%, rgba(3, 3, 3, 0.42) 58%, rgba(3, 3, 3, 0.28) 100%),
        linear-gradient(180deg, rgba(3, 3, 3, 0.42) 0%, rgba(3, 3, 3, 0.14) 38%, rgba(3, 3, 3, 0.78) 100%);
    z-index: 1;
    pointer-events: none;
}

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

.hero-video-bg video {
    display: none;
}

.hero-glow {
    display: none;
}

.hero-container {
    z-index: 10;
    width: 100%;
}

.hero-main-centered {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 760px;
    margin: 0;
    padding: 2rem 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.1rem;
    background: rgba(8, 8, 10, 0.45);
    border: 1px solid rgba(206, 178, 152, 0.16);
    color: rgba(248, 250, 252, 0.92);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 100px;
    margin-bottom: 2rem;
}

.eyebrow-dot {
    color: var(--accent);
    animation: none;
}

@keyframes beacon {
    0% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.4; transform: scale(0.9); }
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3.2rem, 8vw, 6.2rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    width: 100%;
    max-width: 10.5ch;
    text-wrap: balance;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.text-italics {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    text-transform: lowercase;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    color: rgba(248, 250, 252, 0.88);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 500;
    max-width: 36rem;
    margin-bottom: 2.2rem;
    line-height: 1.55;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.hero-action-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--ink-3);
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 0.78rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.pill:hover {
    color: var(--ink-1);
    border-color: rgba(255,255,255,0.15);
    background: rgba(255, 255, 255, 0.02);
}

/* --------------------------------------------------
   Text Reveal Anim
-------------------------------------------------- */
.element-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease,
                transform 0.45s ease;
}

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

/* --------------------------------------------------
   Base Hero Layout Overwrites
-------------------------------------------------- */
.hero-video-blur { display: none; }

.hero::before {
    content: none;
}

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

.hero-frame::after {
    content: '';
    display: none;
}

.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
}

.hero-main h1,
.hero-main p,
.hero-main .hero-cta,
.hero-main .hero-tags {
    animation: none;
    opacity: 1;
}

.hero-main h1 { animation-delay: 0s; }
.hero-main p { animation-delay: 0s; }
.hero-main .hero-cta { animation-delay: 0s; }
.hero-main .hero-tags { animation-delay: 0s; }

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

@keyframes codeFlow {
    from { transform: translateX(0) translateY(0); }
    to { transform: translateX(25%) translateY(15%); }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    background: rgba(18, 184, 166, 0.08);
    border: 1px solid rgba(18, 184, 166, 0.18);
    color: var(--ink-1);
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 3.9rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #f7f9fd;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: var(--ink-2);
    font-size: 1.05rem;
    max-width: 640px;
    margin-bottom: 1.9rem;
}

.hero-cta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.95rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: #dce6f5;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.pill:hover {
    background: rgba(206,178,152,0.08);
    border-color: rgba(206,178,152,0.3);
    transform: translateY(-2px);
}

.hero-aside {
    display: grid;
    gap: 1rem;
}

.hero-project-preview {
    background: linear-gradient(180deg, transparent 40%, rgba(11,14,21,0.95));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.hero-project-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0.8;
}

.preview-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-3);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

.preview-card {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.preview-card-featured {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 16;
}

.preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.preview-card:hover img {
    transform: scale(1.1);
}

.preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11,14,21,0.95));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0.75rem;
    gap: 0.35rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-card:hover .preview-overlay {
    opacity: 1;
}

.preview-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink-1);
    letter-spacing: -0.01em;
}

.preview-tech {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.preview-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: rgba(206,178,152,0.08);
    border: 1px solid rgba(206,178,152,0.2);
    border-radius: 10px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.preview-cta:hover {
    background: rgba(206,178,152,0.15);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.preview-cta i {
    transition: transform 0.3s ease;
}

.preview-cta:hover i {
    transform: translateX(4px);
}

.metric-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.4rem;
    box-shadow: var(--shadow-quiet);
    display: grid;
    gap: 0.35rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.metric-card:hover {
    transform: scale(1.02);
    border-color: rgba(206,178,152,0.3);
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(206,178,152,0.1);
    border-radius: 8px;
    pointer-events: none;
}

.metric-card::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card:hover::after {
    opacity: 1;
}

.metric-label {
    color: var(--ink-3);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.metric-value {
    font-size: 1.7rem;
    font-weight: 850;
    color: #f7f9fd;
    letter-spacing: -0.03em;
}

.metric-note {
    color: var(--ink-2);
    font-size: 0.98rem;
    line-height: 1.5;
}

.metric-card.stack .stack-list {
    display: grid;
    gap: 0.35rem;
    color: var(--ink-2);
    font-weight: 600;
}

/* --------------------------------------------------
   Buttons
-------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1.1rem 2.2rem;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: var(--ink-1);
    z-index: 5;
}

.btn-primary {
    background: var(--accent);
    color: #030303;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: #fff;
    border-color: #fff;
    color: #030303;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(206, 178, 152, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--ink-1);
    border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
    border-color: var(--ink-1);
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-2px);
}

.btn-quiet {
    background: transparent;
    color: var(--ink-1);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 16px;
    border-radius: 4px;
}

.btn-block { width: 100%; }

/* --------------------------------------------------
   Section headers
-------------------------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: #fff;
    position: relative;
    display: inline-block;
    line-height: 1;
}

.section-title::after {
    display: none; /* Eliminamos la línea obsoleta */
}

.section-subtitle {
    color: var(--ink-3);
    font-size: 1.05rem;
    font-weight: 500;
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.5;
}

/* --------------------------------------------------
   Services (Studio Swiss Grid)
-------------------------------------------------- */
.services {
    position: relative;
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    position: relative;
    z-index: 10;
}

.service-card {
    background: transparent;
    border-radius: 0px; /* Estilo Bento técnico puro */
    border: none;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4rem 3.5rem;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3rem;
    min-height: 380px;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    display: none;
}

.service-card:hover {
    background-color: rgba(255, 255, 255, 0.015);
    transform: none;
    box-shadow: none;
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-icon-new {
    font-size: 1.8rem;
    color: var(--ink-3);
    transition: color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-icon-new {
    color: var(--accent);
    transform: scale(1.1);
}

.service-catalog-num {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink-3);
    opacity: 0.5;
}

.service-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -0.01em;
}

.service-description {
    color: var(--ink-2);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 480px;
}

.service-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.micro-tech-badge {
    font-size: 0.7rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--border);
    color: var(--ink-3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.01);
    transition: all 0.3s ease;
}

.service-card:hover .micro-tech-badge {
    border-color: rgba(206, 178, 152, 0.3);
    color: var(--accent);
}

@media (max-width: 820px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 3rem 2rem;
        min-height: auto;
    }
}

/* --------------------------------------------------
   Process Section (Editorial Timeline NYC)
-------------------------------------------------- */
.process {
    position: relative;
    background: var(--bg);
}

.process-editorial {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 10;
}

.process-editorial-step {
    display: flex;
    align-items: flex-start;
    padding: 5rem 0;
    border-bottom: 1px solid var(--border);
    gap: 4rem;
    position: relative;
}

.step-huge-num {
    font-family: 'Syne', sans-serif;
    font-size: clamp(4rem, 10vw, 8.5rem);
    font-weight: 800;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
    transition: color 0.4s ease, -webkit-text-stroke 0.4s ease;
    user-select: none;
    flex-shrink: 0;
    width: 200px;
}

.process-editorial-step:hover .step-huge-num {
    color: var(--accent);
    -webkit-text-stroke: 1px var(--accent);
}

.step-editorial-right {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 640px;
}

.step-editorial-right h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -0.02em;
}

.step-editorial-right p {
    color: var(--ink-2);
    font-size: 1.05rem;
    line-height: 1.6;
}

.step-badge-tag {
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-transform: uppercase;
    border-left: 2px solid var(--accent);
    padding-left: 0.8rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .process-editorial-step {
        flex-direction: column;
        gap: 1.5rem;
        padding: 3rem 0;
    }
    .step-huge-num {
        font-size: 4rem;
        width: auto;
    }
    .step-editorial-right h3 {
        font-size: 1.4rem;
    }
}

/* --------------------------------------------------
   Projects (Asymmetric Editorial Grid NYC)
-------------------------------------------------- */
.projects {
    position: relative;
    background: var(--bg);
}

.pb-bleed {
    padding-bottom: 2rem;
}

.projects-asymmetric-grid {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    margin-top: 4rem;
    position: relative;
    z-index: 10;
}

.project-asymmetric-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.project-asymmetric-card.project-asymmetric-right {
    grid-template-columns: 0.8fr 1.2fr;
}

.project-asymmetric-card.project-asymmetric-right .project-media-frame {
    grid-column: 2;
}

.project-asymmetric-card.project-asymmetric-right .project-asymmetric-content {
    grid-column: 1;
    grid-row: 1;
}

.project-media-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0d0d0f;
    border: 1px solid var(--border);
}

.project-dynamic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    filter: saturate(70%) contrast(105%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.8s ease,
                filter 0.8s ease;
}

.project-asymmetric-card:hover .project-dynamic-img {
    transform: scale(1.05);
    opacity: 1;
    filter: saturate(100%) contrast(100%);
}

.project-asymmetric-overlay {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 15;
}

.project-editorial-tag {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.45rem 1rem;
    color: #fff;
    background: rgba(3, 3, 3, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
}

.project-asymmetric-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.8rem;
}

.project-index {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
}

.project-location {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--ink-3);
    text-transform: uppercase;
}

.project-asymmetric-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -0.02em;
}

.project-asymmetric-description {
    color: var(--ink-2);
    font-size: 1.02rem;
    line-height: 1.6;
}

.project-asymmetric-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag-editorial {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border: 1px solid var(--border);
    color: var(--ink-3);
    border-radius: 4px;
}

.project-asymmetric-links {
    margin-top: 0.5rem;
}

.project-asymmetric-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 0.4rem;
    transition: all 0.3s ease;
}

.project-asymmetric-link i {
    font-size: 0.85rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-asymmetric-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.project-asymmetric-link:hover i {
    transform: translate(3px, -3px);
}

@media (max-width: 960px) {
    .projects-asymmetric-grid {
        gap: 5rem;
    }
    .project-asymmetric-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .project-asymmetric-card.project-asymmetric-right {
        grid-template-columns: 1fr;
    }
    .project-asymmetric-card.project-asymmetric-right .project-media-frame {
        grid-column: 1;
    }
    .project-asymmetric-card.project-asymmetric-right .project-asymmetric-content {
        grid-column: 1;
    }
}

/* --------------------------------------------------
   Precios Guía (Technical Minimalist Grid)
-------------------------------------------------- */
.pricing-section {
    position: relative;
    background: var(--bg);
}

.pricing-technical-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    position: relative;
    z-index: 10;
}

.pricing-technical-card {
    background: transparent;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3.5rem;
    position: relative;
    transition: background-color 0.4s ease;
}

.pricing-technical-card:hover {
    background-color: rgba(255, 255, 255, 0.012);
}

.pricing-card-header {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.price-category-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #fff;
}

.price-value-container {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.price-currency {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
}

.price-amount {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 0.9;
}

.price-unit {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-3);
    margin-left: 0.25rem;
}

.price-description {
    color: var(--ink-2);
    font-size: 0.95rem;
    line-height: 1.5;
}

.price-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.price-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--ink-2);
}

.price-features-list li i {
    color: var(--accent);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.price-card-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.75rem;
    background: var(--accent);
    color: #030303;
    border-radius: 2px;
}

@media (max-width: 960px) {
    .pricing-technical-grid {
        grid-template-columns: 1fr;
    }
    .pricing-technical-card {
        padding: 3rem 2rem;
        gap: 2.5rem;
    }
}

/* Base legacy pricing visual overwrites */
   Contact
-------------------------------------------------- */
.contact {
    position: relative;
    overflow: hidden;
        background: linear-gradient(180deg, transparent 40%, rgba(11,14,21,0.95));

}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(136,201,255,0.08), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255,198,112,0.06), transparent 35%);
    pointer-events: none;
}

.contact::after {
    content: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 960px) { .contact-content { grid-template-columns: 1fr; } }

.contact-info { display: grid; gap: 1.5rem; }

.contact-info-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255,255,255,0.02);
    transform: translateX(8px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(206,178,152,0.1), rgba(206,178,152,0.05));
    color: var(--accent);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    position: relative;
}

.contact-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border: 2px solid var(--accent);
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1) rotate(-5deg);
}

.contact-info-item:hover .contact-icon::after {
    opacity: 0.3;
}

.contact-info-item h4 { font-size: 1.05rem; }
.contact-info-item p { color: var(--ink-2); }

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

.social-link {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--ink-2);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.02);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link i {
    position: relative;
    z-index: 1;
}

.social-link:hover::before { opacity: 0.15; }

.social-link:hover { 
    color: var(--accent); 
    border-color: var(--accent); 
    transform: translateY(-4px) scale(1.05);
}

.contact-form-wrapper {
    background: linear-gradient(180deg, transparent 40%, rgba(11,14,21,0.95));
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-3), var(--accent-4));
    opacity: 0.8;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.contact-form-wrapper::after {
    content: '</form>';
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-family: 'Courier New', monospace;
    color: rgba(206,178,152,0.1);
    font-size: 0.9rem;
    pointer-events: none;
}

.contact-form { display: grid; gap: 1.2rem; }

.form-group { display: grid; gap: 0.4rem; }

.form-group label { font-weight: 700; letter-spacing: -0.01em; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.03);
    color: var(--ink-1);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(206,178,152,0.1), inset 0 1px 2px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

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

.error-message { color: #dc2626; font-weight: 600; display: none; }
.error-message.show { display: block; }
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #dc2626; }

.form-message {
    display: none;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
}

.form-message.success { display: block; background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.form-message.error { display: block; background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* --------------------------------------------------
   Footer
-------------------------------------------------- */
.footer {
    background: linear-gradient(180deg, transparent 40%, rgba(11,14,21,0.95));
    color: #e2e8f0;
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 3rem;;

}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(206,178,152,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 960px) { .footer-content { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .footer-content { grid-template-columns: 1fr; } }

.footer-title { font-size: 1.35rem; margin-bottom: 0.8rem; }
.footer-subtitle { font-size: 1rem; margin-bottom: 0.6rem; }
.footer-text { color: #cbd5e1; line-height: 1.6; }

.footer-links { list-style: none; display: grid; gap: 0.45rem; }
.footer-links a { color: #cbd5e1; text-decoration: none; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social { display: flex; gap: 0.6rem; }
.footer-social a { color: #cbd5e1; text-decoration: none; }
.footer-social a:hover { color: #fff; }

/* --------------------------------------------------
   Page Template (Internal Pages)
-------------------------------------------------- */
.page-section {
    padding: 3rem 1.25rem;
    position: relative;
    background: var(--bg);
}

.page-header {
    max-width: 780px;
}

.page-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0.5rem 0 0.8rem;
    background: linear-gradient(135deg, var(--ink-1), var(--ink-2));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--ink-2);
    margin-bottom: 1.2rem;
}

.page-content {
    max-width: 1020px;
    margin: 0 auto;
}

.content-title {
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink-1);
    margin-bottom: 0.5rem;
}

.content-intro {
    font-size: 1.05rem;
    color: var(--ink-3);
    margin-bottom: 2rem;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    overflow: hidden;
    background:  rgba(255,255,255,0.06);
    box-shadow: var(--shadow-quiet);
}

.pricing-table thead th {
    border-bottom: 2px solid var(--border-strong);
    padding: 1.1rem 1.4rem;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent);
}

.pricing-table thead th.price-col {
    text-align: right;
}

.pricing-table tbody td {
    padding: 1.15rem 1.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: var(--ink-2);
    line-height: 1.6;
    font-size: 0.98rem;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:hover td {
    background: rgba(121,246,209,0.05);
}

.pricing-table .category-cell {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--ink-1);
    border-right: 2px solid var(--border-strong);
    vertical-align: middle;
    text-align: center;
}

.pricing-table tbody td:nth-child(2) {
    font-weight: 700;
    color: var(--ink-1);
}

.pricing-table .price-col {
    text-align: right;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent);
    white-space: nowrap;
    background: rgba(121,246,209,0.02);
}

/* Page Notes */
.page-notes {
    margin-top: 2rem;
    padding: 1.5rem;
    border-left: 3px solid var(--accent);
    background: rgba(121,246,209,0.03);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.page-notes p {
    margin: 0;
    color: var(--ink-2);
    line-height: 1.7;
}

.page-notes p + p {
    margin-top: 0.8rem;
}

/* Conditions List */
.conditions-list {
    padding-left: 1.5rem;
    display: grid;
    gap: 1.1rem;
    color: var(--ink-2);
    line-height: 1.7;
    margin: 0;
}

.conditions-list strong {
    color: var(--ink-1);
    font-weight: 700;
}

.conditions-list li {
    padding-left: 0.5rem;
}

/* Responsive */
@media (max-width: 820px) {
    .page-title { font-size: 2.2rem; }
    .content-title { font-size: 1.5rem; }
    
    .pricing-table thead {
        display: none;
    }
    
    .pricing-table,
    .pricing-table tbody,
    .pricing-table tr,
    .pricing-table td {
        display: block;
        width: 100%;
    }
    
    .pricing-table tbody tr {
        margin-bottom: 1.5rem;
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        overflow: hidden;
    }
    
    .pricing-table tbody tr:last-child {
        margin-bottom: 0;
    }
    
    .pricing-table tbody td {
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding: 0.9rem 1.1rem;
        text-align: left !important;
    }
    
    .pricing-table tbody td:last-child {
        border-bottom: none;
    }
    
    .pricing-table .category-cell {
        border-right: none;
        border-bottom: 2px solid var(--border-strong);
        font-size: 1.05rem;
        background: rgba(121,246,209,0.05);
    }
    
    .pricing-table .price-col {
        font-size: 1.15rem;
    }
}

/* --------------------------------------------------
   Utilities & States
-------------------------------------------------- */
.text-center { text-align: center; }
.loading { opacity: 0.6; pointer-events: none; }

@media (max-width: 920px) {
    :root { --section: 3.5rem 1.25rem; }
    .hero { padding-top: 6rem; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-aside { grid-template-columns: 1fr; }
    .preview-grid { grid-template-columns: 1fr; }
    .preview-card-featured { grid-column: 1; }
    .hero-cta { width: 100%; justify-content: center; }
    .btn { width: 100%; }
    
    .projects-carousel {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .projects-track {
        gap: 1rem;
    }
    
    .project-card {
        scroll-snap-align: start;
        min-width: 300px;
    }
    
    .carousel-nav {
        display: none;
    }
    
    .service-card:hover {
        transform: translateY(-4px) scale(1);
    }
}

/* --------------------------------------------------
   Clients Strip (Subtle NYC Mono Grid)
-------------------------------------------------- */
.clients-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3.5rem 0;
    background: var(--bg);
}

.clients-title {
    text-align: center;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-3);
    margin-bottom: 2.5rem;
    font-weight: 750;
    opacity: 0.75;
}

.clients-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4.5rem;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.client-logo img {
    height: 100%;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    opacity: 0.35;
    filter: grayscale(100%) brightness(0.85);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-logo img:hover {
    opacity: 0.85;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .clients-strip {
        padding: 2.5rem 0;
    }
    .clients-grid {
        gap: 2.5rem;
    }
    .client-logo {
        height: 28px;
    }
}

/* --------------------------------------------------
   Stats Strip (Editorial Minimal Numbers)
-------------------------------------------------- */
.stats-strip {
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    padding: 0 1.5rem;
    border-right: 1px solid var(--border);
}

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

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--ink-3);
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 0;
    }
    .stat-item {
        border-right: none;
    }
    .stat-item:nth-child(odd) {
        border-right: 1px solid var(--border);
    }
}

/* --------------------------------------------------
   Form contact custom line design (NYC Loft Minimalist)
-------------------------------------------------- */
.form-minimal-loft {
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-row-loft {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.form-group-loft {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
}

.form-group-loft-full {
    grid-column: span 2;
}

.label-loft {
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-3);
    transition: color 0.3s ease;
}

.input-loft,
.textarea-loft {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-strong);
    color: #fff;
    padding: 0.8rem 0;
    font-size: 1rem;
    outline: none;
    transition: border-bottom-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
    border-radius: 0;
}

.textarea-loft {
    resize: none;
    height: 100px;
}

.input-loft:focus,
.textarea-loft:focus {
    border-bottom-color: var(--accent);
}

.form-group-loft:focus-within .label-loft {
    color: var(--accent);
}

@media (max-width: 640px) {
    .form-row-loft {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .form-group-loft-full {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    :root {
        --section: 3rem 0.85rem;
    }

    .container {
        padding: 0 1rem;
    }

    .navbar {
        top: 0.75rem;
        width: calc(100% - 1rem);
    }

    .nav-content {
        padding: 0.65rem 0.2rem;
    }

    .hero {
        padding-top: 6.5rem;
        background-position: 62% center;
    }

    .hero-main-centered {
        max-width: 100%;
        align-items: center;
        text-align: center;
        margin: 0 auto;
        padding: 1rem 0 0;
    }

    .eyebrow {
        width: 100%;
        justify-content: center;
        padding: 0.5rem 0.75rem;
        font-size: 0.64rem;
        line-height: 1.35;
        text-align: center;
        border-radius: 18px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 12vw, 3.3rem);
        line-height: 0.98;
        letter-spacing: -0.05em;
        margin-bottom: 1rem;
        text-wrap: balance;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-action-group,
    .hero-cta {
        width: 100%;
        gap: 0.75rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        padding: 1rem 1.1rem;
        font-size: 0.8rem;
    }

    .hero-tags {
        justify-content: center;
        gap: 0.5rem;
    }

    .pill {
        padding: 0.45rem 0.7rem;
        font-size: 0.72rem;
        text-align: center;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 0.98;
    }

    .section-subtitle {
        font-size: 0.98rem;
        margin-top: 0.85rem;
    }

    .service-card {
        padding: 2.25rem 1.1rem;
        gap: 2rem;
        min-height: auto;
    }

    .service-title,
    .project-asymmetric-title {
        font-size: 1.5rem;
    }

    .process-editorial-step {
        gap: 1rem;
        padding: 2.25rem 0;
    }

    .step-huge-num {
        font-size: 3.2rem;
    }

    .step-editorial-right h3 {
        font-size: 1.2rem;
    }

    .projects-asymmetric-grid {
        gap: 4rem;
        margin-top: 2.5rem;
    }

    .project-asymmetric-card {
        gap: 1.4rem;
    }

    .project-meta-top {
        gap: 0.75rem;
        align-items: flex-start;
        flex-direction: column;
    }

    .project-editorial-tag {
        padding: 0.4rem 0.75rem;
        font-size: 0.65rem;
    }

    .contact-form-wrapper {
        padding: 1.4rem;
    }

    .contact-info-item {
        padding: 0.85rem 0;
    }

    .footer {
        padding: 2.5rem 0 1.25rem;
    }

    .footer-bottom {
        gap: 1rem;
    }
}

/* Redundant code deletion wrapper */

