:root {
    --okio-green: #5F7F6F;
    --okio-green-soft: #A9C3B3;
    --okio-green-deep: #3F5F50;
    --okio-green-mist: #DCE9E2;
    --okio-text: #6B6B6B;
    --okio-bg: #5F7F6F;
    --okio-white: #FFFFFF;
    --okio-border: rgba(63, 95, 80, 0.14);
    --okio-shadow: 0 24px 50px rgba(63, 95, 80, 0.08);
    --sidebar-width: 214px;
    --content-max: 1346px;
    --site-scale: 0.8;
    --font-body: "Inter", sans-serif;
    --font-display: "Playfair Display", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    zoom: var(--site-scale);
}

body {
    margin: 0;
    background: var(--okio-bg);
    color: var(--okio-text);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
}

.okio-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    min-height: 100vh;
    background: #fbfbfa;
    color: var(--okio-green-deep);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.okio-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page--inicio.is-loading {
    overflow: hidden;
}

.okio-loader__inner {
    width: min(620px, 86vw);
    display: grid;
    justify-items: center;
    text-align: center;
    transform: translateY(2vh);
}

.okio-loader__visual {
    width: min(260px, 48vw);
    height: auto;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

.okio-loader__visual img {
    width: 100%;
    height: auto;
    max-width: none;
    transform-origin: center center;
    animation: okio-loader-spin 2.4s linear infinite;
}

.okio-loader__wordmark {
    width: min(420px, 72vw);
    display: flex;
    justify-content: center;
    align-items: center;
}

.okio-loader__wordmark img {
    width: 100%;
    height: auto;
}

@keyframes okio-loader-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@supports not (zoom: 1) {
    .okio-shell {
        width: calc(100% / var(--site-scale));
        min-height: calc(100vh / var(--site-scale));
        transform: scale(var(--site-scale));
        transform-origin: top left;
    }
}

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

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

button,
input {
    font: inherit;
}

.okio-shell {
    position: relative;
    display: grid;
    grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
    align-items: stretch;
    min-height: 100vh;
    background: var(--okio-bg);
}

.okio-shell::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--sidebar-width);
    background: #efeee8;
    border-right: 1px solid var(--okio-border);
    box-shadow: inset -1px 0 0 rgba(63, 95, 80, 0.08);
    z-index: 0;
}

.page--inicio .okio-shell--preload {
    opacity: 1;
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.page--inicio.is-loading .okio-shell--preload {
    opacity: 0;
    transform: translateY(14px);
}

.page--inicio.is-ready .okio-shell--preload {
    opacity: 1;
    transform: translateY(0);
}

.sidebar {
    position: relative;
    align-self: stretch;
    min-height: 100%;
    padding: 26px 24px 22px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 22px;
    z-index: 20;
}

.sidebar__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--okio-green-deep);
}

.sidebar__brand-image {
    width: min(166px, 100%);
    display: block;
}

.sidebar__brand-image img {
    width: 100%;
    height: auto;
}

.sidebar__tagline {
    color: #2f4037;
    text-align: center;
    padding: 18px 8px 22px;
    border-top: 1px solid var(--okio-border);
    border-bottom: 1px solid var(--okio-border);
    text-transform: uppercase;
    font-size: 0.84rem;
    letter-spacing: 0.05em;
    line-height: 1.55;
    display: grid;
    gap: 2px;
}

.sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 8px;
}

.sidebar__link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 10px;
    color: #22302a;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
    border-radius: 16px;
    overflow: hidden;
    isolation: isolate;
    transition: color 0.22s ease, transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.sidebar__link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(220, 233, 226, 0) 0%,
        rgba(220, 233, 226, 0.12) 32%,
        rgba(220, 233, 226, 0.85) 50%,
        rgba(220, 233, 226, 0.16) 68%,
        rgba(220, 233, 226, 0) 100%
    );
    transform: translateX(-145%);
    opacity: 0;
    transition: transform 0.72s ease, opacity 0.26s ease;
    z-index: -1;
}

