:root {
    --navy: #0c1a2a;
    --navy-mid: #132438;
    --navy-light: #1a2f47;
    --ivory: #faf8f4;
    --ivory-warm: #f3f0e8;
    --gold: #c2a24e;
    --gold-muted: #b89a47;
    --gold-pale: rgba(194, 162, 78, 0.12);
    --charcoal: #2c2c2c;
    --graphite: #5a5a58;
    --stone: #8a8884;
    --white: #ffffff;
    --rule: rgba(12, 26, 42, 0.1);
    --rule-light: rgba(255, 255, 255, 0.08);

    --display: 'Playfair Display', Georgia, serif;
    --body: 'Libre Franklin', Arial, sans-serif;
    --mono: 'IBM Plex Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    background: var(--ivory);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--rule);
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-nav a {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--graphite);
    transition: 0.25s ease;
}

.main-nav a:hover {
    color: var(--gold-muted);
}

.nav-cta {
    padding: 11px 22px;
    border: 1.5px solid var(--navy);
    color: var(--navy) !important;
    font-family: var(--mono);
    font-size: 0.65rem !important;
    letter-spacing: 0.12em !important;
}

.nav-cta:hover {
    background: var(--navy);
    color: var(--ivory) !important;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--navy);
    transition: 0.25s ease;
}

/* HERO */
.hero {
    padding: 84px 0 72px;
    border-bottom: 1px solid var(--rule);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
    align-items: center;
}

.eyebrow,
.section-label {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.section-label-light {
    color: var(--gold);
}

.hero h1,
.section-intro h2,
.section-header h2,
.cta-box h2 {
    font-family: var(--display);
    color: var(--navy);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.01em;
}

.hero h1 {
    font-size: clamp(2.3rem, 5vw, 4.1rem);
    max-width: 900px;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.04rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--graphite);
    max-width: 760px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1.5px solid transparent;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.btn-primary {
    background: var(--navy);
    color: var(--ivory);
    border-color: var(--navy);
}

.btn-primary:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
}

.btn-secondary {
    border-color: var(--navy);
    color: var(--navy);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--ivory);
}

.btn-light {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--ivory);
}

.btn-light:hover {
    background: var(--ivory);
    color: var(--navy);
}

.hero-card {
    align-self: stretch;
}

.hero-card-inner {
    height: 100%;
    padding: 34px;
    border: 1px solid var(--rule);
    background: linear-gradient(180deg, var(--ivory-warm), var(--ivory));
}

.mini-label {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 20px;
}

.hero-card ul {
    list-style: none;
}

.hero-card li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 14px;
    color: var(--graphite);
    font-size: 0.95rem;
    line-height: 1.7;
}

.hero-card li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    top: 11px;
    left: 0;
}

/* CREDENCIALES */
.credentials {
    padding: 28px 0;
    background: var(--navy);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--rule-light);
    border: 1px solid var(--rule-light);
}

.credential-item {
    background: var(--navy);
    color: rgba(250, 248, 244, 0.88);
    padding: 24px 22px;
    font-size: 0.82rem;
    line-height: 1.7;
}

/* SECTIONS */
.section {
    padding: 88px 0;
}

.section-light {
    background: var(--ivory);
}

.section-dark {
    background: var(--navy);
}

.section-dark h2,
.section-dark .section-subtext,
.section-dark .value-card h3,
.section-dark .value-card p {
    color: var(--ivory);
}

.section-dark .section-subtext {
    color: rgba(250, 248, 244, 0.72);
}

.two-col {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: start;
}

.section-intro h2,
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-content p,
.section-subtext,
.service-card p,
.point-card p,
.value-card p,
.cta-box p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--graphite);
}

.section-content p + p,
.cta-box p + p {
    margin-top: 18px;
}

.section-header {
    max-width: 860px;
    margin-bottom: 42px;
}

/* VALUE GRID */
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.value-card {
    background: var(--navy);
    padding: 36px 32px;
}

.value-card h3 {
    font-family: var(--display);
    font-size: 1.45rem;
    margin-bottom: 16px;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    border: 1px solid var(--rule);
    background: var(--white);
    padding: 34px 30px;
    position: relative;
}

.service-card.featured {
    grid-column: 1 / -1;
    border: 1.5px solid var(--gold);
    background: linear-gradient(180deg, #fcfaf6, #faf8f4);
}

.service-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-card h3,
.point-card h3 {
    font-family: var(--display);
    color: var(--navy);
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 14px;
}

/* POINTS */
.points-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.point-card {
    border: 1px solid var(--rule);
    background: var(--white);
    padding: 28px 24px;
}

/* AUDIENCE */
.audience-list {
    list-style: none;
}

.audience-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--graphite);
    line-height: 1.75;
}

.audience-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    position: absolute;
    left: 0;
    top: 10px;
}

/* CTA */
.cta-section {
    padding: 92px 0;
    background: var(--navy);
}

.cta-box {
    max-width: 920px;
}

.cta-box h2 {
    color: var(--ivory);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta-box p {
    color: rgba(250, 248, 244, 0.78);
    max-width: 760px;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1080px) {
    .hero-grid,
    .two-col,
    .points-grid,
    .credentials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid,
    .value-grid {
        grid-template-columns: 1fr;
    }

    .point-card {
        min-height: 100%;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--ivory);
        border-bottom: 1px solid var(--rule);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px 24px;
        gap: 18px;
    }

    .main-nav.open {
        display: flex;
    }

    .hero-grid,
    .two-col,
    .points-grid,
    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 64px;
    }

    .section,
    .cta-section {
        padding: 72px 0;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 32px, 1180px);
    }

    .hero h1,
    .section-intro h2,
    .section-header h2,
    .cta-box h2 {
        line-height: 1.16;
    }

    .btn {
        width: 100%;
    }

    .hero-card-inner,
    .service-card,
    .value-card,
    .point-card {
        padding: 26px 22px;
    }
}
.main-nav a.active {
    color: var(--navy);
}

.hero-internal {
    padding: 110px 0 72px;
    border-bottom: 1px solid var(--rule);
}

.hero-narrow {
    max-width: 900px;
}

.content-wide {
    max-width: 980px;
}

.content-wide p {
    font-size: 0.96rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--graphite);
    margin-bottom: 18px;
}

