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

:root {
    --cod-gray: #0D0D0D;
    --pickled-bluewood: #34495B;
    --polo-blue: #87A3BD;
    --athens-gray: #E8ECEF;
    --pure-white: #FFFFFF;

    --bg-primary: var(--cod-gray);
    --bg-secondary: #111214;
    --bg-elevated: #1a1c1f;
    --text-primary: var(--pure-white);
    --text-secondary: var(--athens-gray);
    --text-muted: var(--polo-blue);
    --accent: var(--polo-blue);
    --accent-dark: var(--pickled-bluewood);

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

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

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

.section-number {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 8rem);
    color: var(--accent-dark);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    color: var(--text-muted);
    margin-top: 1rem;
    font-weight: 300;
    max-width: 480px;
}

.section-header {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.text-accent {
    color: var(--accent);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
    will-change: opacity, transform;
}

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

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 clamp(24px, 5vw, 80px);
    transition: background 0.4s ease, padding 0.4s ease;
}

#navbar.scrolled {
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    border-bottom: 1px solid rgba(135, 163, 189, 0.08);
    transition: height 0.4s ease;
}

#navbar.scrolled .nav-inner {
    height: 64px;
    border-bottom-color: rgba(135, 163, 189, 0.12);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    display: flex;
    gap: 0.3em;
    align-items: baseline;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease-out-expo);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(13, 13, 13, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--text-primary);
}

.section-hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at 50% 80%, rgba(52, 73, 91, 0.15) 0%, var(--bg-primary) 70%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 clamp(16px, 4vw, 40px);
    width: 100%;
}

.hero-eyebrow {
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(5rem, 18vw, 16rem);
    line-height: 0.85;
    letter-spacing: 0.02em;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.hero-word.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-26 {
    display: inline-block;
    margin-left: 0.05em;
    background: linear-gradient(180deg, var(--pure-white) 20%, var(--polo-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.6s var(--ease-out-expo) 0.35s, transform 0.6s var(--ease-out-expo) 0.35s;
}

.hero-26.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-tagline {
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: clamp(1rem, 2vw, 1.5rem);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-meta-separator {
    width: 40px;
    height: 1px;
    background: var(--accent-dark);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s var(--ease-in-out) infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

.section-concepto {
    position: relative;
    padding: clamp(6rem, 12vw, 10rem) 0;
    overflow: hidden;
}

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

.concepto-bg img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center 30%;
    filter: grayscale(1);
    opacity: 0.12;
}

.concepto-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(13,13,13,0.7) 40%, rgba(13,13,13,0.85) 70%, var(--bg-primary) 100%);
}

.section-concepto .section-container {
    position: relative;
    z-index: 2;
}

.concepto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
    margin-bottom: clamp(4rem, 8vw, 6rem);
}

.concepto-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
}

.concepto-text {
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 4vw, 4rem);
    padding-top: clamp(3rem, 5vw, 4rem);
    border-top: 1px solid rgba(135, 163, 189, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    display: inline;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--accent);
    vertical-align: super;
}

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

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(135, 163, 189, 0.15);
}

.section-disciplinas {
    padding: clamp(6rem, 12vw, 10rem) 0;
    background: var(--bg-secondary);
}

.disciplines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.discipline-card {
    background: var(--bg-secondary);
    padding: clamp(2rem, 3vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    transition: background 0.4s ease;
    position: relative;
    border: 1px solid rgba(135, 163, 189, 0.08);
    margin: -0.5px;
}

.discipline-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.5s var(--ease-out-expo);
}

.discipline-card:hover {
    background: var(--bg-elevated);
}

.discipline-card:hover::after {
    width: 100%;
}

.discipline-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    opacity: 0;
    transform: translateY(16px);
    transition: transform 0.5s var(--ease-out-expo), opacity 0.5s var(--ease-out-expo);
}

.discipline-card.visible .discipline-icon {
    opacity: 1;
    transform: translateY(0);
}

.discipline-card:hover .discipline-icon {
    transform: scale(1.1);
}

.discipline-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(12px);
    transition: transform 0.5s var(--ease-out-expo) 0.08s, opacity 0.5s var(--ease-out-expo) 0.08s;
}

