/*
 * SOMOS CONSTRUCTIVOS - site.css consolidado
 * Consolidación conservadora:
 * - conserva el orden de cascada existente;
 * - conserva todos los breakpoints;
 * - elimina únicamente declaraciones demostrablemente
 *   sustituidas por una regla posterior con el mismo selector
 *   y el mismo contexto @media;
 * - no cambia nombres de clases ni requiere cambios en Blade/JS.
 */

:root {
    --g: #1f2937;
    --d: #14212b;
    --a: #d4af37;
    --p: #f5f4ef;
    --w: #fff;
    --t: #17212a;
    --m: #68747d;
    --b: #dfe3e5;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    background: var(--p);
    color: var(--t);
    font-family: "Segoe UI",Arial,sans-serif;
}
.site-shell {
    width: min(1180px,calc(100% - 40px));
    margin: 0 auto;
}
.site-header {
    background: var(--d);
    color: var(--w);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}
.brand__mark {
    font-weight: 900;
}
.brand strong,.brand small {
    display: block;
}
.brand small {
    margin-top: 4px;
    color: rgba(255,255,255,.58);
    font-size: 9px;
}
.site-nav {
    display: flex;
    gap: 24px;
}
.site-nav a {
    color: rgba(255,255,255,.72);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}
.site-nav a.is-active {
    color: var(--a);
}
.public-hero,.service-hero {
    padding: 100px 0;
    background: linear-gradient(135deg,var(--d),#334653);
    background-position: center;
    background-size: cover;
    color: var(--w);
}
.public-hero h1,.service-hero h1,.public-section h2 {
    max-width: 820px;
    margin: 12px 0 18px;
    font-family: Georgia,serif;
    font-size: clamp(38px,5vw,68px);
    font-weight: 500;
    line-height: 1;
}
.public-hero p,.service-hero p {
    max-width: 680px;
    color: rgba(255,255,255,.7);
    font-size: 16px;
    line-height: 1.7;
}
.eyebrow {
    color: var(--a);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
}
.eyebrow--light {
    color: #f3d879;
}
.public-section {
    padding: 82px 0;
}
.public-section--soft {
    background: #eef0ef;
}
.public-section--dark {
    background: var(--d);
    color: var(--w);
}
.service-grid,.content-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 20px;
    margin-top: 34px;
}
.content-grid--4 {
    grid-template-columns: repeat(4,minmax(0,1fr));
}
.service-card,.content-card {
    border: 1px solid var(--b);
    background: var(--w);
}
.service-card__image {
    display: grid;
    aspect-ratio: 16/10;
    place-items: center;
    overflow: hidden;
    background: var(--g);
    color: rgba(255,255,255,.14);
    font-size: 60px;
    text-decoration: none;
}
.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-card__body,.content-card {
    padding: 24px;
}
.service-card h2,.content-card h3 {
    margin: 10px 0;
    font-family: Georgia,serif;
    font-size: 24px;
    font-weight: 500;
}
.service-card p,.content-card p,.rich-text,.faq-item p {
    color: var(--m);
    font-size: 13px;
    line-height: 1.7;
    white-space: pre-line;
}
.public-link,.back-link {
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}
.public-button {
    display: inline-flex;
    min-height: 46px;
    margin-top: 22px;
    align-items: center;
    padding: 0 20px;
    background: var(--a);
    color: var(--d);
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
}
.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 14px;
    margin-top: 32px;
}
.gallery-grid figure {
    margin: 0;
    background: #0d171e;
}
.gallery-grid img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}
.gallery-grid figcaption {
    padding: 10px 0;
    font-size: 11px;
}
.faq-item {
    border-top: 1px solid var(--b);
}
.faq-item summary {
    padding: 18px 0;
    cursor: pointer;
    font-family: Georgia,serif;
    font-size: 18px;
}
.site-footer {
    padding: 38px 0;
    background: #0c171e;
    color: var(--w);
}
.site-footer p {
    color: rgba(255,255,255,.55);
    font-size: 10px;
}
.public-empty {
    padding: 30px;
    border: 1px solid var(--b);
    background: var(--w);
    text-align: center;
}
@media (max-width:900px) {
    .service-grid,.content-grid,.content-grid--4,.split {
        grid-template-columns: 1fr;
    }
}
@media (max-width:700px) {
    .site-nav {
        overflow-x: auto;
    }
    .public-hero,.service-hero,.public-section {
        padding: 62px 0;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
.brand__mark {
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.04);
}

/* ==================== PROYECTOS ==================== */
.project-index-hero {
    padding: 100px 0;
    background: linear-gradient(135deg,var(--deep),#334653);
    color: var(--white);
}
.project-index-hero h1,.project-detail-hero h1,.project-story h2,.project-cta h2 {
    max-width: 820px;
    margin: 12px 0 18px;
    font-family: Georgia,serif;
    font-size: clamp(40px,5vw,68px);
    font-weight: 500;
    line-height: 1;
}
.project-index-hero p,.project-detail-hero p,.project-cta p {
    max-width: 680px;
    color: rgba(255,255,255,.7);
    font-size: 16px;
    line-height: 1.7;
}
.project-public-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 24px;
}
.project-public-card {
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
}
.project-public-card--featured {
    grid-column: 1/-1;
}
.project-public-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--graphite);
    text-decoration: none;
}
.project-public-card--featured .project-public-card__media {
    aspect-ratio: 21/9;
}
.project-public-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms ease;
}
.project-public-card:hover .project-public-card__media img {
    transform: scale(1.025);
}
.project-public-card__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: rgba(255,255,255,.12);
    font-family: Georgia,serif;
    font-size: 70px;
}
.project-public-card__featured {
    position: absolute;
    top: 16px;
    left: 16px;
}
.project-public-card__body {
    padding: 24px;
}
.project-public-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
}
.project-public-card h2 {
    margin: 10px 0;
    font-family: Georgia,serif;
    font-size: 28px;
    font-weight: 500;
}
.project-public-card h2 a {
    text-decoration: none;
}
.project-public-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}
.project-service-list,.project-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 15px 0;
}
.project-service-list span,.project-tag-list span {
    padding: 6px 9px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
}
.project-detail-hero {
    position: relative;
    display: grid;
    min-height: 650px;
    align-items: end;
    overflow: hidden;
    background: var(--deep);
    color: var(--white);
}
.project-detail-hero__media,.project-detail-hero__overlay {
    position: absolute;
    inset: 0;
}
.project-detail-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-detail-hero__content {
    position: relative;
    z-index: 1;
    padding-bottom: 75px;
}
.back-link--light {
    display: inline-block;
    margin-bottom: 35px;
    color: rgba(255,255,255,.68);
}
.project-detail-meta {
    display: flex;
    gap: 20px;
    margin-top: 24px;
    color: rgba(255,255,255,.65);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.project-story {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 75px;
}
.project-story__copy {
    display: grid;
    gap: 30px;
}
.story-block {
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.story-label {
    color: var(--accent);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
}
.story-block p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
    white-space: pre-line;
}
.project-detail-gallery {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 14px;
    margin-top: 35px;
}
.project-detail-gallery__item {
    position: relative;
    min-height: 330px;
    margin: 0;
    overflow: hidden;
    background: #0d171e;
}
.project-detail-gallery__item--large {
    grid-column: 1/-1;
    min-height: 520px;
}
.project-detail-gallery__item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-detail-gallery__item figcaption {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 1;
    color: var(--white);
}
.project-detail-gallery__item figcaption span,.project-detail-gallery__item figcaption strong {
    display: block;
    text-shadow: 0 2px 10px rgba(0,0,0,.7);
}
.project-detail-gallery__item figcaption span {
    color: #f3d879;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}
.public-comparison-list {
    display: grid;
    gap: 28px;
    margin-top: 35px;
}
.public-comparison-card {
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
}
.public-comparison-card__images {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
}
.public-comparison-card figure {
    position: relative;
    margin: 0;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #e8e9e7;
}
.public-comparison-card figure+figure {
    border-left: 1px solid var(--border);
}
.public-comparison-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.public-comparison-card figcaption {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 5px 8px;
    background: rgba(20,33,43,.9);
    color: var(--white);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}
.public-comparison-card__body {
    padding: 22px;
}
.public-comparison-card__body h3 {
    margin: 0 0 8px;
    font-family: Georgia,serif;
    font-size: 24px;
    font-weight: 500;
}
.public-comparison-card__body p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}
.project-cta {
    padding: 70px 0;
}
.project-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
}
@media (max-width:900px) {
    .project-story,.project-public-grid {
        grid-template-columns: 1fr;
    }
    .project-public-card--featured {
        grid-column: auto;
    }
}
@media (max-width:700px) {
    .project-detail-gallery,.public-comparison-card__images {
        grid-template-columns: 1fr;
    }
    .project-detail-gallery__item--large {
        grid-column: auto;
        min-height: 360px;
    }
    .public-comparison-card figure+figure {
        border-top: 1px solid var(--border);
        border-left: 0;
    }
}
.project-detail-hero__content h1 {
    color: #ffffff;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}
.project-detail-hero__overlay {
    background: linear-gradient(
            90deg,
            rgba(10, 23, 31, 0.94) 0%,
            rgba(10, 23, 31, 0.70) 48%,
            rgba(10, 23, 31, 0.28) 100%
        );
}
.project-detail-hero .project-detail-hero__content h1 {
    color: #ffffff !important;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}
.project-detail-hero .project-detail-hero__content p {
    color: rgba(255, 255, 255, 0.88);
}
.project-detail-hero .project-detail-meta {
    color: rgba(255, 255, 255, 0.82);
}

/* ==================== COTIZADOR ==================== */
.quote-public-hero h1,
.quote-step__heading h2,
.quote-thanks h1 {
    max-width: 780px;
    margin: 12px 0 18px;
    font-family: Georgia, serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 500;
    line-height: 1;
}
.quote-form-shell {
    max-width: 1040px;
}
.quote-alert {
    margin-bottom: 22px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    background: var(--white);
}
.quote-alert--error {
    border-color: #d8a8a5;
    background: #fff4f3;
    color: #8b3430;
}
.quote-alert ul {
    margin: 8px 0 0;
    padding-left: 20px;
}
.quote-stepper__item
+ .quote-stepper__item {
    border-left: 1px solid var(--border);
}
.quote-choice-card {
    position: relative;
    cursor: pointer;
}
.quote-choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.quote-choice-card__content strong,
.quote-choice-card__content small {
    display: block;
}
.quote-field {
    min-width: 0;
}
.quote-field--spaced {
    margin-top: 24px;
}
.quote-field label small {
    color: var(--muted);
    font-weight: 500;
}
.quote-field__hint {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 10px;
}
.quote-secondary-button--link {
    margin-top: 22px;
}
.quote-step .public-button {
    margin-top: 0;
    border: 0;
}
.quote-step .public-button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}
.quote-file-card input {
    width: 100%;
    font-size: 11px;
}
.quote-submit-summary {
    margin-top: 24px;
    padding: 18px;
    border-left: 3px solid var(--accent);
    background: #fafaf8;
}
.quote-submit-summary strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 18px;
}
.quote-submit-summary p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 11px;
}
.quote-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}
.quote-thanks {
    min-height: calc(100vh - 180px);
    padding: 100px 0;
}
.quote-thanks__inner {
    max-width: 800px;
    text-align: center;
}
.quote-thanks__check {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 0 auto 24px;
    place-items: center;
    border: 1px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    font-size: 24px;
}
.quote-thanks h1 {
    margin-right: auto;
    margin-left: auto;
}
.quote-thanks p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}
.quote-folio {
    display: inline-block;
    margin: 30px 0;
    padding: 16px 24px;
    border: 1px solid var(--graphite);
    background: var(--white);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.04em;
}
.quote-thanks__secondary {
    font-size: 12px !important;
}
.quote-thanks__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}
@media (max-width: 700px) {
    .quote-public-hero {
        padding: 64px 0;
    }
    .quote-service-grid,
    .quote-form-grid,
    .quote-file-grid {
        grid-template-columns: 1fr;
    }
    .quote-file-card--wide {
        grid-column: auto;
    }
    .quote-step__actions,
    .quote-thanks__actions {
        align-items: stretch;
        flex-direction: column;
    }
    .quote-step__actions .public-button,
    .quote-step__actions
    .quote-secondary-button,
    .quote-thanks__actions a {
        width: 100%;
    }
}
.quote-thanks__warning {
    max-width: 620px;
    margin: 24px auto 0;
    padding: 14px 16px;
    border: 1px solid #d4af37;
    background: #fffaf0;
    color: #67571f;
    font-size: 11px;
    line-height: 1.6;
}
.quote-public-hero {
    padding: 72px 0 52px;
    background: #f6f4ee;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.quote-public-hero h1 {
    color: var(--text);
    max-width: 760px;
    margin: 12px 0 18px;
    font-family: Georgia, serif;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 500;
    line-height: 0.98;
}
.quote-public-hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}
.quote-stepper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 28px;
    border: 1px solid var(--border);
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}
.quote-stepper__item {
    display: flex;
    min-height: 86px;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    color: var(--muted);
}
.quote-stepper__item + .quote-stepper__item {
    border-left: 1px solid var(--border);
}
.quote-stepper__item span {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid #cfd6dc;
    border-radius: 50%;
    background: #f8fafc;
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}
.quote-stepper__item strong {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
}
.quote-stepper__item.is-active {
    background: #fffaf0;
    color: var(--text);
}
.quote-stepper__item.is-active span {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--deep);
}
.quote-stepper__item.is-complete {
    color: var(--text);
}
.quote-stepper__item.is-complete span {
    border-color: var(--graphite);
    background: var(--graphite);
    color: #ffffff;
}
.quote-public-form {
    border: 1px solid var(--border);
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}
.quote-step {
    display: none;
    padding: 40px;
}
.quote-step.is-active {
    display: block;
}
.quote-step__heading {
    margin-bottom: 26px;
}
.quote-step__heading h2 {
    margin-top: 8px;
    margin-bottom: 10px;
    color: var(--text);
    font-family: Georgia, serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.05;
}
.quote-step__heading p {
    max-width: 680px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}