.content-wide p:last-child {
    margin-bottom: 0;
}

.services-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.featured-service {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 0;
    border: 1.5px solid var(--gold);
    background: linear-gradient(180deg, #fcfaf6, #faf8f4);
}

.service-detail-card {
    overflow: hidden;
}

.service-detail-content {
    padding: 38px 34px;
    border-right: 1px solid var(--rule);
}

.service-detail-content p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--graphite);
    margin-bottom: 18px;
}

.service-detail-content p:last-child {
    margin-bottom: 0;
}

.service-detail-side {
    padding: 38px 30px;
    background: rgba(194, 162, 78, 0.06);
}

.service-benefits {
    list-style: none;
}

.service-benefits li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 14px;
    color: var(--graphite);
    font-size: 0.92rem;
    line-height: 1.7;
}

.service-benefits li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    position: absolute;
    left: 0;
    top: 10px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-card {
    background: var(--navy);
    padding: 34px 28px;
}

.process-number {
    display: inline-block;
    margin-bottom: 16px;
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    color: var(--gold);
}

.process-card h3 {
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--ivory);
    margin-bottom: 14px;
}

.process-card p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(250, 248, 244, 0.72);
}

@media (max-width: 980px) {
    .featured-service,
    .process-grid,
    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-content {
        border-right: none;
        border-bottom: 1px solid var(--rule);
    }
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.client-card {
    border: 1px solid var(--rule);
    background: var(--white);
    padding: 32px 28px;
}

.client-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    background: var(--gold-pale);
    color: var(--gold-muted);
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.client-card h3 {
    font-family: var(--display);
    color: var(--navy);
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 14px;
}

.client-card p {
    font-size: 0.94rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--graphite);
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.scenario-card {
    background: var(--navy);
    padding: 32px 28px;
}

.scenario-card h3 {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--ivory);
    margin-bottom: 14px;
}

.scenario-card p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(250, 248, 244, 0.72);
}

.org-layout {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 40px;
    align-items: start;
}

.org-copy p {
    font-size: 0.96rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--graphite);
    margin-bottom: 18px;
}

.org-copy p:last-child {
    margin-bottom: 0;
}

.org-points {
    border: 1px solid var(--rule);
    background: var(--white);
    padding: 28px 24px;
}

@media (max-width: 980px) {
    .client-grid,
    .scenario-grid,
    .org-layout {
        grid-template-columns: 1fr;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--display);
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--navy);
}

.contact-info p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--graphite);
    margin-bottom: 18px;
}

.contact-options {
    margin-top: 30px;
    display: grid;
    gap: 20px;
}

.contact-option {
    border: 1px solid var(--rule);
    padding: 20px;
    background: var(--white);
}

.contact-option h3 {
    font-family: var(--display);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--navy);
    border-bottom: 1px solid var(--navy);
}

.contact-form-box {
    border: 1px solid var(--rule);
    padding: 30px;
    background: var(--white);
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    font-size: 0.7rem;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--rule);
    font-size: 0.9rem;
    font-family: var(--body);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--navy);
}

@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* HERO */
.hero {
    position: relative;
    padding: clamp(70px, 8vh, 92px) 0 clamp(54px, 6vh, 74px);
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
}

.hero-clean {
    background:
        radial-gradient(circle at 78% 46%, rgba(194, 162, 78, 0.08), transparent 31%),
        linear-gradient(90deg, var(--ivory) 0%, #fbfaf7 54%, var(--ivory-warm) 100%);
}

.hero-clean-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
    gap: clamp(52px, 7vw, 96px);
    align-items: center;
}

.hero-copy {
    max-width: 690px;
}

.eyebrow,
.section-label {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.section-label-light {
    color: var(--gold);
}

.hero h1,
.section-intro h2,
.section-header h2,
.cta-box h2 {
    font-family: var(--display);
    color: var(--navy);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.hero h1 {
    font-size: clamp(3rem, 5.4vw, 5.55rem);
    max-width: 720px;
    margin-bottom: 28px;
}

.hero h1::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    background: var(--gold);
    margin-top: 24px;
}

.hero-text {
    max-width: 620px;
    font-size: clamp(1rem, 1.18vw, 1.14rem);
    font-weight: 300;
    line-height: 1.78;
    color: var(--graphite);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1.5px solid transparent;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.btn-primary {
    background: var(--navy);
    color: var(--ivory);
    border-color: var(--navy);
}

.btn-primary:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
}

.btn-secondary {
    border-color: var(--navy);
    color: var(--navy);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--ivory);
}

.btn-light {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--ivory);
}

.btn-light:hover {
    background: var(--ivory);
    color: var(--navy);
}

.hero-mark {
    position: relative;
    min-height: 360px;
    display: grid;
    grid-template-columns: 1px minmax(0, 1fr) 1px;
    align-items: center;
    gap: clamp(34px, 4vw, 58px);
}

.hero-mark-line,
.hero-mark-line-right {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(194, 162, 78, 0.6), transparent);
}

.hero-mark-content {
    position: relative;
    z-index: 2;
    max-width: 320px;
}

.hero-mark-accent {
    display: block;
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
}

.hero-mark-content p {
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.5;
    color: var(--charcoal);
}

.hero-monogram {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    font-family: var(--display);
    font-size: clamp(8rem, 15vw, 14rem);
    line-height: 1;
    letter-spacing: -0.08em;
    color: rgba(12, 26, 42, 0.035);
    text-shadow:
        1px 1px 0 rgba(255, 255, 255, 0.72),
        -1px -1px 0 rgba(12, 26, 42, 0.035);
    pointer-events: none;
    user-select: none;
}

/* FOCUS STRIP */
.focus-strip {
    position: relative;
    background: linear-gradient(180deg, var(--ivory-warm), var(--ivory));
    border-bottom: 1px solid var(--rule);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 174px;
}

.focus-item {
    position: relative;
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    padding: 34px 26px;
}

.focus-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 34px;
    right: 0;
    bottom: 34px;
    width: 1px;
    background: var(--rule);
}

.focus-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    color: var(--gold-muted);
}