.sidebar__link > * {
    position: relative;
    z-index: 1;
}

.sidebar__link:hover {
    transform: translateX(3px);
    color: var(--okio-green);
    background: rgba(220, 233, 226, 0.46);
    box-shadow: 0 0 0 1px rgba(95, 127, 111, 0.08);
}

.sidebar__link:hover::before {
    transform: translateX(145%);
    opacity: 1;
}

.sidebar__link.is-active {
    color: var(--okio-green);
    background: rgba(220, 233, 226, 0.34);
}

.sidebar__icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: inherit;
    flex: 0 0 auto;
}

.sidebar__icon svg {
    width: 27px;
    height: 27px;
    stroke-width: 1.7;
}


.content {
    position: relative;
    z-index: 1;
    min-width: 0;
    background: var(--okio-bg);
}

.page {
    max-width: var(--content-max);
    margin: 0 auto;
    padding-bottom: 28px;
    background: var(--okio-bg);
}

.mobile-bar {
    display: none;
}

.section-nav {
    display: flex;
    justify-content: center;
    gap: 26px;
    padding: 18px 24px 0;
    color: #20302a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.88rem;
}

.section-nav__link {
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.section-nav__link.is-active {
    color: var(--okio-green);
    border-bottom-color: var(--okio-green);
}

.hero {
    display: grid;
    grid-template-columns: minmax(340px, 41%) minmax(0, 59%);
    min-height: 460px;
    overflow: hidden;
}

.hero__copy,
.hero__media {
    min-height: 100%;
}

.hero__copy {
    padding: 56px 48px 44px;
}

.hero--dark .hero__copy {
    background: linear-gradient(180deg, #062b22 0%, #0a3a2f 100%);
    color: var(--okio-white);
}

.hero--light .hero__copy {
    background: var(--okio-white);
    color: #233129;
}

.section-kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--okio-green-soft);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero--light .section-kicker {
    color: var(--okio-green);
}

.hero__title,
.band__copy h2,
.publication-card h2 {
    font-family: var(--font-display);
}

.hero__title {
    margin: 0;
    color: currentColor;
    font-size: clamp(3.2rem, 6vw, 5rem);
    line-height: 0.92;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    margin: 14px 0 12px;
    color: var(--okio-green-soft);
    font-family: var(--font-body);
    font-size: 1.95rem;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero--light .hero__subtitle {
    color: var(--okio-green);
}

.hero__text {
    margin: 0 0 16px;
    font-size: 1.02rem;
    max-width: 560px;
}

.hero--dark .hero__text {
    color: rgba(255, 255, 255, 0.88);
}

.hero__media {
    position: relative;
    background: #d7ddd8;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
}

.page--inicio .page {
    background: #efeee8;
}

.page--contacto .page {
    background: #efeee8;
}

.page--inicio .hero {
    position: relative;
    isolation: isolate;
    min-height: 570px;
    grid-template-columns: minmax(780px, 58%) minmax(0, 1fr);
    background: #071b15;
}

.page--inicio .hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.page--inicio .hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(2, 18, 14, 0.9) 0%, rgba(2, 18, 14, 0.67) 23%, rgba(2, 18, 14, 0.18) 48%, rgba(2, 18, 14, 0.03) 100%),
        linear-gradient(180deg, rgba(2, 18, 14, 0.2) 0%, rgba(2, 18, 14, 0.07) 50%, rgba(2, 18, 14, 0.28) 100%);
    pointer-events: none;
}

.page--inicio .hero__media img {
    object-position: center center;
}

.page--inicio .hero__copy {
    position: relative;
    z-index: 2;
    max-width: 980px;
    padding: 84px 58px 62px;
    background: transparent;
}

.page--inicio .section-kicker {
    display: none;
}