.discipline-card.visible .discipline-name {
    opacity: 1;
    transform: translateY(0);
}

.discipline-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
    transition: transform 0.5s var(--ease-out-expo) 0.15s, opacity 0.5s var(--ease-out-expo) 0.15s;
}

.discipline-card.visible .discipline-desc {
    opacity: 1;
    transform: translateY(0);
}

.section-trofeo {
    padding: clamp(6rem, 12vw, 10rem) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(52, 73, 91, 0.08) 50%, var(--bg-primary) 100%);
}

.trofeo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.trofeo-visual {
    display: flex;
    justify-content: center;
}

.trofeo-img {
    max-height: 70vh;
    width: auto;
    object-fit: contain;
}

.placeholder-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    border: 1px dashed rgba(135, 163, 189, 0.2);
    background: linear-gradient(145deg, rgba(52,73,91,0.06) 0%, rgba(13,13,13,0.4) 100%);
    position: relative;
}

.placeholder-box::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(135, 163, 189, 0.06);
}

.placeholder-tall {
    width: 100%;
    max-width: 400px;
    height: clamp(400px, 50vh, 600px);
}

.placeholder-gallery {
    width: 100%;
    height: clamp(320px, 40vw, 500px);
}

.placeholder-icon {
    width: 48px;
    height: 48px;
    color: rgba(135, 163, 189, 0.25);
}

.placeholder-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(135, 163, 189, 0.3);
}

.trofeo-content {
    padding: 2rem 0;
}

.trofeo-text {
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    margin-top: 1.5rem;
}

.trofeo-detail {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(135, 163, 189, 0.1);
}

.trofeo-detail:first-of-type {
    margin-top: 2rem;
    border-top: 1px solid rgba(135, 163, 189, 0.1);
}

.trofeo-detail-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.trofeo-detail-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 400;
}

.section-identidad {
    padding: clamp(6rem, 12vw, 10rem) 0;
    background: var(--bg-secondary);
}

.identity-block {
    margin-bottom: clamp(3rem, 5vw, 5rem);
}

.identity-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.color-palette {
    display: flex;
    gap: 1px;
}