.focus-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.focus-item h2 {
    max-width: 190px;
    font-family: var(--display);
    color: var(--navy);
    font-size: clamp(1rem, 1.15vw, 1.25rem);
    font-weight: 500;
    line-height: 1.25;
}

.focus-item h2::after {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    margin: 18px auto 0;
}
/* HERO */
.hero {
    position: relative;
    padding: clamp(42px, 5vh, 56px) 0 clamp(38px, 4vh, 52px);
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
}

.hero-clean {
    background:
        radial-gradient(circle at 78% 46%, rgba(194, 162, 78, 0.08), transparent 31%),
        linear-gradient(90deg, var(--ivory) 0%, #fbfaf7 54%, var(--ivory-warm) 100%);
}

.hero-clean-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
    gap: clamp(34px, 4vw, 56px);
    align-items: center;
}

.hero-copy {
    max-width: 690px;
}

.eyebrow,
.section-label {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.section-label-light {
    color: var(--gold);
}

.hero h1,
.section-intro h2,
.section-header h2,
.cta-box h2 {
    font-family: var(--display);
    color: var(--navy);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.hero h1 {
    font-size: clamp(2.3rem, 4vw, 4.2rem);
    max-width: 640px;
    margin-bottom: 20px;
}

.hero h1::after {
    content: "";
    display: block;
    width: 38px;
    height: 2px;
    background: var(--gold);
    margin-top: 18px;
}

.hero-text {
    max-width: 580px;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--graphite);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1.5px solid transparent;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.btn-primary {
    background: var(--navy);
    color: var(--ivory);
    border-color: var(--navy);
}

.btn-primary:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
}

.btn-secondary {
    border-color: var(--navy);
    color: var(--navy);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--ivory);
}

.btn-light {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--ivory);
}

.btn-light:hover {
    background: var(--ivory);
    color: var(--navy);
}

.hero-mark {
    position: relative;
    min-height: 260px;
    display: grid;
    grid-template-columns: 1px minmax(0, 1fr) 1px;
    align-items: center;
    gap: clamp(22px, 3vw, 34px);
}

.hero-mark-line,
.hero-mark-line-right {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(194, 162, 78, 0.55), transparent);
}

.hero-mark-content {
    position: relative;
    z-index: 2;
    max-width: 250px;
}

.hero-mark-accent {
    display: block;
    width: 44px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 18px;
}

.hero-mark-content p {
    font-size: 0.98rem;
    line-height: 1.45;
    color: var(--charcoal);
}

.hero-monogram {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    font-family: var(--display);
    font-size: clamp(5.5rem, 9vw, 8.5rem);
    line-height: 1;
    letter-spacing: -0.08em;
    color: rgba(12, 26, 42, 0.03);
    text-shadow:
        1px 1px 0 rgba(255, 255, 255, 0.72),
        -1px -1px 0 rgba(12, 26, 42, 0.03);
    pointer-events: none;
    user-select: none;
}

/* FOCUS STRIP */
.focus-strip {
    position: relative;
    background: linear-gradient(180deg, var(--ivory-warm), var(--ivory));
    border-bottom: 1px solid var(--rule);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 154px;
}

.focus-item {
    position: relative;
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    padding: 28px 22px;
}

.focus-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    right: 0;
    bottom: 30px;
    width: 1px;
    background: var(--rule);
}

.focus-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
    color: var(--gold-muted);
}

.focus-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.focus-item h2 {
    max-width: 190px;
    font-family: var(--display);
    color: var(--navy);
    font-size: clamp(0.95rem, 1vw, 1.15rem);
    font-weight: 500;
    line-height: 1.25;
}

.focus-item h2::after {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    margin: 14px auto 0;
}
/* HERO + FOCUS RESPONSIVE */
@media (max-width: 1080px) {
    .hero-clean-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-mark {
        min-height: 200px;
        grid-template-columns: 1px minmax(0, 1fr);
        padding-right: 0;
    }

    .hero-mark-line-right {
        display: none;
    }

    .hero-monogram {
        right: 0;
        font-size: 6.5rem;
    }

    .focus-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .focus-item:nth-child(3)::after {
        display: none;
    }

    .focus-item:nth-child(-n + 3) {
        border-bottom: 1px solid var(--rule);
    }
}

@media (max-width: 720px) {
    .hero {
        padding: 42px 0 42px;
    }

    .hero h1 {
        font-size: clamp(2.1rem, 11vw, 3.3rem);
    }

    .hero-actions {
        gap: 12px;
    }

    .hero-mark {
        min-height: auto;
        display: block;
        padding: 20px 0 0;
        border-top: 1px solid var(--rule);
    }

    .hero-mark-line {
        display: none;
    }

    .hero-mark-content {
        max-width: 100%;
    }

    .hero-monogram {
        right: 0;
        top: 55%;
        font-size: 5rem;
    }

    .focus-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .focus-item {
        padding: 28px 24px;
    }

    .focus-item:not(:last-child)::after {
        display: none;
    }

    .focus-item {
        border-bottom: 1px solid var(--rule);
    }

    .focus-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 520px) {
    .hero-actions .btn {
        width: 100%;
    }

    .hero-monogram {
        opacity: 0.55;
    }
}
/* TOP CONTACT BAR */
.top-contact-bar {
    position: relative;
    z-index: 60;
    background: var(--navy);
    border-bottom: 1px solid rgba(250, 248, 244, 0.08);
}

.top-contact-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.top-contact-mail {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(250, 248, 244, 0.78);
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    line-height: 1;
    transition: color 0.22s ease;
}

.top-contact-mail:hover {
    color: var(--gold);
}