.page--inicio .hero__title {
    max-width: none;
    font-size: clamp(3.4rem, 3.6vw, 4.4rem);
    line-height: 0.95;
    color: #fbfaf4;
    white-space: normal;
    text-wrap: nowrap;
}

.page--inicio .hero__title::after {
    content: "";
    display: block;
    width: 58px;
    height: 2px;
    margin: 32px 0 18px;
    background: rgba(251, 250, 244, 0.62);
}

.page--inicio .hero__text {
    max-width: 500px;
    margin-bottom: 0;
    color: rgba(251, 250, 244, 0.92);
    font-size: 1.08rem;
    line-height: 1.72;
    letter-spacing: 0.01em;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
}

.page--inicio .hero__text + .hero__text {
    margin-top: 12px;
}

.page--inicio .button-row {
    align-items: center;
    gap: 22px;
    margin-top: 34px;
}

.page--inicio .button {
    min-width: 226px;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.88rem;
    font-weight: 700;
}

.page--inicio .button--primary {
    justify-content: space-between;
    background: #b8c68d;
    color: #173126;
}

.page--inicio .button--primary::after {
    content: "\2192";
    width: auto;
    height: auto;
    margin-left: 16px;
    background: transparent;
    font-size: 1.2rem;
    line-height: 1;
}

.page--contacto .hero {
    position: relative;
    isolation: isolate;
    min-height: 560px;
    grid-template-columns: minmax(720px, 56%) minmax(0, 1fr);
    background: #071b15;
}

.page--contacto .hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.page--contacto .hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(2, 18, 14, 0.92) 0%, rgba(2, 18, 14, 0.7) 24%, rgba(2, 18, 14, 0.18) 52%, rgba(2, 18, 14, 0.04) 100%),
        linear-gradient(180deg, rgba(2, 18, 14, 0.14) 0%, rgba(2, 18, 14, 0.06) 48%, rgba(2, 18, 14, 0.34) 100%);
    pointer-events: none;
}

.page--contacto .hero__media img {
    object-position: center center;
}

.page--contacto .hero__copy {
    position: relative;
    z-index: 2;
    max-width: 920px;
    padding: 84px 58px 62px;
    background: transparent;
}

.page--contacto .section-kicker {
    color: rgba(251, 250, 244, 0.8);
}

.page--contacto .hero__title {
    max-width: 12ch;
    font-size: clamp(3.25rem, 3.45vw, 4.25rem);
    line-height: 0.95;
    color: #fbfaf4;
}

.page--contacto .hero__title::after {
    content: "";
    display: block;
    width: 58px;
    height: 2px;
    margin: 30px 0 18px;
    background: rgba(251, 250, 244, 0.62);
}

.page--contacto .hero__text {
    max-width: 520px;
    margin-bottom: 0;
    color: rgba(251, 250, 244, 0.92);
    font-size: 1.05rem;
    line-height: 1.72;
    letter-spacing: 0.01em;
}

.page--contacto .hero__text + .hero__text {
    margin-top: 12px;
}

.page--contacto .band {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 22px 34px;
}

.page--contacto .band__copy {
    max-width: 840px;
}

.page--contacto .band__copy h2 {
    margin-bottom: 0;
    font-size: clamp(1.85rem, 2.5vw, 2.8rem);
    line-height: 1.02;
}

.page--contacto .band__copy p {
    display: none;
}

.page--inicio .button--ghost {
    min-width: auto;
    gap: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fbfaf4;
}

.page--inicio .button--ghost::before {
    content: "\25B7";
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(251, 250, 244, 0.5);
    border-radius: 50%;
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1;
}

.page--inicio .section-space {
    margin-top: 0;
}

.page--inicio .panel {
    box-shadow: none;
    border-color: rgba(36, 48, 42, 0.12);
}

.page--inicio .panel:has(.card-grid--4) {
    background: #efeee8;
}