.quote-field label,
.quote-file-card label {
    display: block;
    margin-bottom: 9px;
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}
.quote-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.quote-field input,
.quote-field select,
.quote-field textarea {
    width: 100%;
    border: 1.5px solid #cfd6dc;
    border-radius: 10px;
    background: #ffffff;
    color: var(--text);
    outline: none;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease;
}
.quote-field input,
.quote-field select {
    min-height: 52px;
    padding: 0 15px;
    font-size: 15px;
}
.quote-field textarea {
    min-height: 190px;
    padding: 15px;
    font-size: 15px;
    line-height: 1.6;
    resize: vertical;
}
.quote-field input::placeholder,
.quote-field textarea::placeholder {
    color: #94a3b8;
}
.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
    border-color: var(--accent);
    background: #fffefb;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
}
.quote-field select {
    cursor: pointer;
}
.quote-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.quote-choice-card__content {
    display: block;
    min-height: 142px;
    padding: 20px;
    border-radius: 12px;
    transition: border-color 160ms ease,
        background 160ms ease,
        transform 160ms ease,
        box-shadow 160ms ease;
}
.quote-choice-card__content strong {
    display: block;
    color: var(--text);
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.15;
}
.quote-choice-card__content small {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}
.quote-choice-card input:checked + .quote-choice-card__content {
    border-color: var(--accent);
    background: #fffaf0;
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.12);
    transform: translateY(-2px);
}
.quote-file-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.quote-file-card {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fafaf8;
}
.quote-file-card--wide {
    grid-column: 1 / -1;
}
.quote-file-card input[type="file"] {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 13px;
}
.quote-file-card small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}
.quote-step__actions {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.quote-step__actions--end {
    justify-content: flex-end;
}
.quote-secondary-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #ffffff;
    color: var(--text);
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}
.quote-step .public-button {
    min-height: 48px;
    padding: 0 24px;
    border-radius: 10px;
    cursor: pointer;
}
@media (max-width: 900px) {
    .quote-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 700px) {
    .quote-stepper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .quote-stepper__item:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--border);
    }
    .quote-stepper__item:nth-child(4) {
        border-top: 1px solid var(--border);
    }
    .quote-step,
    .quote-form-grid,
    .quote-file-grid,
    .quote-service-grid {
        grid-template-columns: 1fr;
    }
    .quote-step {
        padding: 26px 20px;
    }
    .quote-step__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .quote-step__actions .public-button,
    .quote-step__actions .quote-secondary-button {
        width: 100%;
    }
}