.top-contact-mail svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.top-contact-social {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.top-contact-social a {
    width: 27px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(250, 248, 244, 0.76);
    border: 1px solid rgba(250, 248, 244, 0.13);
    border-radius: 50%;
    transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.top-contact-social a:hover {
    color: var(--gold);
    border-color: rgba(194, 162, 78, 0.5);
    background: rgba(250, 248, 244, 0.035);
    transform: translateY(-1px);
}

.top-contact-social svg {
    width: 13.5px;
    height: 13.5px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Facebook icon needs fill */
.top-contact-social a:first-child svg {
    fill: currentColor;
    stroke: none;
}

/* LinkedIn icon needs fill */
.top-contact-social a:last-child svg {
    fill: currentColor;
    stroke: none;
}

@media (max-width: 760px) {
    .top-contact-inner {
        min-height: 38px;
        gap: 14px;
    }

    .top-contact-mail {
        font-size: 0.58rem;
        letter-spacing: 0.08em;
    }

    .top-contact-mail svg {
        width: 13px;
        height: 13px;
    }

    .top-contact-social {
        gap: 5px;
    }

    .top-contact-social a {
        width: 26px;
        height: 26px;
    }

    .top-contact-social svg {
        width: 13px;
        height: 13px;
    }
}

@media (max-width: 520px) {
    .top-contact-inner {
        justify-content: center;
        flex-wrap: wrap;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .top-contact-mail {
        width: 100%;
        justify-content: center;
    }

    .top-contact-social {
        justify-content: center;
    }
}
/* CREDENTIALS PREMIUM */
.credentials-premium {
    position: relative;
    padding: clamp(56px, 6vw, 78px) 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(194, 162, 78, 0.18), transparent 32%),
        linear-gradient(135deg, rgba(12, 26, 42, 0.98), rgba(21, 37, 53, 0.96));
    color: var(--ivory);
    overflow: hidden;
}

.credentials-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(250, 248, 244, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(250, 248, 244, 0.028) 1px, transparent 1px);
    background-size: 68px 68px;
    opacity: 0.28;
    pointer-events: none;
}

.credentials-premium .container {
    position: relative;
    z-index: 1;
}

.credentials-head {
    max-width: 760px;
    margin-bottom: 38px;
}

.credentials-head h2 {
    max-width: 680px;
    font-family: var(--display);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--ivory);
    margin-bottom: 18px;
}

.credentials-head p {
    max-width: 670px;
    color: rgba(250, 248, 244, 0.72);
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.72;
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1.08fr repeat(3, 1fr);
    gap: 14px;
}

.credential-card {
    position: relative;
    min-height: 218px;
    padding: 34px 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(180deg, rgba(250, 248, 244, 0.075), rgba(250, 248, 244, 0.045));
    border: 1px solid rgba(250, 248, 244, 0.12);
    box-shadow: inset 0 1px 0 rgba(250, 248, 244, 0.04);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.credential-card::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 28px;
    width: 34px;
    height: 2px;
    background: var(--gold);
}

.credential-card:hover {
    transform: translateY(-3px);
    background:
        linear-gradient(180deg, rgba(250, 248, 244, 0.095), rgba(250, 248, 244, 0.055));
    border-color: rgba(194, 162, 78, 0.42);
}

.credential-card-featured {
    background:
        linear-gradient(145deg, rgba(194, 162, 78, 0.2), rgba(250, 248, 244, 0.055)),
        rgba(250, 248, 244, 0.06);
    border-color: rgba(194, 162, 78, 0.44);
}

.credential-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.credential-card h3 {
    max-width: 230px;
    font-family: var(--display);
    font-size: clamp(1.28rem, 1.45vw, 1.68rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--ivory);
    margin-bottom: 12px;
}

.credential-card p {
    max-width: 260px;
    color: rgba(250, 248, 244, 0.72);
    font-size: 0.87rem;
    font-weight: 300;
    line-height: 1.6;
}

.credentials-action {
    margin-top: 30px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    transition: color 0.22s ease, gap 0.22s ease;
}

.text-link::after {
    content: "→";
    font-size: 1rem;
    line-height: 1;
}

.text-link:hover {
    color: var(--ivory);
    gap: 14px;
}

@media (max-width: 1080px) {
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .credential-card {
        min-height: 210px;
    }
}

@media (max-width: 680px) {
    .credentials-premium {
        padding: 54px 0;
    }

    .credentials-head {
        margin-bottom: 30px;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .credential-card {
        min-height: auto;
        padding: 30px 24px 26px;
    }
}
/* VALUE PROPOSITION PREMIUM */
.value-premium {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(194, 162, 78, 0.16), transparent 30%),
        radial-gradient(circle at 88% 70%, rgba(250, 248, 244, 0.08), transparent 28%),
        linear-gradient(135deg, rgba(12, 26, 42, 0.99), rgba(20, 38, 55, 0.96));
}

.value-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(250, 248, 244, 0.032) 1px, transparent 1px),
        linear-gradient(180deg, rgba(250, 248, 244, 0.026) 1px, transparent 1px);
    background-size: 76px 76px;
    opacity: 0.34;
    pointer-events: none;
}

.value-premium .container {
    position: relative;
    z-index: 1;
}

.value-premium-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(42px, 6vw, 86px);
    align-items: start;
}

.value-intro {
    position: sticky;
    top: 110px;
    align-self: start;
}

.value-intro h2 {
    max-width: 560px;
    font-family: var(--display);
    font-size: clamp(2.15rem, 3.35vw, 3.5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--ivory);
    margin-bottom: 22px;
}

.value-intro .section-subtext {
    max-width: 520px;
    color: rgba(250, 248, 244, 0.72);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.78;
}

.value-statement {
    margin-top: 34px;
    padding: 26px 28px;
    border-left: 2px solid var(--gold);
    background: rgba(250, 248, 244, 0.055);
}

.value-statement span {
    display: block;
    margin-bottom: 8px;
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.value-statement strong {
    display: block;
    max-width: 340px;
    font-family: var(--display);
    font-size: clamp(1.35rem, 1.8vw, 1.85rem);
    font-weight: 500;
    line-height: 1.18;
    color: var(--ivory);
}

.value-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    transition: color 0.22s ease, gap 0.22s ease;
}

.value-link::after {
    content: "→";
    font-size: 1rem;
    line-height: 1;
}

.value-link:hover {
    color: var(--ivory);
    gap: 14px;
}

.value-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.value-premium .value-card {
    position: relative;
    min-height: 300px;
    padding: 34px 32px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(180deg, rgba(250, 248, 244, 0.078), rgba(250, 248, 244, 0.045));
    border: 1px solid rgba(250, 248, 244, 0.12);
    box-shadow: inset 0 1px 0 rgba(250, 248, 244, 0.04);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.value-premium .value-card::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 32px;
    width: 36px;
    height: 2px;
    background: var(--gold);
}