.page--inicio .card-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page--inicio .info-card {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    column-gap: 22px;
    align-items: start;
    min-height: 150px;
    padding: 34px 30px 30px;
    border-color: rgba(36, 48, 42, 0.16);
}

.page--inicio .info-card__icon {
    width: 66px;
    height: 66px;
    margin: 0;
    color: #496755;
    background: rgba(184, 198, 141, 0.25);
}

.page--inicio .info-card__icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    opacity: 0.82;
}

.page--inicio .info-card h2 {
    position: relative;
    margin-bottom: 24px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.page--inicio .info-card h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 44px;
    height: 1px;
    background: rgba(36, 48, 42, 0.42);
}

.page--inicio .info-card p {
    grid-column: 2;
    width: 100%;
    max-width: 100%;
    color: #26352d;
    font-size: 0.9rem;
    line-height: 1.58;
    text-align: left;
    text-align-last: auto;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
}

.page--inicio .band {
    grid-template-columns: minmax(0, 2.8fr) minmax(320px, 0.86fr);
    gap: 42px;
    min-height: 154px;
    margin-top: 0;
    padding: 18px 54px;
    background: #0b3329;
}

.page--inicio .band__art {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 118px;
    color: rgba(220, 233, 226, 0.56);
}

.page--inicio .band__art svg {
    width: min(100%, 320px);
}

.page--inicio .band__copy {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.72fr);
    gap: 42px;
    align-items: center;
    padding-right: 42px;
    border-right: 1px solid rgba(239, 238, 232, 0.24);
}

.page--inicio .band__copy h2 {
    max-width: 660px;
    color: #fbfaf4;
    font-size: clamp(1.55rem, 2.05vw, 2.35rem);
    line-height: 1.12;
}

.page--inicio .band__copy p {
    max-width: 335px;
    color: rgba(251, 250, 244, 0.9);
    font-size: 0.82rem;
    line-height: 1.65;
}

.page--inicio .band__cta {
    min-height: 100%;
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    column-gap: 20px;
    row-gap: 6px;
    justify-content: start;
    align-content: center;
    align-items: center;
    border-left: 1px solid rgba(239, 238, 232, 0.24);
    padding-left: 30px;
}

.page--inicio .band__cta-icon {
    grid-row: 1 / span 3;
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(184, 198, 141, 0.45);
    border-radius: 50%;
    color: #dce9e2;
}

.page--inicio .band__cta-icon svg {
    width: 30px;
    height: 30px;
}

.page--inicio .band__cta strong {
    color: #fbfaf4;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    line-height: 1;
}

.page--inicio .band__cta p {
    max-width: 235px;
    margin: 0;
    color: rgba(251, 250, 244, 0.9);
    font-size: 0.78rem;
    line-height: 1.58;
}

.page--inicio .band__cta .button {
    min-width: auto;
    min-height: auto;
    color: #b8c68d;
    border: 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    justify-content: flex-start;
}

.page--inicio .band__cta .button::after {
    content: "\2192";
    margin-left: 10px;
}

.page--inicio .principle-block {
    margin-top: 0;
    background: #efeee8;
    border-top: 1px solid rgba(36, 48, 42, 0.12);
}

.page--inicio .principle-block__title {
    margin: 0;
    padding: 18px 28px 0;
    color: #26352d;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.page--inicio .principle-row {
    padding: 16px 28px 20px;
    background: transparent;
}

.page--inicio .principle-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 0 24px;
    border: 0;
    border-right: 1px solid rgba(36, 48, 42, 0.16);
    border-radius: 0;
    background: transparent;
}

.page--inicio .principle-card:last-child {
    border-right: 0;
}

.page--inicio .principle-card__icon {
    width: 44px;
    height: 44px;
    margin: 0;
    color: #496755;
    background: transparent;
}

.page--inicio .principle-card span:last-child {
    color: #26352d;
    font-size: 0.86rem;
    line-height: 1.55;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background: var(--okio-green);
    color: var(--okio-white);
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--okio-white);
    background: rgba(255, 255, 255, 0.06);
}