/* ==================== INICIO ==================== */
.home-hero {
    position: relative;
    display: grid;
    min-height: 700px;
    align-items: end;
    overflow: hidden;
    background: var(--deep);
    color: var(--white);
}
.home-hero__media,
.home-hero__overlay {
    position: absolute;
    inset: 0;
}
.home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-hero__overlay {
    background: linear-gradient(
        90deg,
        rgba(11, 23, 31, .95) 0%,
        rgba(11, 23, 31, .76) 48%,
        rgba(11, 23, 31, .32) 100%
    );
}
.home-hero__content {
    position: relative;
    z-index: 1;
    padding: 110px 0 65px;
}
.home-hero h1 {
    max-width: 900px;
    margin: 14px 0 20px;
    color: #fff;
    font-family: Georgia, serif;
    font-size: clamp(50px, 6vw, 84px);
    font-weight: 500;
    line-height: .97;
}
.home-hero p {
    max-width: 680px;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.7;
}
.home-hero__actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 28px;
}
.home-secondary-link {
    color: #fff;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}
.home-editorial-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 75px;
}
.home-editorial-grid h2,
.home-section-heading h2,
.home-final-cta h2 {
    margin: 10px 0 0;
    font-family: Georgia, serif;
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 500;
    line-height: 1.03;
}
.home-intro__copy p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}
.home-intro__copy p + p {
    margin-top: 18px;
}
.home-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 36px;
}
.home-section-heading--dark h2 {
    color: #fff;
}
.home-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.home-service-card {
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
}
.home-service-card__media {
    display: grid;
    aspect-ratio: 16 / 9;
    place-items: center;
    overflow: hidden;
    background: var(--graphite);
    color: rgba(255,255,255,.15);
    text-decoration: none;
}
.home-service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-service-card__body {
    padding: 22px;
}
.home-service-card h3,
.home-project-card h3,
.home-process-grid h3 {
    font-family: Georgia, serif;
    font-weight: 500;
}
.home-service-card h3 {
    margin: 9px 0;
    font-size: 23px;
}
.home-service-card h3 a,
.home-project-card h3 a {
    text-decoration: none;
}
.home-service-card p,
.home-process-grid p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}
.home-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.home-process-grid article {
    min-height: 205px;
    padding: 26px 22px;
}
.home-process-grid article + article {
    border-left: 1px solid var(--border);
}
.home-process-grid article > span {
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
}
.home-process-grid h3 {
    margin: 42px 0 8px;
    font-size: 22px;
}
.home-project-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
}
.home-project-card {
    background: #101d25;
}
.home-project-card--large {
    grid-column: 1 / -1;
}
.home-project-card__media {
    display: grid;
    aspect-ratio: 16 / 9;
    place-items: center;
    overflow: hidden;
    background: #0d171e;
    color: rgba(255,255,255,.12);
    text-decoration: none;
}
.home-project-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-project-card__body {
    padding: 22px;
}
.home-project-card h3 {
    margin: 0 0 8px;
    font-size: 27px;
}
.home-project-card h3 a {
    color: #fff;
}
.home-project-card p {
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 12px;
    line-height: 1.65;
}
.home-final-cta {
    padding: 75px 0;
}
.home-final-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.home-final-cta p {
    max-width: 590px;
    font-size: 13px;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .home-service-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .home-process-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .home-editorial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
@media (max-width: 700px) {
    .home-hero {
        min-height: 620px;
    }
    .home-hero__actions,
    .home-section-heading,
    .home-final-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }
    .home-service-grid,
    .home-process-grid,
    .home-project-grid {
        grid-template-columns: 1fr;
    }
    .home-project-card--large {
        grid-column: auto;
    }
    .home-process-grid article + article {
        border-top: 1px solid var(--border);
        border-left: 0;
    }
}
.home-final-cta {
    background: #1f2937 !important;
    color: #ffffff !important;
}
.home-final-cta h2 {
    color: #ffffff !important;
}
.home-final-cta p {
    color: rgba(255, 255, 255, 0.78) !important;
}
.home-final-cta .eyebrow {
    color: #d4af37 !important;
}
.home-project-card--large .home-project-card__media img {
    max-height: none !important;
}
.home-project-card--large .home-project-card__media {
    width: 100%;
    height: 440px !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #e9e7e1;
}
.home-project-card--large .home-project-card__media img {
    position: static !important;
    width: 100%;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block;
}