.value-premium .value-card::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(194, 162, 78, 0.16);
    border-radius: 50%;
    pointer-events: none;
}

.value-premium .value-card:hover {
    transform: translateY(-4px);
    background:
        linear-gradient(180deg, rgba(250, 248, 244, 0.105), rgba(250, 248, 244, 0.055));
    border-color: rgba(194, 162, 78, 0.45);
}

.value-index {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: var(--display);
    font-size: clamp(2.8rem, 4.2vw, 4.7rem);
    line-height: 1;
    letter-spacing: -0.08em;
    color: rgba(194, 162, 78, 0.28);
}

.value-premium .value-card h3 {
    position: relative;
    z-index: 1;
    max-width: 280px;
    font-family: var(--display);
    font-size: clamp(1.35rem, 1.65vw, 1.85rem);
    font-weight: 500;
    line-height: 1.14;
    color: var(--ivory);
    margin-bottom: 16px;
}

.value-premium .value-card p {
    position: relative;
    z-index: 1;
    color: rgba(250, 248, 244, 0.7);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.68;
}

@media (max-width: 1080px) {
    .value-premium-layout {
        grid-template-columns: 1fr;
    }

    .value-intro {
        position: relative;
        top: auto;
    }

    .value-intro h2,
    .value-intro .section-subtext {
        max-width: 760px;
    }
}

@media (max-width: 760px) {
    .value-premium-grid {
        grid-template-columns: 1fr;
    }

    .value-premium .value-card {
        min-height: auto;
        padding: 88px 26px 28px;
    }

    .value-index {
        top: 24px;
        right: 26px;
        font-size: 3.4rem;
    }

    .value-statement {
        padding: 24px;
    }
}
/* SERVICES PREMIUM */
.services-premium {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 12%, rgba(194, 162, 78, 0.12), transparent 28%),
        linear-gradient(180deg, var(--ivory), var(--ivory-warm));
}

.services-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 26, 42, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(12, 26, 42, 0.025) 1px, transparent 1px);
    background-size: 82px 82px;
    opacity: 0.35;
    pointer-events: none;
}

.services-premium .container {
    position: relative;
    z-index: 1;
}

.services-premium-head {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: end;
    margin-bottom: 44px;
}

.services-premium-head h2 {
    max-width: 760px;
    font-family: var(--display);
    font-size: clamp(2.15rem, 3.4vw, 3.55rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--navy);
}

.services-premium-intro {
    position: relative;
    max-width: 440px;
    padding-left: 24px;
    border-left: 2px solid var(--gold);
    color: var(--graphite);
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.72;
}

.services-premium-grid {
    display: grid;
    grid-template-columns: 1.18fr 1fr 1fr;
    gap: 16px;
}

.services-premium .service-card {
    position: relative;
    min-height: 295px;
    padding: 32px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(250, 248, 244, 0.96));
    border: 1px solid rgba(12, 26, 42, 0.1);
    box-shadow: 0 24px 58px rgba(12, 26, 42, 0.055);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.services-premium .service-card::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 30px;
    width: 36px;
    height: 2px;
    background: var(--gold);
}

.services-premium .service-card::after {
    content: "";
    position: absolute;
    right: -92px;
    top: -92px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(194, 162, 78, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.services-premium .service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(194, 162, 78, 0.38);
    box-shadow: 0 30px 72px rgba(12, 26, 42, 0.09);
}

.services-premium .service-card-main {
    grid-row: span 2;
    min-height: 606px;
    background:
        linear-gradient(145deg, rgba(12, 26, 42, 0.96), rgba(20, 38, 55, 0.94)),
        radial-gradient(circle at 14% 18%, rgba(194, 162, 78, 0.24), transparent 34%);
    color: var(--ivory);
    border-color: rgba(194, 162, 78, 0.35);
    box-shadow: 0 34px 80px rgba(12, 26, 42, 0.18);
}

.service-icon {
    position: absolute;
    top: 34px;
    right: 30px;
    width: 44px;
    height: 44px;
    color: var(--gold-muted);
    opacity: 0.9;
}

.service-card-main .service-icon {
    width: 58px;
    height: 58px;
    color: var(--gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-tag {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 20px;
    padding: 8px 11px;
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(194, 162, 78, 0.42);
    background: rgba(194, 162, 78, 0.08);
}

.services-premium .service-card h3 {
    position: relative;
    z-index: 1;
    max-width: 420px;
    font-family: var(--display);
    font-size: clamp(1.25rem, 1.55vw, 1.7rem);
    font-weight: 500;
    line-height: 1.16;
    color: var(--navy);
    margin-bottom: 14px;
}

.services-premium .service-card-main h3 {
    max-width: 460px;
    font-size: clamp(1.8rem, 2.4vw, 2.55rem);
    color: var(--ivory);
}

.services-premium .service-card p {
    position: relative;
    z-index: 1;
    color: var(--graphite);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.68;
}

.services-premium .service-card-main p {
    max-width: 500px;
    color: rgba(250, 248, 244, 0.72);
    font-size: 0.98rem;
    line-height: 1.78;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: 28px;
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    transition: color 0.22s ease, gap 0.22s ease;
}

.service-card-link::after {
    content: "→";
    font-size: 1rem;
    line-height: 1;
}

.service-card-link:hover {
    color: var(--ivory);
    gap: 14px;
}

.services-action {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

@media (max-width: 1120px) {
    .services-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-premium .service-card-main {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 420px;
    }
}

@media (max-width: 840px) {
    .services-premium-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .services-premium-intro {
        max-width: 680px;
    }
}

@media (max-width: 680px) {
    .services-premium-grid {
        grid-template-columns: 1fr;
    }

    .services-premium .service-card,
    .services-premium .service-card-main {
        min-height: auto;
        padding: 96px 26px 30px;
    }

    .services-premium .service-card-main h3 {
        font-size: clamp(1.65rem, 8vw, 2.2rem);
    }

    .service-icon {
        top: 28px;
        right: 26px;
    }

    .services-action .btn {
        width: 100%;
    }
}
/* DIFFERENTIATORS EDITORIAL */
.differentiators-editorial {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(12, 26, 42, 0.98), rgba(18, 34, 50, 0.96)),
        radial-gradient(circle at 90% 20%, rgba(194, 162, 78, 0.18), transparent 32%);
    color: var(--ivory);
}

.differentiators-editorial::before {
    content: "CG";
    position: absolute;
    right: -4vw;
    bottom: -5vw;
    font-family: var(--display);
    font-size: clamp(12rem, 28vw, 24rem);
    line-height: 1;
    letter-spacing: -0.1em;
    color: rgba(250, 248, 244, 0.025);
    pointer-events: none;
}

.diff-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(44px, 7vw, 96px);
    align-items: start;
}

.diff-copy {
    max-width: 520px;
}

.diff-copy h2 {
    font-family: var(--display);
    font-size: clamp(2.25rem, 3.7vw, 3.85rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--ivory);
    margin-bottom: 22px;
}

.diff-copy p {
    color: rgba(250, 248, 244, 0.72);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.78;
}

.diff-list {
    border-top: 1px solid rgba(250, 248, 244, 0.14);
}

.diff-item {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 28px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(250, 248, 244, 0.14);
}

.diff-number {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    color: var(--gold);
    padding-top: 8px;
}

.diff-item h3 {
    font-family: var(--display);
    font-size: clamp(1.45rem, 2vw, 2.15rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--ivory);
    margin-bottom: 10px;
}

.diff-item p {
    max-width: 680px;
    color: rgba(250, 248, 244, 0.68);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.68;
}

@media (max-width: 900px) {
    .diff-layout {
        grid-template-columns: 1fr;
    }

    .diff-copy {
        max-width: 760px;
    }
}

@media (max-width: 560px) {
    .diff-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 26px 0;
    }

    .diff-number {
        padding-top: 0;
    }
}
/* AUDIENCE MAP */
.audience-map {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 20%, rgba(194, 162, 78, 0.11), transparent 28%),
        linear-gradient(180deg, var(--ivory-warm), var(--ivory));
}