.button--secondary {
    border-color: var(--okio-border);
    background: var(--okio-white);
    color: var(--okio-green-deep);
}

.button--outline-light {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--okio-white);
    background: transparent;
}

.support-chip,
.notice-card,
.statement-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 16px 18px;
    margin-top: 20px;
}

.hero--light .support-chip,
.hero--light .notice-card {
    border-color: var(--okio-border);
    background: rgba(244, 246, 245, 0.7);
}

.support-chip__icon,
.notice-card__icon,
.panel-icon,
.statement-box__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--okio-green-soft);
    border: 1px solid rgba(169, 195, 179, 0.4);
}

.hero--light .support-chip__icon,
.hero--light .notice-card__icon,
.panel-icon,
.statement-box__icon {
    color: var(--okio-green);
    border-color: rgba(95, 127, 111, 0.26);
}

.support-chip__icon svg,
.notice-card__icon svg,
.panel-icon svg,
.statement-box__icon svg {
    width: 24px;
    height: 24px;
}

.notice-card strong {
    display: block;
    margin-bottom: 6px;
}

.notice-card p,
.statement-box p {
    margin: 0;
}

.media-tag {
    position: absolute;
    max-width: 350px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(6, 43, 34, 0.78);
    color: var(--okio-white);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: var(--okio-shadow);
}

.media-tag strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.media-tag span {
    display: block;
    font-size: 0.92rem;
    line-height: 1.55;
}

.media-tag--bottom-left {
    left: 18px;
    bottom: 18px;
}

.media-tag--bottom-right {
    right: 18px;
    bottom: 18px;
}

.chip-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px 24px 0;
}

.chip-nav__link {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--okio-white);
    border: 1px solid var(--okio-border);
    color: #233129;
}

.chip-nav__link.is-active {
    background: var(--okio-green);
    color: var(--okio-white);
    border-color: var(--okio-green);
}

.section-space {
    margin-top: 22px;
}

.panel {
    background: var(--okio-white);
    border: 1px solid var(--okio-border);
    box-shadow: var(--okio-shadow);
}

.panel--soft {
    padding: 24px;
    border-radius: 22px;
}

.card-grid {
    display: grid;
    gap: 0;
}

.card-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card-grid--columns {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.info-card,
.column-card,
.service-card,
.contact-card,
.process-card {
    padding: 28px 24px;
    border-right: 1px solid var(--okio-border);
}

.info-card:last-child,
.column-card:last-child,
.service-card:last-child,
.contact-card:last-child,
.process-card:last-child {
    border-right: 0;
}

.info-card__icon,
.column-card__icon,
.service-card__icon,
.contact-card__icon,
.process-card__icon,
.principle-card__icon,
.icon-pill__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(95, 127, 111, 0.24);
    color: var(--okio-green-deep);
    background: rgba(220, 233, 226, 0.56);
    margin-bottom: 18px;
}

.info-card__icon svg,
.column-card__icon svg,
.service-card__icon svg,
.contact-card__icon svg,
.process-card__icon svg,
.principle-card__icon svg,
.icon-pill__icon svg {
    width: 30px;
    height: 30px;
}

.info-card__icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    opacity: 0.82;
}

.info-card h2,
.column-card h2,
.service-card h2,
.contact-card h2,
.process-card h2,
.panel--soft h2 {
    margin: 0 0 10px;
    font-family: var(--font-body);
    font-size: 1.95rem;
    line-height: 1.06;
    color: #223129;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.info-card p,
.column-card p,
.service-card p,
.contact-card p,
.process-card p,
.panel--soft p {
    margin: 0;
}

.bullet-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.bullet-list li {
    position: relative;
    padding-left: 24px;
}

.bullet-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid var(--okio-green);
}

.note-box {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(95, 127, 111, 0.22);
    background: rgba(244, 246, 245, 0.86);
}