/* ==================== CONTACTO ==================== */
.contact-hero {
    padding: 95px 0 88px;
}
.contact-hero h1,
.contact-intro h2,
.contact-options__heading h2,
.contact-final-cta h2 {
    max-width: 780px;
    margin: 12px 0 18px;
    font-family: Georgia, serif;
    font-size: clamp(40px, 5vw, 66px);
    font-weight: 500;
    line-height: 1;
}
.contact-hero p {
    max-width: 650px;
}
.contact-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: start;
}
.contact-intro {
    position: sticky;
    top: 115px;
}
.contact-intro h2 {
    font-size: clamp(34px, 4vw, 50px);
}
.contact-intro > p {
    max-width: 520px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}
.contact-card-list {
    display: grid;
    gap: 12px;
}
.contact-card {
    display: grid;
    grid-template-columns: 48px minmax(0,1fr);
    gap: 20px;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
}
.contact-card__number {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
}
.contact-card__label {
    color: var(--muted);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
}
.contact-card h3 {
    margin: 7px 0 12px;
    overflow-wrap: anywhere;
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
}
.contact-empty {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
}
.contact-empty strong {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 500;
}
.contact-empty p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}
.contact-options {
    padding: 85px 0;
    background: #eef0ef;
}
.contact-options__heading {
    margin-bottom: 38px;
}
.contact-option-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.contact-option-grid article {
    min-height: 275px;
    padding: 28px;
}
.contact-option-grid article + article {
    border-left: 1px solid var(--border);
}
.contact-option-grid article > span {
    font-size: 10px;
}
.contact-option-grid h3 {
    margin: 42px 0 10px;
    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: 500;
}
.contact-option-grid p {
    min-height: 62px;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}
.contact-final-cta {
    padding: 75px 0;
}
.contact-final-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
}
.contact-final-cta p {
    max-width: 590px;
    font-size: 13px;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .contact-intro {
        position: static;
    }
    .contact-option-grid {
        grid-template-columns: 1fr;
    }
    .contact-option-grid article + article {
        border-top: 1px solid var(--border);
        border-left: 0;
    }
}
@media (max-width: 700px) {
    .contact-hero,
    .contact-options {
        padding: 65px 0;
    }
    .contact-final-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}