.audience-map::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 26, 42, 0.028) 1px, transparent 1px),
        linear-gradient(180deg, rgba(12, 26, 42, 0.022) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.32;
    pointer-events: none;
}

.audience-map .container {
    position: relative;
    z-index: 1;
}

.audience-map-head {
    max-width: 760px;
    margin-bottom: 44px;
}

.audience-map-head h2 {
    font-family: var(--display);
    font-size: clamp(2.2rem, 3.5vw, 3.65rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin-bottom: 18px;
}

.audience-map-head p {
    max-width: 640px;
    color: var(--graphite);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.76;
}

.audience-board {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 18px;
    align-items: stretch;
}

.audience-roles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid rgba(12, 26, 42, 0.12);
    background: rgba(255, 255, 255, 0.38);
}

.audience-role {
    min-height: 168px;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 1px solid rgba(12, 26, 42, 0.1);
}

.audience-role:nth-child(odd) {
    border-right: 1px solid rgba(12, 26, 42, 0.1);
}

.audience-role:nth-child(3),
.audience-role:nth-child(4) {
    border-bottom: none;
}

.audience-role span {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    color: var(--gold);
}

.audience-role h3 {
    max-width: 280px;
    font-family: var(--display);
    font-size: clamp(1.35rem, 1.9vw, 2rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--navy);
}

.audience-feature {
    position: relative;
    min-height: 360px;
    padding: 36px 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(145deg, rgba(12, 26, 42, 0.96), rgba(18, 34, 50, 0.94)),
        radial-gradient(circle at 18% 18%, rgba(194, 162, 78, 0.22), transparent 36%);
    color: var(--ivory);
    overflow: hidden;
}

.audience-feature::before {
    content: "Perfil";
    position: absolute;
    top: 28px;
    right: 28px;
    font-family: var(--display);
    font-size: clamp(3.8rem, 7vw, 6.8rem);
    line-height: 1;
    letter-spacing: -0.08em;
    color: rgba(250, 248, 244, 0.055);
}

.audience-feature-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.audience-feature p {
    position: relative;
    z-index: 1;
    max-width: 440px;
    font-family: var(--display);
    font-size: clamp(1.55rem, 2.2vw, 2.35rem);
    font-weight: 400;
    line-height: 1.18;
    color: var(--ivory);
}

.audience-feature-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: 28px;
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    transition: color 0.22s ease, gap 0.22s ease;
}

.audience-feature-link::after {
    content: "→";
    font-size: 1rem;
    line-height: 1;
}

.audience-feature-link:hover {
    color: var(--ivory);
    gap: 14px;
}

@media (max-width: 980px) {
    .audience-board {
        grid-template-columns: 1fr;
    }

    .audience-feature {
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .audience-roles {
        grid-template-columns: 1fr;
    }

    .audience-role,
    .audience-role:nth-child(odd),
    .audience-role:nth-child(3) {
        border-right: none;
        border-bottom: 1px solid rgba(12, 26, 42, 0.1);
    }

    .audience-role:last-child {
        border-bottom: none;
    }

    .audience-feature {
        min-height: auto;
        padding: 34px 26px;
    }
}
/* CTA PREMIUM */
.cta-premium {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 8vw, 104px) 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(194, 162, 78, 0.18), transparent 32%),
        linear-gradient(135deg, rgba(12, 26, 42, 0.98), rgba(18, 34, 50, 0.96));
    color: var(--ivory);
}

.cta-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(250, 248, 244, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(250, 248, 244, 0.028) 1px, transparent 1px);
    background-size: 76px 76px;
    opacity: 0.28;
    pointer-events: none;
}

.cta-premium-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
    gap: clamp(42px, 6vw, 84px);
    align-items: stretch;
}

.cta-premium-copy h2 {
    max-width: 820px;
    font-family: var(--display);
    font-size: clamp(2.25rem, 4vw, 4.2rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--ivory);
    margin-bottom: 24px;
}

.cta-premium-copy p {
    max-width: 720px;
    color: rgba(250, 248, 244, 0.72);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.78;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.cta-contact-card {
    position: relative;
    padding: 34px 32px;
    background: rgba(250, 248, 244, 0.06);
    border: 1px solid rgba(250, 248, 244, 0.13);
    box-shadow: inset 0 1px 0 rgba(250, 248, 244, 0.04);
}

.cta-contact-card::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 32px;
    width: 38px;
    height: 2px;
    background: var(--gold);
}