.color-swatch {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.swatch-color {
    height: clamp(80px, 10vw, 140px);
    width: 100%;
}

.swatch-white {
    border: 1px solid rgba(135, 163, 189, 0.15);
}

.swatch-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.swatch-hex {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    font-family: monospace;
}

.type-specimen {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.type-display {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(135, 163, 189, 0.08);
}

.type-sample-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: 0.02em;
}

.type-sample-body {
    font-family: var(--font-body);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
}

.type-family {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.logo-variations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
}

.logo-var {
    padding: clamp(3rem, 5vw, 5rem);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.15em;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: 0.02em;
}

.logo-dark {
    background: var(--bg-primary);
    color: var(--pure-white);
}

.logo-dark .logo-26 {
    background: linear-gradient(180deg, var(--pure-white) 20%, var(--polo-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-light {
    background: var(--pure-white);
    color: var(--cod-gray);
}

.logo-light .logo-26 {
    background: linear-gradient(180deg, var(--cod-gray) 20%, var(--pickled-bluewood) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-aplicaciones {
    padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
    overflow: hidden;
}

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

.carousel-viewport {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s var(--ease-out-expo);
}

.carousel-slide {
    flex: 0 0 calc(100% / 3);
    padding: 0 0.75rem;
}

.carousel-caption {
    display: block;
    padding-top: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 2.5rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(135, 163, 189, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-btn:hover {
    border-color: var(--accent);
    background: rgba(135, 163, 189, 0.05);
}

.carousel-btn:disabled {
    opacity: 0.25;
    cursor: default;
}

.carousel-btn:disabled:hover {
    border-color: rgba(135, 163, 189, 0.2);
    background: none;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(135, 163, 189, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent);
    transform: scale(1.25);
}

.section-cta {
    padding: clamp(8rem, 15vw, 14rem) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

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

.cta-bg img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    filter: grayscale(1);
    opacity: 0.1;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(13,13,13,0.6) 40%, rgba(52,73,91,0.15) 70%, var(--bg-primary) 100%);
}

.section-cta .section-container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.cta-dot {
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
}

.cta-button {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    padding: 1.1rem 3.5rem;
    border: 1px solid var(--accent);
    color: var(--text-primary);
    transition: background 0.4s ease, color 0.4s ease, transform 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
    z-index: -1;
}

.cta-button:hover::before {
    transform: scaleX(1);
}

.cta-button:hover {
    color: var(--cod-gray);
    transform: translateY(-2px);
}

.site-footer {
    border-top: 1px solid rgba(135, 163, 189, 0.08);
    padding: 3rem clamp(24px, 5vw, 80px);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    display: flex;
    gap: 0.2em;
    align-items: baseline;
}

.footer-26 {
    color: var(--accent);
}

.footer-nav {
    display: flex;
    gap: 1.5rem 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

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

.footer-line {
    height: 1px;
    background: rgba(135, 163, 189, 0.08);
    margin-bottom: 2rem;
}

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

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 300;
}

.footer-credit {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 300;
}

.footer-credit a {
    color: var(--accent);
    transition: color 0.3s ease;
    font-weight: 500;
}

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

@media (max-width: 1024px) {
    .disciplines-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trofeo-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .trofeo-visual {
        order: -1;
    }

    .trofeo-img {
        max-height: 50vh;
    }

    .placeholder-tall {
        max-width: 300px;
        height: clamp(300px, 40vh, 450px);
    }

    .carousel-slide {
        flex: 0 0 50%;
    }

    .logo-variations {
        grid-template-columns: 1fr;
    }
}

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.15em;
    }

    .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 0.1em;
    }

    .section-number {
        font-size: clamp(3rem, 12vw, 5rem);
    }

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

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

    .stats-row {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .color-palette {
        flex-direction: column;
    }

    .swatch-color {
        height: 60px;
    }

    .type-display {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .footer-nav {
        gap: 1rem 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .cta-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .cta-content {
        padding: 0 clamp(16px, 4vw, 24px);
    }

    .gallery-item {
        width: 80vw;
    }

    .carousel-slide {
        flex: 0 0 100%;
    }

    .logo-variations {
        grid-template-columns: 1fr;
    }

    .placeholder-tall {
        max-width: 250px;
        height: 300px;
    }

    .placeholder-gallery {
        height: 280px;
    }
}

@media (min-width: 2000px) {
    .section-container {
        max-width: 1800px;
    }

    .nav-inner {
        max-width: 1800px;
    }

    .footer-inner {
        max-width: 1800px;
    }

    .section-number {
        font-size: 10rem;
    }

    .section-title {
        font-size: 6rem;
    }

    .hero-title {
        font-size: 18rem;
    }

    .concepto-title {
        font-size: 6.5rem;
    }

    .concepto-text {
        font-size: 1.2rem;
    }

    .discipline-card {
        padding: 3.5rem;
    }

    .discipline-name {
        font-size: 2rem;
    }

    .discipline-desc {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 9rem;
    }

    .cta-subtitle {
        font-size: 1.3rem;
    }

    .placeholder-gallery {
        height: 600px;
    }

    .carousel {
        max-width: 1800px;
    }

    .type-sample-headline {
        font-size: 6rem;
    }

    .type-sample-body {
        font-size: 4rem;
    }

    .logo-var {
        font-size: 5.5rem;
        padding: 6rem;
    }

    .swatch-color {
        height: 180px;
    }
}

@media (min-width: 3000px) {
    .section-container {
        max-width: 2400px;
    }

    .nav-inner {
        max-width: 2400px;
    }

    .footer-inner {
        max-width: 2400px;
    }

    .hero-title {
        font-size: 22rem;
    }

    .section-title {
        font-size: 8rem;
    }

    .concepto-title {
        font-size: 8rem;
    }

    .cta-title {
        font-size: 12rem;
    }

    .nav-logo {
        font-size: 2.2rem;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .placeholder-gallery {
        height: 750px;
    }

    .carousel {
        max-width: 2400px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-word,
    .hero-26 {
        opacity: 1;
        transform: none;
    }
}