.contact-hero {
    background: linear-gradient(
            135deg,
            #14212b 0%,
            #263946 55%,
            #334653 100%
        ) !important;
    color: #ffffff !important;
}
.contact-hero h1 {
    color: #ffffff !important;
}
.contact-hero p {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 17px;
    line-height: 1.75;
}
.contact-hero .eyebrow {
    color: #d4af37 !important;
}
.brand__mark {
    width: 56px !important;
    height: 56px !important;
    flex: 0 0 56px;
}
.brand__mark-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain !important;
}
.site-header__inner {
    min-height: 92px;
}
a:visited {
    color: inherit;
}
.public-link,
.public-link:visited {
    color: var(--text);
}
.home-secondary-link,
.home-secondary-link:visited {
    color: #ffffff;
}
.home-service-card h3 a,
.home-service-card h3 a:visited {
    color: var(--text);
}
.site-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
    cursor: pointer;
}
.site-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: #ffffff;
    transition: transform 180ms ease,
        opacity 180ms ease;
}
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}
@media (max-width: 700px) {
    .site-header__inner {
        position: relative;
    }
    .brand__mark {
        width: 52px !important;
        height: 52px !important;
        flex: 0 0 52px;
    }
    .brand strong {
        font-size: 13px;
    }
    .brand small {
        font-size: 9px;
    }
    .site-menu-toggle.is-open span:nth-child(1) {
        transform: translateY(7px)
            rotate(45deg);
    }
    .site-menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }
    .site-menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px)
            rotate(-45deg);
    }
    .site-nav {
        top: 100%;
        right: 0;
        left: 0;
        z-index: 100;
    }
    .site-nav a:visited {
        color: rgba(
            255,
            255,
            255,
            0.82
        );
    }
    .site-nav a.is-active::after {
        display: none;
    }
    .home-process-grid article {
        min-height: 0 !important;
        padding: 28px 10px !important;
    }
    .home-process-grid h3 {
        margin-top: 24px !important;
    }
    .home-process-grid p {
        margin-bottom: 0;
    }
    img,
    video,
    iframe {
        max-width: 100%;
    }
}
@media (max-width: 700px) {
    .site-header {
        position: relative;
        z-index: 1000;
    }
    .site-header__inner {
        display: flex !important;
        flex-wrap: wrap;
        width: 100%;
        min-height: 82px;
        align-items: center;
        justify-content: space-between;
        gap: 0 !important;
        padding: 12px 0;
    }
    .brand {
        flex: 1 1 auto;
        min-width: 0;
    }
    .site-menu-toggle {
        display: block;
        flex: 0 0 44px;
        margin-left: 12px;
    }
    .site-nav {
        position: static !important;
        display: none !important;
        flex: 0 0 100%;
        width: 100% !important;
        margin-top: 12px;
        box-shadow: none !important;
        overflow: visible !important;
        gap: 0 !important;
    }
    .site-nav.is-open {
        display: flex !important;
        flex-direction: column;
    }
    .site-nav a {
        display: block;
        width: 100%;
        padding: 14px 4px;
        border-bottom: 1px solid rgba(
            255,
            255,
            255,
            0.08
        );
        color: rgba(
            255,
            255,
            255,
            0.84
        ) !important;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
    }
    .site-nav a.is-active {
        color: var(--accent) !important;
    }
}
@media (max-width: 700px) {
    .site-header {
        background: #14212b !important;
        color: #ffffff !important;
        opacity: 1 !important;
    }
    .site-header__inner {
        background: #14212b !important;
    }
    .brand {
        color: #ffffff !important;
    }
    .brand strong {
        color: #ffffff !important;
    }
    .brand small {
        color: rgba(255, 255, 255, 0.72) !important;
    }
    .site-menu-toggle {
        border-color: rgba(255, 255, 255, 0.28) !important;
        background: #1f3340 !important;
    }
    .site-menu-toggle span {
        background: #ffffff !important;
    }
    .site-nav {
        background: #14212b !important;
        color: #ffffff !important;
        padding: 8px 0 10px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    }
    .site-nav.is-open {
        background: #14212b !important;
    }
    .site-nav a,
    .site-nav a:link,
    .site-nav a:visited {
        display: block;
        padding: 15px 6px !important;
        color: rgba(255, 255, 255, 0.88) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
        font-size: 14px;
        font-weight: 700;
    }
    .site-nav a:hover {
        color: #d4af37 !important;
        background: rgba(255, 255, 255, 0.04);
    }
    .site-nav a.is-active,
    .site-nav a.is-active:visited {
        color: #d4af37 !important;
    }
    .site-nav a:last-child {
        border-bottom: 0 !important;
    }
}
@media (max-width: 700px) {
    .project-index-hero {
        padding-top: 68px !important;
        padding-bottom: 58px !important;
    }
    .project-index-hero p {
        color: var(--muted) !important;
        font-size: 15px;
        line-height: 1.7;
    }
    .project-public-card h2 a,
    .project-public-card h2 a:link,
    .project-public-card h2 a:visited {
        color: var(--text) !important;
        text-decoration: none;
    }
    .project-public-card__featured {
        padding: 6px 9px !important;
        background: #d4af37 !important;
        color: #14212b !important;
        font-size: 9px !important;
        font-weight: 900 !important;
        letter-spacing: 0.08em;
    }
    .project-detail-hero .back-link,
    .project-detail-hero .back-link:visited {
        color: rgba(255, 255, 255, 0.88) !important;
        font-size: 11px;
        font-weight: 750;
        text-decoration: none;
    }
    .project-detail-hero .back-link {
        display: block;
        margin-bottom: 20px !important;
    }
    .project-detail-hero .eyebrow {
        display: block;
        margin-bottom: 10px;
    }
    .project-detail-gallery__item figcaption span {
        font-size: 10px !important;
    }
    .project-detail-gallery__item figcaption strong {
        font-size: 13px !important;
        line-height: 1.3;
    }
    .public-comparison-card figcaption {
        padding: 6px 9px !important;
        background: rgba(
            20,
            33,
            43,
            0.94
        ) !important;
        color: #ffffff !important;
        font-size: 10px !important;
        font-weight: 900 !important;
        letter-spacing: 0.04em;
    }
    .project-cta {
        padding: 58px 0 !important;
        background: #1f2937 !important;
        color: #ffffff !important;
    }
    .project-cta .site-shell {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .project-cta__inner {
        display: flex !important;
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 26px !important;
    }
    .project-cta .eyebrow {
        color: #d4af37 !important;
    }
    .project-cta h2 {
        margin-top: 10px !important;
        color: #ffffff !important;
    }
    .project-cta p {
        max-width: 100%;
        color: rgba(255, 255, 255, 0.78) !important;
        font-size: 14px;
        line-height: 1.7;
    }
    .project-cta .public-button {
        margin-top: 4px;
    }
}
.quote-choice-card__content {
    border: 1.5px solid #d8dde2;
    background: #fafafa;
}
.quote-choice-card input:checked
+ .quote-choice-card__content {
    border-color: #d4af37 !important;
    background: #f8edc4 !important;
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.18),
        inset 0 0 0 1px #d4af37;
    transform: translateY(-2px);
}
.quote-choice-card input:checked
+ .quote-choice-card__content strong {
    color: #14212b !important;
}
.quote-choice-card input:checked
+ .quote-choice-card__content small {
    color: #4b5563 !important;
}
@media (max-width: 700px) {
    .quote-step .public-button {
        min-height: 56px !important;
        padding: 0 24px !important;
        font-size: 15px !important;
        font-weight: 900 !important;
        line-height: 1.2;
        border-radius: 12px;
    }
    .quote-step button[type="submit"].public-button {
        font-size: 16px !important;
        letter-spacing: 0.01em;
    }
    .quote-secondary-button {
        width: 100%;
        min-height: 50px !important;
        border: 1.5px solid #cfd6dc !important;
        border-radius: 10px;
        background: #ffffff !important;
        color: #14212b !important;
        font-size: 14px !important;
        font-weight: 850 !important;
    }
    .quote-step__actions {
        gap: 12px !important;
    }
    .quote-field label small {
        display: inline-block;
        margin-left: 6px;
        color: var(--muted);
        font-size: 11px;
        font-weight: 500;
    }
}
@media (max-width: 700px) {
    .contact-option-grid article {
        min-height: 0 !important;
        padding: 30px 20px !important;
    }
    .contact-option-grid article + article {
        border-top: 1px solid var(--border);
    }
    .contact-option-grid article > span {
        display: block;
        margin-bottom: 18px !important;
        color: #d4af37;
        font-size: 11px;
        font-weight: 900;
    }
    .contact-option-grid h3 {
        margin: 0 0 12px !important;
        font-size: 30px;
        line-height: 1.08;
    }
    .contact-option-grid p {
        min-height: 0 !important;
        margin: 0 0 18px !important;
        font-size: 14px;
        line-height: 1.65;
    }
    .contact-option-grid .public-link {
        display: inline-block;
        margin-top: 2px;
    }
    .contact-final-cta {
        padding: 58px 0 !important;
        background: #1f2937 !important;
        color: #ffffff !important;
    }
    .contact-final-cta .eyebrow {
        color: #d4af37 !important;
    }
    .contact-final-cta h2 {
        color: #ffffff !important;
    }
    .contact-final-cta p {
        color: rgba(
            255,
            255,
            255,
            0.78
        ) !important;
        font-size: 14px;
        line-height: 1.7;
    }
}
@media (min-width: 701px) and (max-width: 900px) {
    .contact-option-grid article {
        min-height: 0 !important;
        padding: 30px 38px !important;
    }
    .contact-option-grid article > span {
        display: block;
        margin-bottom: 18px !important;
        color: #d4af37;
        font-size: 11px;
        font-weight: 900;
    }
    .contact-option-grid h3 {
        margin: 0 0 10px !important;
        font-size: 27px;
        line-height: 1.1;
    }
    .contact-option-grid p {
        min-height: 0 !important;
        margin: 0 0 18px !important;
        font-size: 13px;
        line-height: 1.6;
    }
    .contact-option-grid .public-link {
        margin-top: 0 !important;
    }
    .contact-final-cta {
        padding: 58px 0 !important;
        background: #1f2937 !important;
        color: #ffffff !important;
    }
    .contact-final-cta .eyebrow {
        color: #d4af37 !important;
    }
    .contact-final-cta h2 {
        color: #ffffff !important;
    }
    .contact-final-cta p {
        color: rgba(255, 255, 255, 0.78) !important;
        font-size: 13px;
        line-height: 1.7;
    }
    .contact-final-cta .public-button,
    .contact-final-cta .public-button:visited {
        background: #ffffff !important;
        color: #14212b !important;
        border: 1px solid #ffffff !important;
        font-size: 13px !important;
        font-weight: 900 !important;
    }
    .contact-final-cta .public-button:hover {
        background: #f4f1e8 !important;
        color: #14212b !important;
    }
}
@media (min-width: 701px) and (max-width: 900px) {
    .home-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-process-grid article {
        min-height: 0 !important;
        padding: 30px 28px !important;
    }
    .home-process-grid article > span {
        display: block;
        margin-bottom: 18px !important;
        color: #d4af37;
        font-size: 11px;
        font-weight: 900;
    }
    .home-process-grid h3 {
        margin: 0 0 10px !important;
        font-size: 23px;
        line-height: 1.15;
    }
    .home-process-grid p {
        margin: 0 !important;
        font-size: 12px;
        line-height: 1.65;
    }
    .home-process-grid article:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--border);
    }
    .home-process-grid article:nth-child(4) {
        border-top: 1px solid var(--border);
    }
}
@media (min-width: 640px) and (max-width: 1024px) {
    .home-process-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0 !important;
    }
    .home-process-grid article {
        min-height: 0 !important;
        height: auto !important;
        padding: 26px 28px
            28px !important;
        margin: 0 !important;
    }
    .home-process-grid article > span {
        display: block !important;
        margin: 0 0 12px !important;
        padding: 0 !important;
        color: #d4af37 !important;
        font-size: 11px !important;
        font-weight: 900 !important;
    }
    .home-process-grid h3 {
        margin: 0 0 8px !important;
        padding: 0 !important;
        font-size: 24px !important;
        line-height: 1.12 !important;
    }
    .home-process-grid p {
        margin: 0 !important;
        padding: 0 !important;
        font-size: 13px !important;
        line-height: 1.6 !important;
    }
    .home-process-grid article:nth-child(odd) {
        border-left: 0 !important;
    }
    .home-process-grid article:nth-child(even) {
        border-left: 1px solid var(--border) !important;
    }
    .home-process-grid article:nth-child(n/**/+3) {
        border-top: 1px solid var(--border) !important;
    }
}
.public-button,
.public-button:link,
.public-button:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #d4af37;
    color: #14212b !important;
    border: 1px solid #d4af37;
    font-weight: 900;
    text-decoration: none;
    transition: background 160ms ease,
        border-color 160ms ease,
        color 160ms ease,
        transform 160ms ease;
}
.public-button:hover {
    background: #c7a12d;
    border-color: #c7a12d;
    color: #14212b !important;
}
.public-button--light,
.public-button--light:link,
.public-button--light:visited {
    background: #ffffff !important;
    color: #14212b !important;
    border: 1px solid #ffffff !important;
}
.public-button--light:hover {
    background: #f4f1e8 !important;
    border-color: #f4f1e8 !important;
    color: #14212b !important;
    transform: translateY(-1px);
}
.project-cta .public-button,
.project-cta .public-button:link,
.project-cta .public-button:visited {
    border-color: #ffffff !important;
}
.contact-final-cta .public-button,
.contact-final-cta .public-button:link,
.contact-final-cta .public-button:visited {
    border-color: #ffffff !important;
}
.project-cta .public-button,
.project-cta .public-button:link,
.project-cta .public-button:visited {
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.18);
}
.project-cta .public-button:focus-visible {
    outline: 3px solid rgba(212, 175, 55, 0.35);
    outline-offset: 3px;
}
.home-final-cta .public-button,
.home-final-cta .public-button:link,
.home-final-cta .public-button:visited {
    background: #D4AF37 !important;
    color: #14212B !important;
    border-color: #D4AF37 !important;
}
.home-final-cta .public-button:hover {
    background: #C7A12D !important;
    color: #14212B !important;
    border-color: #C7A12D !important;
}
@media (min-width: 1025px) {
    .service-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 28px;
    }
}
@media (min-width: 1025px) {
    .content-grid {
        display: grid !important;
        grid-template-columns: repeat(
                auto-fit,
                minmax(360px, 520px)
            ) !important;
        justify-content: start;
        gap: 24px !important;
        margin-top: 28px;
    }
    .content-card {
        width: 100% !important;
        min-height: 150px;
        padding: 28px 30px !important;
    }
    .content-card h3 {
        margin-bottom: 12px;
        font-size: 24px;
        line-height: 1.15;
    }
    .content-card p {
        max-width: 440px;
        font-size: 14px;
        line-height: 1.7;
    }
    .gallery-grid {
        display: grid !important;
        grid-template-columns: repeat(
                auto-fit,
                minmax(520px, 650px)
            ) !important;
        justify-content: start;
        gap: 26px !important;
        margin-top: 28px;
    }
    .gallery-grid figure {
        width: 100% !important;
        max-width: 650px;
        margin: 0;
    }
    .gallery-grid img {
        display: block;
        width: 100% !important;
        height: auto !important;
        object-fit: contain;
    }
    .gallery-grid figcaption {
        padding-top: 10px;
        font-size: 12px;
        line-height: 1.5;
    }
}
.project-index-hero p {
    color: #5f6b74 !important;
}
.project-public-card__featured {
    background: #D4AF37 !important;
    color: #14212B !important;
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none !important;
}
.project-public-card__body h2 a,
.project-public-card__body h2 a:link,
.project-public-card__body h2 a:visited,
.project-public-card__body h2 a:hover,
.project-public-card__body h2 a:active {
    color: #14212B !important;
    text-decoration: none !important;
}
.project-public-card__body .public-link,
.project-public-card__body .public-link:link,
.project-public-card__body .public-link:visited {
    color: #14212B !important;
    text-decoration: none;
    font-weight: 850;
}
.project-public-card__body .public-link:hover {
    color: #B99224 !important;
}
.project-detail-hero .back-link--light,
.project-detail-hero .back-link--light:link,
.project-detail-hero .back-link--light:visited {
    color: rgba(255, 255, 255, 0.90) !important;
    text-decoration: none;
}
.project-detail-hero .back-link--light:hover {
    color: #D4AF37 !important;
}
.project-detail-hero .eyebrow--light {
    color: #D4AF37 !important;
}
.project-cta {
    background: #1F2937 !important;
    color: #FFFFFF !important;
}
.project-cta .eyebrow,
.project-cta .eyebrow--light {
    color: #D4AF37 !important;
}
.project-cta h2 {
    color: #FFFFFF !important;
}
.project-cta p {
    color: rgba(255, 255, 255, 0.78) !important;
}
.project-cta .public-button,
.project-cta .public-button:link,
.project-cta .public-button:visited {
    background: #D4AF37 !important;
    color: #14212B !important;
    border: 1px solid #D4AF37 !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}
.project-cta .public-button:hover {
    background: #C7A12D !important;
    color: #14212B !important;
    border-color: #C7A12D !important;
    transform: translateY(-1px);
}
.project-cta .public-button:active {
    background: #B99224 !important;
    color: #14212B !important;
    transform: translateY(0);
}
.contact-final-cta {
    background: #1F2937 !important;
    color: #FFFFFF !important;
}
.contact-final-cta .eyebrow,
.contact-final-cta .eyebrow--light {
    color: #D4AF37 !important;
}
.contact-final-cta h2 {
    color: #FFFFFF !important;
}
.contact-final-cta p {
    color: rgba(255, 255, 255, 0.78) !important;
}
.contact-final-cta .public-button,
.contact-final-cta .public-button:link,
.contact-final-cta .public-button:visited {
    background: #D4AF37 !important;
    color: #14212B !important;
    border: 1px solid #D4AF37 !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}
.contact-final-cta .public-button:hover {
    background: #C7A12D !important;
    color: #14212B !important;
    border-color: #C7A12D !important;
    transform: translateY(-1px);
}
.contact-option-grid article > span {
    color: #D4AF37 !important;
    font-weight: 900 !important;
}

/* Footer corporativo */

.site-footer__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.site-footer__brand p {
    margin-bottom: 0;
}

.site-footer__meta {
    display: grid;
    gap: 6px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;
    line-height: 1.5;

    text-align: right;
}

@media (max-width: 700px) {
    .site-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__meta {
        text-align: left;
    }
}


/* =========================================================
   GALERÍAS PÚBLICAS - 2 COLUMNAS + VISOR AMPLIADO
   ========================================================= */

.gallery-grid,
.project-detail-gallery {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
    margin-top: 32px;
}

.gallery-grid figure,
.project-detail-gallery__item,
.project-detail-gallery__item--large {
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    grid-column: auto !important;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    background: #0d171e;
}

.public-gallery-trigger {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: #0d171e;
    cursor: zoom-in;
}

.gallery-grid .public-gallery-trigger img,
.project-detail-gallery .public-gallery-trigger img {
    position: static !important;
    display: block;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    object-position: center;
    transition:
        transform 220ms ease,
        opacity 220ms ease;
}

/* Servicios: mostramos completa la fotografía dentro de la tarjeta. */
.gallery-grid .public-gallery-trigger img {
    object-fit: contain !important;
}

/* Proyectos: mantenemos una composición fotográfica uniforme. */
.project-detail-gallery .public-gallery-trigger img {
    object-fit: cover !important;
}

.public-gallery-trigger:hover img {
    transform: scale(1.025);
    opacity: 0.94;
}

.public-gallery-trigger:focus-visible {
    outline: 3px solid #d4af37;
    outline-offset: -3px;
}

.public-gallery-trigger__hint {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 999px;
    background: rgba(12, 23, 30, 0.82);
    color: #ffffff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.03em;
    pointer-events: none;
}

.gallery-grid figcaption {
    padding: 11px 14px 13px !important;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    line-height: 1.5;
}

.project-detail-gallery__item figcaption {
    position: static !important;
    padding: 11px 14px 13px;
    background: #0d171e;
    color: #ffffff;
}

.project-detail-gallery__item figcaption span,
.project-detail-gallery__item figcaption strong {
    display: block;
    text-shadow: none !important;
}

.project-detail-gallery__item figcaption span {
    color: #d4af37;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.project-detail-gallery__item figcaption strong {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.4;
}

/* Visor ampliado */
.public-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px 78px;
    background: rgba(6, 14, 19, 0.94);
}

.public-lightbox.is-open {
    display: flex;
}

.public-lightbox__stage {
    position: relative;
    display: flex;
    width: min(1180px, 100%);
    max-height: calc(100vh - 56px);
    align-items: center;
    justify-content: center;
}

.public-lightbox__figure {
    display: grid;
    max-width: 100%;
    max-height: calc(100vh - 56px);
    gap: 10px;
    margin: 0;
    justify-items: center;
}

.public-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 110px);
    object-fit: contain;
}