.note-box strong {
    display: block;
    margin-bottom: 6px;
    color: #20302a;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--okio-green-deep);
    font-weight: 700;
}

.text-link::after {
    content: "→";
}

.text-link::after {
    content: "\2192";
}

.icon-strip,
.principle-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    padding: 22px 24px;
}

.icon-pill,
.principle-card {
    border: 1px solid var(--okio-border);
    border-radius: 22px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 246, 245, 0.92));
}

.icon-pill span:last-child,
.principle-card span:last-child {
    display: block;
    color: #20302a;
    font-weight: 600;
}

.statement-box {
    margin-top: 22px;
    margin-left: 24px;
    margin-right: 24px;
    border-color: rgba(95, 127, 111, 0.22);
    background: var(--okio-white);
}

.dual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.art-block {
    color: rgba(95, 127, 111, 0.64);
    margin-bottom: 16px;
}

.art-block svg {
    width: 100%;
    height: auto;
}

.publication-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 18px;
    align-items: center;
}

.tab-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tab-row__button {
    padding: 0;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: #223129;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 8px;
    cursor: pointer;
}

.tab-row__button.is-active {
    color: var(--okio-green);
    border-bottom-color: var(--okio-green);
}

.search-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 0 8px;
    border-bottom: 1px solid rgba(63, 95, 80, 0.35);
    color: var(--okio-green-deep);
}

.search-input span {
    width: 24px;
    height: 24px;
}

.search-input svg {
    width: 24px;
    height: 24px;
}

.search-input input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #223129;
}

.publication-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.publication-card {
    background: var(--okio-white);
    border: 1px solid var(--okio-border);
    box-shadow: var(--okio-shadow);
    overflow: hidden;
}

.publication-card__media {
    position: relative;
    aspect-ratio: 1.25 / 0.72;
    overflow: hidden;
}

.publication-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
}

.publication-card__index {
    position: absolute;
    top: 14px;
    left: 14px;
    min-width: 44px;
    padding: 8px 10px;
    background: rgba(6, 43, 34, 0.9);
    color: var(--okio-white);
    font-family: var(--font-display);
    font-size: 1.75rem;
    line-height: 1;
}

.publication-card__body {
    padding: 18px 18px 20px;
}

.publication-card__tag {
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: var(--okio-green);
    font-weight: 700;
}

.publication-card h2 {
    margin: 0 0 10px;
    font-size: 2.05rem;
    line-height: 0.97;
    color: #223129;
}

.contact-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.contact-card strong {
    display: block;
    margin-top: 14px;
    color: var(--okio-green);
}

.contact-form-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.42fr);
    gap: 0;
}

.contact-form-shell {
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
}

.contact-form-aside {
    position: relative;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 40px 30px 34px;
    background: linear-gradient(180deg, rgba(220, 233, 226, 0.86), rgba(239, 238, 232, 0.96));
    border-right: 1px solid rgba(95, 127, 111, 0.14);
}

.contact-form-aside::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: 26px;
    width: 116px;
    height: 116px;
    border-radius: 28px;
    background: rgba(95, 127, 111, 0.08);
    transform: rotate(18deg);
}

.contact-form-aside .section-kicker {
    color: #173126;
}

