@font-face {
    font-family: "Sonara BC";
    src: url("../fonts/sonara-bc.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Sonara BC";
    src: url("../fonts/sonara-bc-italic.ttf") format("truetype");
    font-style: italic;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Sonara Two BC";
    src: url("../fonts/sonara-two-bc.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: Inter;
    src: url("../fonts/Inter-VariableFont_slnt,wght.woff2") format("woff2");
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
}

@font-face {
    font-family: Cardo;
    src: url("../fonts/cardo_normal_400.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: Cardo;
    src: url("../fonts/cardo_normal_700.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --wp--preset--spacing--10: 0.75rem;
    --wp--preset--spacing--20: 1rem;
    --wp--preset--spacing--30: 1.5rem;
    --wp--preset--spacing--40: 2rem;
    --wp--preset--spacing--50: 3rem;
    --wp--preset--spacing--60: 4rem;
    --base: #fbf7f1;
    --base-2: #fffdf8;
    --contrast: #181411;
    --muted: #655c53;
    --accent: #bb7a39;
    --accent-dark: #8f5624;
    --sage: #66745f;
    --blue: #344e5d;
    --line: rgba(21, 18, 15, 0.16);
    --soft-line: rgba(24, 20, 17, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--base);
    color: var(--contrast);
    font-family: "Sonara BC", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
}

body::selection {
    background: rgba(187, 122, 57, 0.22);
}

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

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

h1,
h2,
h3,
h4,
h5,
h6,
.wp-block-post-title,
.has-heading-font-family {
    font-family: inherit;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.1;
}

h1,
.wp-block-post-title {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.55rem;
}

p {
    margin-top: 0;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -10rem;
    z-index: 10;
    background: var(--contrast);
    color: white;
    padding: 0.75rem 1rem;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    background: rgba(255, 253, 248, 0.96);
    border-bottom: 1px solid rgba(187, 122, 57, 0.18);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 20;
}

.site-header__inner {
    width: min(1180px, calc(100% - 2rem));
    min-height: 88px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.brand__logo {
    width: 64px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.brand__name,
.footer-title,
.has-sonara-bc-font-family {
    font-family: "Sonara BC", Inter, sans-serif;
}

.brand__name {
    color: var(--accent);
    font-size: 1.45rem;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 1rem;
}

.site-nav a,
.mobile-nav a {
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding: 0.2rem 0;
    transition: color 160ms ease, border-color 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
    border-color: var(--accent);
}

.mobile-nav {
    display: none;
    position: relative;
}

.mobile-nav__brand {
    display: none;
}

.mobile-nav summary {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: white;
    cursor: pointer;
    list-style: none;
    font-size: 1.35rem;
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.mobile-nav nav {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    min-width: 240px;
    padding: 0.8rem;
    display: grid;
    gap: 0.7rem;
    background: var(--base-2);
    border: 1px solid var(--line);
    box-shadow: 0 16px 36px rgba(21, 18, 15, 0.18);
    z-index: 5;
}

.has-text-align-center {
    text-align: center;
}

.has-text-align-left {
    text-align: left;
}

.has-base-2-color {
    color: var(--base-2);
}

.has-accent-3-color {
    color: var(--accent);
}

.has-base-2-background-color {
    background-color: var(--base-2);
}

.has-small-font-size {
    font-size: 0.9rem;
}

.has-normal-font-size {
    font-size: 1rem;
}

.has-medium-font-size {
    font-size: 1.15rem;
}

.has-large-font-size {
    font-size: 2.2rem;
}

.has-x-large-font-size {
    font-size: 2.8rem;
}

.wp-block-group,
.wp-block-columns,
.wp-block-column,
.wp-block-cover,
.wp-block-image,
.wp-block-buttons,
.wp-block-button {
    position: relative;
}

.wp-block-group.alignfull {
    width: 100%;
}

.wp-block-group.has-global-padding,
.entry-content.has-global-padding {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.wp-block-group[style*="border-radius:16px"] {
    border-radius: 0 !important;
    background: transparent !important;
}

.wp-block-group.is-layout-constrained > *,
.entry-content.is-layout-constrained > *,
.alignwide {
    width: min(1120px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.entry-content > .alignfull,
.wp-block-group.alignfull {
    width: 100%;
    max-width: none;
}

.wp-block-columns {
    display: flex;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: stretch;
}

.wp-block-column {
    min-width: 0;
    flex: 1 1 0;
}

.is-vertically-aligned-center {
    align-self: center;
}

.is-layout-flex {
    display: flex;
    gap: 1.5rem;
}

.is-vertical {
    flex-direction: column;
}

.is-content-justification-center {
    justify-content: center;
}

.is-content-justification-space-between {
    justify-content: space-between;
}

.is-content-justification-stretch {
    align-items: stretch;
}

.wp-block-spacer {
    clear: both;
}

.wp-block-spacer[style*="--wp--preset--spacing--50"],
.wp-block-spacer[style*="--wp--preset--spacing--60"] {
    height: clamp(1.5rem, 4vw, 3rem) !important;
}

.wp-block-cover {
    min-height: 40vw;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #21170f;
}

.wp-block-cover__image-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.96) contrast(1.02);
}

.page-home .wp-block-cover__image-background {
    --hero-zoom-start: 1.02;
    --hero-zoom-end: 1.1;
    animation: heroSlowZoom 18s ease-in-out infinite;
    transform: scale(var(--hero-zoom-start));
    transform-origin: 50% 46%;
    will-change: transform;
}

@keyframes heroSlowZoom {
    0%,
    100% {
        transform: scale(var(--hero-zoom-start));
    }

    50% {
        transform: scale(var(--hero-zoom-end));
    }
}

.wp-block-cover__background {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.06));
}

.wp-block-cover__inner-container {
    position: relative;
    z-index: 1;
    color: white;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.wp-block-cover__inner-container .has-sonara-bc-font-family {
    font-size: clamp(3rem, 7vw, 5.75rem);
}

.wp-block-cover__inner-container .hero-typewriter {
    display: block;
    max-width: min(920px, 100%);
    margin: 0 auto;
    font-size: clamp(3.6rem, 8.2vw, 6.5rem);
    line-height: 0.96 !important;
    text-align: center;
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.48), 0 0 36px rgba(255, 248, 230, 0.2);
}

.hero-typewriter__prefix,
.hero-typewriter__word {
    display: inline-block;
}

.hero-typewriter__word {
    min-width: 0;
    text-align: inherit;
    color: #fff8ed;
    position: relative;
}

.hero-typewriter__word::after {
    content: "";
    width: 0.045em;
    height: 0.78em;
    margin-left: 0.08em;
    display: inline-block;
    transform: translateY(0.08em);
    background: currentColor;
    animation: cursorBlink 900ms steps(1) infinite;
}

@keyframes cursorBlink {
    0%,
    48% {
        opacity: 1;
    }

    49%,
    100% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-home .wp-block-cover__image-background,
    .hero-typewriter__word::after {
        animation: none;
    }
}

.wp-block-image {
    margin: 0;
}

.wp-block-image img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.page-home .wp-block-cover {
    min-height: clamp(420px, 47vw, 650px);
}

.page-home .wp-block-cover__inner-container {
    width: min(900px, calc(100% - 2rem));
}

.page-home main > .wp-block-group:not(:first-child) {
    padding-top: clamp(2.8rem, 5vw, 4.5rem) !important;
    padding-bottom: clamp(2.8rem, 5vw, 4.5rem) !important;
}

.page-home .wp-block-group[style*="border-radius:16px"] {
    padding: 0 !important;
}

.page-home .wp-block-group[style*="border-radius:16px"] > .wp-block-group,
.page-home .wp-block-group[style*="border-radius:16px"] > .wp-block-columns,
.page-home .wp-block-group[style*="border-radius:16px"] > p {
    width: min(1080px, 100%);
}

.page-home .wp-block-columns.alignwide img {
    aspect-ratio: 4 / 3;
    box-shadow: 0 18px 36px rgba(24, 20, 17, 0.12);
}

.page-home .wp-block-columns.alignwide .wp-block-column {
    display: grid;
    align-content: start;
    gap: 0.85rem;
}

.page-home .wp-block-columns.alignwide .wp-block-column > h5 {
    margin-bottom: 0;
}

.page-home .wp-block-columns.alignwide .wp-block-column > .wp-block-buttons {
    margin-top: auto;
}

.page-home .wp-block-group[style*="background-color:#bb7a39"] {
    background: linear-gradient(135deg, #a4642c, #c27c37) !important;
}

.page-home .wp-block-group[style*="background-color:#bb7a39"] img {
    box-shadow: 0 22px 48px rgba(24, 20, 17, 0.2);
}

.page-home .wp-block-group[style*="background-color:#bb7a39"] > .wp-block-columns.alignwide > .wp-block-column:last-child img {
    aspect-ratio: auto !important;
    object-fit: contain !important;
    height: auto;
    max-height: none;
}

.wp-block-button__link,
.wp-element-button,
.secure-form button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.55rem;
    min-height: 44px;
    padding: 0.78rem 1.15rem;
    border: 1px solid rgba(24, 20, 17, 0.86);
    border-radius: 4px;
    background: linear-gradient(135deg, var(--contrast), #2e251d);
    color: #fff;
    text-decoration: none;
    font: inherit;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(24, 20, 17, 0.14);
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.wp-block-button__link::after,
.wp-element-button::after {
    content: "";
    width: 0.45em;
    height: 0.45em;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.wp-block-button__link:hover,
.wp-element-button:hover,
.secure-form button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    border-color: rgba(143, 86, 36, 0.95);
    box-shadow: 0 18px 34px rgba(24, 20, 17, 0.2);
}

.wp-block-button__link:hover::after,
.wp-element-button:hover::after {
    transform: translateX(0.14rem) rotate(45deg);
}

.wp-block-button__width-100 .wp-block-button__link {
    width: 100%;
}

.is-style-outline .wp-block-button__link {
    background: rgba(255, 253, 248, 0.08);
    border-color: currentColor;
    box-shadow: none;
}

.is-style-outline .wp-block-button__link:hover {
    background: var(--base-2);
    color: var(--accent-dark) !important;
    border-color: var(--base-2);
}

.lightweight-accordion {
    border: 0;
    counter-increment: faq-item;
    margin: 0.75rem 0;
}

.lightweight-accordion:last-child {
    border-bottom: 0;
}

.lightweight-accordion details {
    overflow: hidden;
    border: 1px solid rgba(187, 122, 57, 0.18);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.78);
    box-shadow: 0 14px 38px rgba(24, 20, 17, 0.08);
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.lightweight-accordion details[open] {
    background: #fffdf8;
    border-color: rgba(187, 122, 57, 0.38);
    box-shadow: 0 20px 44px rgba(24, 20, 17, 0.12);
}

.lightweight-accordion summary {
    min-height: 64px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.lightweight-accordion summary::-webkit-details-marker {
    display: none;
}

.lightweight-accordion summary span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.lightweight-accordion summary::before {
    content: counter(faq-item, decimal-leading-zero);
    display: grid;
    place-items: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 50%;
    background: rgba(187, 122, 57, 0.14);
    color: var(--accent-dark);
    font-size: 0.78rem;
}

.lightweight-accordion summary::after {
    content: "+";
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(24, 20, 17, 0.18);
    border-radius: 50%;
    color: var(--accent-dark);
    font-size: 1.1rem;
    line-height: 1;
}

.lightweight-accordion details[open] summary::after {
    content: "-";
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
}

.lightweight-accordion-body {
    padding: 0 1.25rem 1.25rem 4.35rem;
    color: #302a25;
}

.wp-block-group.alignwide:has(> .lightweight-accordion) {
    counter-reset: faq-item;
    display: grid;
    gap: 0.2rem;
}

.wp-block-group.alignfull.has-base-2-background-color:has(.lightweight-accordion) {
    background:
        linear-gradient(135deg, rgba(187, 122, 57, 0.07), rgba(102, 116, 95, 0.08)),
        var(--base-2) !important;
}

.wp-block-group.alignfull.has-base-2-background-color:has(.lightweight-accordion) > p.has-text-align-center {
    width: min(760px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.wp-block-group.alignfull.has-base-2-background-color:has(.lightweight-accordion) hr {
    width: min(120px, 100%);
    margin: 1rem auto 2rem;
    border: 0;
    border-top: 2px solid rgba(187, 122, 57, 0.42);
}

.secure-form-wrap {
    width: min(920px, 100%);
    margin: 0 auto;
    color: var(--contrast);
    scroll-margin-top: 7rem;
}

.secure-form {
    display: grid;
    gap: clamp(1.2rem, 3vw, 2rem);
    background: rgba(255, 253, 248, 0.96);
    color: var(--contrast);
    padding: clamp(1.4rem, 4vw, 3rem);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(24, 20, 17, 0.18);
}

.secure-form h3 {
    margin: 1.5rem 0 0.2rem;
    color: var(--contrast);
}

.form-intro {
    display: grid;
    gap: 0.45rem;
    padding-bottom: 0.35rem;
}

.form-eyebrow {
    color: var(--accent-dark);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-intro h2 {
    margin: 0;
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1;
}

.form-intro p {
    max-width: 36rem;
    color: var(--muted);
    font-size: 1.08rem;
}

.secure-form fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.secure-form legend {
    width: 100%;
    margin-bottom: 1.2rem;
    color: var(--contrast);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.secure-form p {
    margin: 0;
}

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

.form-grid__wide {
    grid-column: 1 / -1;
}

.form-progress {
    display: grid;
    gap: 0.55rem;
}

.form-progress p {
    color: var(--muted);
    font-size: 0.95rem;
}

.form-progress__bar {
    height: 0.45rem;
    overflow: hidden;
    background: rgba(24, 20, 17, 0.12);
    border-radius: 999px;
}

.form-progress__bar span {
    display: block;
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--sage));
    border-radius: inherit;
    transition: width 220ms ease;
}

.secure-form label {
    display: block;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.required-mark {
    color: var(--accent-dark);
    font-size: 1.1em;
}

.secure-form input,
.secure-form textarea,
.secure-form select {
    width: 100%;
    min-height: 52px;
    margin-top: 0.4rem;
    border: 1px solid rgba(24, 20, 17, 0.18);
    border-radius: 5px;
    background: #fff;
    color: var(--contrast);
    padding: 0.82rem 0.9rem;
    font: inherit;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.secure-form input:focus,
.secure-form textarea:focus,
.secure-form select:focus {
    border-color: var(--accent-dark);
    box-shadow: 0 0 0 4px rgba(187, 122, 57, 0.16);
    outline: 0;
}

.secure-form input:user-invalid,
.secure-form textarea:user-invalid,
.secure-form select:user-invalid {
    border-color: #9f2f20;
    box-shadow: 0 0 0 4px rgba(159, 47, 32, 0.12);
}

.secure-form textarea {
    min-height: 170px;
    resize: vertical;
}

.secure-form button {
    background: var(--contrast);
    color: #fff;
    border-color: var(--contrast);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.8rem;
    padding-top: 0.25rem;
}

.form-actions button[hidden],
.secure-form .form-step[hidden] {
    display: none !important;
}

.form-actions button[data-form-prev] {
    background: transparent;
    color: var(--contrast);
}

.form-actions button[data-form-submit] {
    margin-left: auto;
}

.service-form-wrap {
    width: min(860px, 100%);
}

.service-form {
    position: relative;
    overflow: hidden;
}

.service-form::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 0.42rem;
    background: linear-gradient(90deg, var(--accent), var(--sage), var(--contrast));
}

.service-form .form-intro {
    padding-top: 0.25rem;
    border-bottom: 1px solid rgba(24, 20, 17, 0.1);
    padding-bottom: 1.1rem;
}

.service-form .form-intro h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
}

.service-form .form-actions {
    justify-content: flex-end;
}

.page-om-andres .entry-content > .wp-block-group.alignfull > .wp-block-columns.alignwide {
    display: block;
}

.page-om-andres .entry-content > .wp-block-group.alignfull > .wp-block-columns.alignwide::after {
    content: "";
    display: block;
    clear: both;
}

.page-om-andres .entry-content > .wp-block-group.alignfull > .wp-block-columns.alignwide > .wp-block-column:first-child {
    float: left;
    width: min(360px, 34%);
    min-width: 280px;
    margin: 0 2rem 2rem 0;
    shape-margin: 2rem;
}

.page-om-andres .entry-content > .wp-block-group.alignfull > .wp-block-columns.alignwide > .wp-block-column:first-child figure {
    margin: 0;
}

.page-om-andres .entry-content > .wp-block-group.alignfull > .wp-block-columns.alignwide > .wp-block-column:first-child img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.page-om-andres .entry-content > .wp-block-group.alignfull > .wp-block-columns.alignwide > .wp-block-column:not(:first-child),
.page-om-andres .entry-content > .wp-block-group.alignfull > .wp-block-columns.alignwide > .wp-block-column:not(:first-child) > .wp-block-group,
.page-om-andres .entry-content > .wp-block-group.alignfull > .wp-block-columns.alignwide > .wp-block-column:not(:first-child) > .wp-block-group > .wp-block-group {
    display: contents;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid currentColor;
    background: rgba(255, 250, 244, 0.12);
}

.form-status--success {
    color: #f7fff7;
}

.form-status--error {
    color: #fff3f0;
}

.site-footer {
    background: var(--base-2);
    padding: 3rem 1.5rem 2rem;
    border-top: 1px solid rgba(187, 122, 57, 0.2);
}

.site-footer__inner {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(150px, 0.65fr) minmax(150px, 0.65fr);
    gap: 2rem;
}

.site-footer__brand {
    display: grid;
    gap: 0.35rem;
    align-content: start;
}

.footer-logo img {
    width: 28px;
}

.footer-title {
    text-decoration: none;
    font-size: 1.1rem;
}

.site-footer__brand p,
.site-footer__org {
    color: var(--muted);
    font-size: 0.9rem;
}

.site-footer__social,
.site-footer__contact {
    display: grid;
    gap: 0.4rem;
    justify-content: end;
    align-content: start;
}

.site-footer__social h2,
.site-footer__contact h2 {
    margin: 0 0 0.3rem;
    font: inherit;
    font-weight: 700;
    font-size: 1rem;
}

.site-footer__social a,
.site-footer__contact a {
    font-size: 0.9rem;
}

.site-footer__org {
    margin: 2rem auto 0;
    text-align: center;
}

@media (max-width: 820px) {
    h1,
    .wp-block-post-title {
        font-size: 2.3rem;
    }

    .has-large-font-size {
        font-size: 1.8rem;
    }

    .has-x-large-font-size {
        font-size: 2rem;
    }

    .site-header__inner {
        min-height: 72px;
    }

    .brand__logo {
        width: 46px;
    }

    .brand__name {
        font-size: 1.2rem;
    }

    .site-nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .mobile-nav[open] {
        position: fixed;
        inset: 0;
        z-index: 60;
        background: var(--base-2);
    }

    .mobile-nav[open] summary {
        position: fixed;
        top: 0.9rem;
        right: 1rem;
        z-index: 62;
        border-color: var(--contrast);
        background: var(--contrast);
        color: #fff;
        font-size: 0;
    }

    .mobile-nav[open] summary::before {
        content: "×";
        font-size: 2rem;
        line-height: 1;
    }

    .mobile-nav[open] .mobile-nav__brand {
        position: fixed;
        top: 1rem;
        left: 50%;
        z-index: 61;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 8.2rem;
        height: 8.2rem;
        transform: translateX(-50%);
        color: var(--accent);
        text-decoration: none;
    }

    .mobile-nav__brand img {
        width: 7.5rem;
        aspect-ratio: 1 / 1;
        object-fit: contain;
    }

    .mobile-nav__brand span {
        display: none;
    }

    .mobile-nav nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        min-height: 100dvh;
        min-width: 100vw;
        padding: calc(1rem + 7.5rem + 15px) 1.5rem 3rem;
        place-content: start center;
        text-align: center;
        background: linear-gradient(145deg, var(--base-2), #f1e3d4 62%, #d8c9b7);
        border: 0;
        box-shadow: none;
    }

    .mobile-nav[open] nav {
        display: grid;
        align-content: start;
        justify-items: center;
    }

    body:has(.mobile-nav[open]) {
        overflow: hidden;
    }

    .mobile-nav nav a {
        border-bottom: 0;
        color: var(--contrast);
        font-size: clamp(2rem, 10vw, 3.5rem);
        line-height: 1;
        padding: 0.55rem 0;
    }

    .wp-block-columns,
    .is-layout-flex {
        flex-direction: column;
    }

    .page-om-andres .entry-content > .wp-block-group.alignfull > .wp-block-columns.alignwide > .wp-block-column:first-child {
        float: none;
        width: 100%;
        min-width: 0;
        margin: 0 0 1.5rem 0;
    }

    .page-om-andres .entry-content > .wp-block-group.alignfull > .wp-block-columns.alignwide > .wp-block-column:not(:first-child),
    .page-om-andres .entry-content > .wp-block-group.alignfull > .wp-block-columns.alignwide > .wp-block-column:not(:first-child) > .wp-block-group,
    .page-om-andres .entry-content > .wp-block-group.alignfull > .wp-block-columns.alignwide > .wp-block-column:not(:first-child) > .wp-block-group > .wp-block-group {
        display: block;
    }

    .wp-block-group.has-global-padding,
    .entry-content.has-global-padding,
    .wp-block-group[style*="padding-left:var(--wp--preset--spacing--50)"],
    .wp-block-group[style*="padding-right:var(--wp--preset--spacing--50)"],
    .wp-block-group[style*="padding-left:var(--wp--preset--spacing--60)"],
    .wp-block-group[style*="padding-right:var(--wp--preset--spacing--60)"] {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    .wp-block-cover {
        min-height: 46vh;
    }

    .wp-block-cover__inner-container .has-sonara-bc-font-family {
        font-size: clamp(1.35rem, 7vw, 1.9rem);
        line-height: 1.04 !important;
    }

    .wp-block-cover__inner-container .hero-typewriter {
        max-width: 9.5em;
        font-size: clamp(2.2rem, 12vw, 3rem);
        line-height: 0.98 !important;
    }

    .hero-typewriter__word {
        min-width: 0;
    }

    .page-home .wp-block-cover {
        min-height: 48vh;
    }

    .page-home .wp-block-cover__image-background {
        --hero-zoom-start: 1.24;
        --hero-zoom-end: 1.34;
        object-position: 49% 42%;
        transform-origin: 49% 42%;
    }

    .page-home main > .wp-block-group:not(:first-child) {
        padding-top: 2.3rem !important;
        padding-bottom: 2.3rem !important;
    }

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

    .lightweight-accordion summary {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 0.65rem;
        padding: 0.9rem;
    }

    .lightweight-accordion summary::after {
        width: 1.8rem;
        height: 1.8rem;
    }

    .lightweight-accordion-body {
        padding: 0 0.95rem 1rem;
    }

    .secure-form {
        padding: 1.25rem;
        box-shadow: 0 16px 34px rgba(24, 20, 17, 0.14);
    }

    .secure-form-wrap {
        scroll-margin-top: 5.5rem;
    }

    .secure-form legend {
        font-size: clamp(1.45rem, 7vw, 1.85rem);
    }

    .secure-form label {
        font-size: 0.95rem;
    }

    .form-actions {
        flex-direction: column-reverse;
    }

    .form-actions button,
    .form-actions button[data-form-submit] {
        width: 100%;
        margin-left: 0;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .site-footer__social,
    .site-footer__contact {
        justify-content: start;
    }
}