.cta-card-label {
    display: block;
    margin-top: 38px;
    margin-bottom: 26px;
    font-family: var(--mono);
    font-size: 0.64rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.cta-contact-list {
    display: grid;
    gap: 18px;
}

.cta-contact-list a {
    display: grid;
    gap: 6px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(250, 248, 244, 0.12);
    color: rgba(250, 248, 244, 0.82);
    transition: color 0.22s ease;
}

.cta-contact-list a:hover {
    color: var(--gold);
}

.cta-contact-list span {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(194, 162, 78, 0.9);
}

/* SOCIAL ICONS */
.cta-social-icons,
.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-social-icons {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(250, 248, 244, 0.12);
}

.cta-social-icons a,
.footer-social-icons a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(250, 248, 244, 0.78);
    border: 1px solid rgba(250, 248, 244, 0.15);
    border-radius: 50%;
    transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.cta-social-icons a:hover,
.footer-social-icons a:hover {
    color: var(--gold);
    border-color: rgba(194, 162, 78, 0.5);
    background: rgba(250, 248, 244, 0.04);
    transform: translateY(-1px);
}

.cta-social-icons svg,
.footer-social-icons svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cta-social-icons a:first-child svg,
.cta-social-icons a:last-child svg,
.footer-social-icons a:first-child svg,
.footer-social-icons a:last-child svg {
    fill: currentColor;
    stroke: none;
}

/* FOOTER */
.site-footer {
    background: #07111d;
    color: rgba(250, 248, 244, 0.72);
    border-top: 1px solid rgba(250, 248, 244, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.45fr) minmax(240px, 0.55fr);
    gap: clamp(34px, 6vw, 86px);
    padding: 54px 0 42px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 18px;
    font-family: var(--display);
    font-size: 1.45rem;
    color: var(--ivory);
}

.footer-brand p {
    max-width: 460px;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.72;
    color: rgba(250, 248, 244, 0.62);
}

.footer-nav,
.footer-contact {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-nav p,
.footer-contact p {
    margin-bottom: 10px;
    font-family: var(--mono);
    font-size: 0.64rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-nav a,
.footer-contact > a {
    width: fit-content;
    color: rgba(250, 248, 244, 0.68);
    font-size: 0.88rem;
    transition: color 0.22s ease;
}

.footer-nav a:hover,
.footer-contact > a:hover {
    color: var(--gold);
}

.footer-social-icons {
    margin-top: 18px;
}

.footer-bottom {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid rgba(250, 248, 244, 0.08);
}

.footer-bottom p {
    color: rgba(250, 248, 244, 0.48);
    font-size: 0.78rem;
}

@media (max-width: 940px) {
    .cta-premium-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-contact-card {
        max-width: 620px;
    }
}

@media (max-width: 620px) {
    .cta-actions .btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* =========================================================
   PÁGINA NOSOTROS
   ========================================================= */

.main-nav a[aria-current="page"],
.footer-nav a[aria-current="page"] {
    color: var(--gold-muted);
}


/* HERO
   ========================================================= */

.about-hero {
    position: relative;
    padding: 76px 0 88px;
    overflow: hidden;
    background: var(--ivory);
    border-bottom: 1px solid var(--rule);
}

.about-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -210px;
    border: 1px solid rgba(194, 162, 78, 0.22);
    border-radius: 50%;
}

.about-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(420px, 1.08fr);
    gap: clamp(46px, 7vw, 94px);
    align-items: center;
}

.about-hero-copy h1 {
    max-width: 720px;
    margin-bottom: 26px;
    font-family: var(--display);
    font-size: clamp(2.55rem, 5vw, 4.65rem);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: var(--navy);
}

.about-hero-lead {
    max-width: 690px;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.92;
    color: var(--graphite);
}

.about-hero-media {
    position: relative;
    margin: 0;
    padding: 18px 0 48px 18px;
}

.about-photo-frame {
    position: relative;
    z-index: 1;
    background: var(--navy);
    box-shadow: 0 24px 70px rgba(12, 26, 42, 0.16);
}

.about-photo-frame::before {
    content: "";
    position: absolute;
    inset: -18px 18px 18px -18px;
    z-index: -1;
    border: 1px solid rgba(194, 162, 78, 0.5);
}

.about-photo-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 1.38 / 1;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.78) contrast(1.03);
}

.about-photo-note {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    min-width: min(370px, 82%);
    padding: 20px 24px;
    background: var(--navy);
    color: var(--ivory);
    box-shadow: 0 16px 34px rgba(12, 26, 42, 0.2);
}

.about-photo-note span,
.about-role,
.about-period {
    display: block;
    margin-bottom: 7px;
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.about-photo-note strong {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}


/* ORIGEN
   ========================================================= */

.about-origin {
    align-items: center;
}


/* EVOLUCIÓN DE LA FIRMA
   ========================================================= */

.about-evolution {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
    background: var(--navy);
}

.about-evolution::after {
    content: "CG";
    position: absolute;
    right: -15px;
    bottom: -95px;
    font-family: var(--display);
    font-size: clamp(12rem, 24vw, 24rem);
    line-height: 1;
    color: rgba(255, 255, 255, 0.025);
    pointer-events: none;
}

.about-evolution .section-header {
    position: relative;
    z-index: 1;
}

.about-evolution .section-header h2 {
    color: var(--ivory);
}

.about-evolution .section-subtext {
    color: rgba(250, 248, 244, 0.68);
}

.about-evolution-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(250, 248, 244, 0.12);
    border-bottom: 1px solid rgba(250, 248, 244, 0.12);
}

.about-evolution-card {
    position: relative;
    min-height: 390px;
    padding: 40px 34px 44px;
    border-right: 1px solid rgba(250, 248, 244, 0.12);
}

.about-evolution-card:last-child {
    border-right: 0;
}

.about-step {
    display: inline-flex;
    margin-bottom: 72px;
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    color: rgba(250, 248, 244, 0.38);
}

.about-evolution-card h3 {
    max-width: 300px;
    margin-bottom: 18px;
    font-family: var(--display);
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.28;
    color: var(--ivory);
}

.about-evolution-card > p:last-child {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.82;
    color: rgba(250, 248, 244, 0.66);
}