.contact-form-aside h2 {
    margin-top: 8px;
    max-width: 10ch;
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form-aside p {
    color: #3d4e45;
    max-width: 30ch;
}

.contact-form-meta {
    position: relative;
    display: grid;
    gap: 6px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(95, 127, 111, 0.18);
    z-index: 1;
}

.contact-form-meta span {
    color: #607367;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-form-meta strong {
    color: #223129;
    font-size: 1.02rem;
    font-weight: 700;
    word-break: break-word;
}

.contact-form-details {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(95, 127, 111, 0.18);
}

.contact-form-detail {
    display: grid;
    gap: 4px;
}

.contact-form-detail__label {
    color: #607367;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-form-detail p {
    margin: 0;
    color: #223129;
    font-size: 0.98rem;
    font-weight: 700;
}

.contact-form-detail small {
    color: #4b5f53;
    font-size: 0.86rem;
    line-height: 1.45;
}

.contact-form-main {
    padding: 36px 34px 34px 22px;
    background: rgba(255, 255, 255, 0.97);
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-field {
    display: grid;
    gap: 8px;
    color: #223129;
    font-size: 0.95rem;
    font-weight: 600;
}

.form-field span {
    color: #223129;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(95, 127, 111, 0.2);
    border-radius: 16px;
    padding: 14px 16px;
    background: #fbfbf9;
    color: #223129;
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(34, 49, 41, 0.38);
}

.form-field textarea {
    min-height: 176px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(95, 127, 111, 0.56);
    box-shadow: 0 0 0 4px rgba(220, 233, 226, 0.72);
    background: var(--okio-white);
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-error {
    color: #8a2f2f;
    font-size: 0.86rem;
    font-weight: 600;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.form-footnote {
    margin: 0;
    color: #4b5f53;
    font-size: 0.92rem;
}

.form-alert {
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid transparent;
}

.form-alert strong {
    display: block;
    margin-bottom: 6px;
    color: #223129;
}

.form-alert p {
    margin: 0;
}

.form-alert--success {
    background: rgba(220, 233, 226, 0.78);
    border-color: rgba(95, 127, 111, 0.22);
}

.form-alert--warning {
    background: rgba(244, 238, 221, 0.92);
    border-color: rgba(183, 140, 63, 0.24);
}

.form-alert--error {
    background: rgba(245, 228, 228, 0.94);
    border-color: rgba(145, 68, 68, 0.2);
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.band {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.6fr) minmax(220px, 0.8fr);
    align-items: center;
    gap: 28px;
    background: linear-gradient(180deg, #0b3b31 0%, #133f35 100%);
    color: var(--okio-white);
    padding: 26px 30px;
    border-radius: 0;
    border: 0;
}

.band__art {
    color: rgba(220, 233, 226, 0.62);
}

.band__art svg {
    width: 100%;
    height: auto;
}

.band__copy h2 {
    margin: 0 0 8px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    font-weight: 500;
}

.band__copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
}

.band__cta {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 1200px) {
    .card-grid--5,
    .service-grid,
    .card-grid--columns,
    .publication-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .info-card,
    .column-card,
    .service-card,
    .publication-card,
    .contact-card,
    .process-card {
        border-right: 0;
        border-bottom: 1px solid var(--okio-border);
    }

    .card-grid--5 > *:nth-last-child(-n + 2),
    .service-grid > *:nth-last-child(-n + 2),
    .card-grid--columns > *:nth-last-child(-n + 2),
    .process-grid > *:nth-last-child(-n + 2),
    .contact-grid > *:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .process-grid,
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-form-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-aside {
        border-right: 0;
        border-bottom: 1px solid rgba(95, 127, 111, 0.14);
    }

    .contact-form-aside h2,
    .contact-form-aside p {
        max-width: none;
    }

    .contact-form-main {
        padding-left: 34px;
    }
}

@media (max-width: 980px) {
    .okio-shell {
        grid-template-columns: 1fr;
    }

    .okio-shell::before {
        display: none;
    }

    .sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        align-self: start;
        width: min(320px, 84vw);
        height: 100vh;
        min-height: 100vh;
        overflow-y: auto;
        background: #efeee8;
        border-right: 1px solid var(--okio-border);
        transform: translateX(-100%);
        transition: transform 0.26s ease;
        box-shadow: 20px 0 40px rgba(0, 0, 0, 0.16);
    }

    .sidebar.is-open {
        transform: translateX(0);
    }

.mobile-bar {
        position: sticky;
        top: 0;
        z-index: 18;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 14px 18px;
        background: rgba(255, 255, 255, 0.9);
        border-bottom: 1px solid var(--okio-border);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

    .mobile-bar__toggle {
        border: 0;
        background: transparent;
        width: 42px;
        height: 42px;
        padding: 0;
        display: grid;
        place-items: center;
        cursor: pointer;
    }

    .mobile-bar__toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--okio-green-deep);
        margin: 2px 0;
    }

    .mobile-bar__brand strong {
        display: block;
        color: #20302a;
    }

    .mobile-bar__brand span {
        display: block;
        font-size: 0.88rem;
        color: var(--okio-green);
    }

    .page {
        padding-bottom: 18px;
    }

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

    .hero__copy {
        padding: 34px 24px;
    }

    .hero__media {
        min-height: 320px;
    }

    .section-nav,
    .chip-nav,
    .statement-box {
        padding-left: 18px;
        padding-right: 18px;
        margin-left: 0;
        margin-right: 0;
    }

    .dual-grid,
    .band {
        grid-template-columns: 1fr;
    }

    .band__cta {
        justify-content: flex-start;
    }

    .publication-toolbar {
        grid-template-columns: 1fr;
    }
}

@supports (content-visibility: auto) {
    .section-space,
    .chip-nav,
    .statement-box {
        content-visibility: auto;
        contain-intrinsic-size: 1px 720px;
    }
}

@media (max-width: 680px) {
    .card-grid--4,
    .card-grid--5,
    .card-grid--columns,
    .service-grid,
    .publication-grid,
    .contact-grid,
    .process-grid,
    .dual-grid {
        grid-template-columns: 1fr;
    }

    .section-nav {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
    }

    .publication-card h2,
    .info-card h2,
    .column-card h2,
    .service-card h2,
    .contact-card h2,
    .process-card h2,
    .panel--soft h2 {
        font-size: 1.7rem;
    }

    .media-tag {
        position: static;
        margin: 12px;
        max-width: none;
    }

    .hero__title {
        font-size: 2.8rem;
    }

    .hero__subtitle {
        font-size: 1.5rem;
    }

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

    .contact-form-aside,
    .contact-form-main {
        padding: 28px 22px;
    }

    .form-actions {
        align-items: stretch;
    }

    .form-actions .button {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .page--inicio .card-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page--inicio .info-card:nth-child(2n) {
        border-right: 0;
    }

    .page--inicio .band__copy {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 980px) {
    .page--contacto .hero {
        min-height: 620px;
        grid-template-columns: 1fr;
    }

    .page--contacto .hero__copy {
        padding: 62px 28px 54px;
    }

    .page--contacto .hero__title {
        max-width: 14ch;
        font-size: clamp(3.05rem, 11vw, 4.5rem);
    }

    .page--contacto .hero__media {
        min-height: 100%;
    }

    .page--inicio .hero {
        min-height: 620px;
        grid-template-columns: 1fr;
    }

    .page--inicio .hero__copy {
        padding: 62px 28px 54px;
    }

    .page--inicio .hero__title {
        font-size: clamp(3.1rem, 12vw, 4.8rem);
        white-space: normal;
        text-wrap: balance;
    }

    .page--inicio .hero__media {
        min-height: 100%;
    }

    .page--inicio .band__copy,
    .page--inicio .band__cta {
        border: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .page--inicio .band__cta {
        grid-template-columns: 62px minmax(0, 1fr);
    }
}

@media (max-width: 680px) {
    .page--contacto .hero__title {
        max-width: none;
    }

    .page--inicio .card-grid--4 {
        grid-template-columns: 1fr;
    }

    .page--inicio .info-card {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: auto;
        padding: 30px 24px;
        border-right: 0;
    }

    .page--inicio .info-card p {
        grid-column: auto;
    }

    .page--inicio .button-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .page--inicio .principle-row,
    .page--inicio .principle-card {
        grid-template-columns: 1fr;
    }

    .page--inicio .principle-card {
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(36, 48, 42, 0.16);
    }
}