.public-lightbox__caption {
    min-height: 20px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.public-lightbox__close,
.public-lightbox__nav {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(20, 33, 43, 0.82);
    color: #ffffff;
    cursor: pointer;
    font-family: inherit;
    font-size: 26px;
    line-height: 1;
}

.public-lightbox__close:hover,
.public-lightbox__nav:hover {
    border-color: #d4af37;
    background: #d4af37;
    color: #14212b;
}

.public-lightbox__close {
    top: 0;
    right: 0;
}

.public-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
}

.public-lightbox__nav--prev {
    left: -62px;
}

.public-lightbox__nav--next {
    right: -62px;
}

.public-lightbox__nav[hidden] {
    display: none;
}

body.public-lightbox-open {
    overflow: hidden;
}

@media (max-width: 700px) {
    .gallery-grid,
    .project-detail-gallery {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .public-lightbox {
        padding: 64px 14px 68px;
    }

    .public-lightbox__stage {
        width: 100%;
        max-height: calc(100vh - 132px);
    }

    .public-lightbox__image {
        max-height: calc(100vh - 190px);
    }

    .public-lightbox__close,
    .public-lightbox__nav {
        width: 42px;
        height: 42px;
        font-size: 23px;
    }

    .public-lightbox__close {
        top: -52px;
        right: 0;
    }

    .public-lightbox__nav {
        top: auto;
        bottom: -54px;
        transform: none;
    }

    .public-lightbox__nav--prev {
        left: calc(50% - 52px);
    }

    .public-lightbox__nav--next {
        right: calc(50% - 52px);
    }
}

/* Ajuste botón CTA final de Inicio */

.home-final-cta .public-button {
    min-width: 190px;
    min-height: 52px;
    padding: 0 28px !important;
    flex: 0 0 auto;
    font-size: 13px !important;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .home-final-cta .public-button {
        width: 100%;
        min-width: 0;
    }
}

/* Botones públicos — acabado corporativo redondeado */

.public-button,
a.public-button,
button.public-button {
    border-radius: 999px !important;
}

/* Ubicación discreta en Inicio */

.home-location {
    padding-top: 64px;
    padding-bottom: 64px;
}

.home-location__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.home-location__content {
    max-width: 720px;
}

.home-location__content p {
    margin-bottom: 0;
}

@media (max-width: 700px) {
    .home-location__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .home-location .public-button {
        width: 100%;
    }
}

/* Ubicación discreta en Inicio */

.home-location {
    padding-top: 64px;
    padding-bottom: 64px;
}

.home-location__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.home-location__content {
    max-width: 720px;
}

.home-location__content p {
    margin-bottom: 0;
}

@media (max-width: 700px) {
    .home-location__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .home-location .public-button {
        width: 100%;
    }
}

/* Refinamiento final ubicación Inicio */

.home-location {
    padding-top: 42px;
    padding-bottom: 42px;
}

.home-location__content h2 {
    font-size: clamp(38px, 4.2vw, 58px);
    line-height: 1.05;
}

.home-location__inner {
    gap: 36px;
}

.home-location__content h2 {
    font-size: clamp(34px, 3.4vw, 48px);
    line-height: 1.05;
}
.home-location {
    padding-top: 44px;
    padding-bottom: 44px;
}

/* Mapa de ubicación - Contacto */

.contact-map {
    padding: 72px 0;
    background: #eef0ef;
}

.contact-map__layout {
    display: grid;
    grid-template-columns:
        minmax(0, .75fr)
        minmax(0, 1.25fr);
    gap: 42px;
    align-items: stretch;
}

.contact-map__content {
    align-self: center;
}

.contact-map__content h2 {
    max-width: 520px;
    margin: 12px 0 18px;
    font-family: Georgia, serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 500;
    line-height: 1.05;
}

.contact-map__content p {
    max-width: 520px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.contact-map__reference {
    margin-top: 14px;
}

.contact-map__frame {
    min-height: 420px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #dfe3e2;
}

.contact-map__frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

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

    .contact-map__frame,
    .contact-map__frame iframe {
        min-height: 380px;
    }
}

@media (max-width: 700px) {
    .contact-map {
        padding: 58px 0;
    }

    .contact-map__frame,
    .contact-map__frame iframe {
        min-height: 320px;
    }

    .contact-map .public-button {
        width: 100%;
    }
}

/* Jerarquía visual — Contacto */

.contact-map {
    background: #f7f5ef !important;
    border-top: 1px solid rgba(212, 175, 55, 0.22);
    border-bottom: 1px solid rgba(31, 41, 55, 0.08);
}

.contact-options {
    background: #eef0ef !important;
}

.contact-map__content {
    padding: 22px 0;
}