/* EQUIPO DIRECTIVO
   ========================================================= */

.about-team-section {
    background: var(--ivory-warm);
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.about-team-card {
    display: grid;
    grid-template-columns:
        minmax(190px, 0.78fr)
        minmax(0, 1.22fr);
    min-height: 490px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--rule);
}

.about-team-photo {
    min-height: 100%;
    background: var(--navy);
}

.about-team-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 490px;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.72) contrast(1.02);
}

.about-team-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 34px;
}

.about-team-copy h3 {
    margin-bottom: 24px;
    font-family: var(--display);
    font-size: clamp(2rem, 3vw, 2.65rem);
    font-weight: 400;
    color: var(--navy);
}

.about-team-copy p:not(.about-role) {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--graphite);
}

.about-team-copy p + p {
    margin-top: 16px;
}


/* PRINCIPIOS DE TRABAJO
   ========================================================= */

.about-principles-section {
    background: var(--ivory);
}

.about-principles-head {
    display: grid;
    grid-template-columns: 1.05fr 0.75fr;
    gap: clamp(42px, 8vw, 110px);
    align-items: end;
    margin-bottom: 48px;
}

.about-principles-head h2 {
    max-width: 720px;
    font-family: var(--display);
    font-size: clamp(2.1rem, 4vw, 3.35rem);
    font-weight: 400;
    line-height: 1.14;
    color: var(--navy);
}

.about-principles-head > p {
    font-size: 0.94rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--graphite);
}

.about-principles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
}

.about-principle {
    min-height: 280px;
    padding: 30px 26px;
    background: var(--white);
}

.about-principle > span {
    display: inline-flex;
    margin-bottom: 52px;
    font-family: var(--mono);
    font-size: 0.62rem;
    color: var(--gold-muted);
}

.about-principle h3 {
    margin-bottom: 14px;
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--navy);
}

.about-principle p {
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.78;
    color: var(--graphite);
}


/* DECLARACIÓN INSTITUCIONAL
   ========================================================= */

.about-statement-section {
    padding: 88px 0;
    background: var(--ivory-warm);
    border-top: 1px solid var(--rule);
}

.about-statement {
    max-width: 970px;
    padding-left: 34px;
    border-left: 3px solid var(--gold);
}

.about-statement blockquote {
    max-width: 920px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(2rem, 4.2vw, 3.45rem);
    font-weight: 400;
    line-height: 1.26;
    color: var(--navy);
}

.about-statement-note {
    margin-top: 25px;
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--graphite);
}


/* TABLET GRANDE
   ========================================================= */

@media (max-width: 1080px) {

    .about-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .about-team-card {
        grid-template-columns: 1fr;
    }

    .about-team-photo img {
        min-height: 340px;
        max-height: 420px;
    }

    .about-principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* TABLET Y MENÚ MÓVIL
   ========================================================= */

@media (max-width: 860px) {

    .about-hero {
        padding: 62px 0 72px;
    }

    .about-hero-grid,
    .about-evolution-grid,
    .about-team-grid,
    .about-principles-head {
        grid-template-columns: 1fr;
    }

    .about-hero-media {
        max-width: 720px;
    }

    .about-evolution-grid {
        border-bottom: 0;
    }

    .about-evolution-card {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(250, 248, 244, 0.12);
    }

    .about-step {
        margin-bottom: 38px;
    }
}


/* TELÉFONOS
   ========================================================= */

@media (max-width: 620px) {

    .about-hero {
        padding-top: 48px;
    }

    .about-hero-grid {
        gap: 42px;
    }

    .about-hero-copy h1 {
        margin-bottom: 22px;
        font-size: clamp(2.35rem, 12vw, 3.3rem);
    }

    .about-hero-lead {
        font-size: 0.94rem;
        line-height: 1.82;
    }

    .about-hero-media {
        padding-left: 10px;
        padding-bottom: 70px;
    }

    .about-photo-frame::before {
        inset: -10px 10px 10px -10px;
    }

    .about-photo-note {
        min-width: calc(100% - 28px);
        padding: 18px 20px;
    }

    .about-evolution,
    .about-statement-section {
        padding: 72px 0;
    }

    .about-evolution-card,
    .about-team-copy,
    .about-principle {
        padding-left: 24px;
        padding-right: 24px;
    }

    .about-team-photo img {
        min-height: 320px;
    }

    .about-principles-grid {
        grid-template-columns: 1fr;
    }

    .about-principle {
        min-height: auto;
    }

    .about-principle > span {
        margin-bottom: 34px;
    }

    .about-statement {
        padding-left: 22px;
    }
}
/* =========================================================
   FORMULARIO DE CONTACTO A WHATSAPP
   ========================================================= */

.form-required {
    color: var(--gold-muted);
}

.contact-form-notice {
    margin: -2px 0 22px;
    font-size: 0.76rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--graphite);
}

.contact-form-status {
    min-height: 22px;
    margin-top: 16px;
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.5;
}

.contact-form-status:empty {
    display: none;
}

.contact-form-status.is-error {
    color: #9b2c2c;
}

.contact-form-status.is-success {
    color: #356447;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-muted);
    box-shadow: 0 0 0 3px rgba(194, 162, 78, 0.12);
}

.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
    border-color: rgba(155, 44, 44, 0.55);
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}
/* =========================================================
   AJUSTES DE PRODUCCIÓN 2026
   ========================================================= */

.hero-photo-panel {
    min-height: 390px;
    display: block;
    overflow: hidden;
    border: 1px solid var(--rule);
    background: var(--navy);
}

.hero-photo-panel > img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    filter: grayscale(22%) brightness(0.67) contrast(1.05);
}

.hero-photo-overlay {
    position: absolute;
    inset: auto 24px 24px 24px;
    padding: 22px 24px;
    background: rgba(12, 26, 42, 0.9);
    border-left: 3px solid var(--gold);
    color: var(--ivory);
}

.hero-photo-overlay p {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.45;
}

.privacy-note {
    margin-top: 12px;
    font-size: 0.74rem;
    line-height: 1.55;
    color: var(--stone);
}

.privacy-note a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 760px) {
    .hero-photo-panel,
    .hero-photo-panel > img {
        min-height: 320px;
    }
}
