/* Las @font-face de Space Grotesk / Inter / IBM Plex Mono ya las genera
   WordPress automáticamente a partir de theme.json (fontFace) — no
   redeclarar aquí para no tener dos fuentes de verdad para la misma fuente. */

:root {
    /* --swiper-theme-color es el nombre que espera la librería Swiper (CDN)
       para sobrescribir su azul #007aff por defecto — no es un token propio,
       tiene que seguir declarado con este nombre exacto. */
    --swiper-theme-color: var(--wp--preset--color--clay);

    /* Padding-inline compartido por navbar/hero/apartments-section/
       surroundings-section — igual al inset total que ya usa
       blocks/contact-section (padding-inline de .section + el propio de
       .block-contact-section__grid), que quedó como la referencia visual
       del resto de la home. No es un token de theme.json porque theme.json
       no admite valores responsive; vive aquí como variable CSS. */
    --laiguana-block-padding-inline: 3.475rem;

    accent-color: var(--wp--preset--color--clay);
}

@media (min-width: 768px) {
    :root {
        --laiguana-block-padding-inline: 5.6rem;
    }
}

@media (min-width: 1024px) {
    :root {
        --laiguana-block-padding-inline: 7.2rem;
    }
}

@media (min-width: 1200px) {
    :root {
        --laiguana-block-padding-inline: 9.625rem;
    }
}

a {
    text-decoration: none;
}
.button,
.button.blog,
.scrollup,
.wpcf7-form .wpcf7-submit,
.wpcf7-form input[type="checkbox"]:checked ~ .wpcf7-submit {
    cursor: pointer;
}

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-drag: none;
}
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body {
    font-size: 1.6rem;
    line-height: 1.6;
    font-family: var(--wp--preset--font-family--body);
    color: var(--wp--preset--color--ink);
    background-color: transparent;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    z-index: 0;
}
.button,
h1,
h2,
h3,
h4 {
    font-family: var(--wp--preset--font-family--heading);
}
body.background-body {
    background-color: transparent;
}
h1,
h2,
h3,
h4 {
    margin: 1rem 0;
    line-height: 1.2;
}
h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2.3rem;
}
h3 {
    font-size: 2.2rem;
}
h4 {
    font-size: 2rem;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
img {
    max-width: 100%;
    height: auto;
}
hr {
    border: 1px solid var(--wp--preset--color--pine);
    width: 90%;
}
span {
    color: var(--wp--preset--color--pine);
    font-size: 1.4rem;
    font-weight: 400;
}
@media screen and (min-width: 768px) {
    h1 {
        font-size: 5rem;
    }
    h2 {
        font-size: 4.2rem;
    }
    h3 {
        font-size: 3.6rem;
    }
    h4,
    span {
        font-size: 2.4rem;
    }
}
.footer-container .mobile,
.text-center {
    text-align: center;
}
.heading-title,
.text-start {
    text-align: start;
}
.primary-title {
    color: var(--wp--preset--color--clay);
    margin-block: 2rem;
}
.heading-title {
    color: var(--wp--preset--color--ink);
    margin-block-end: 2rem;
}
@media screen and (min-width: 1024px) {
    h1 {
        font-size: 8rem;
    }
    h2 {
        font-size: 6.8rem;
    }
    h3 {
        font-size: 5.6rem;
    }
    h4 {
        font-size: 4.4rem;
    }
    .heading-title {
        text-align: start;
        font-size: 3rem;
    }
    .primaryButton:hover {
        border: 2px solid var(--wp--preset--color--sky);
        background: var(--wp--preset--color--sky);
        box-shadow: 10px 20px 20px rgba(0, 0, 0, 0.4);
        color: var(--wp--preset--color--ink);
    }
}
.primaryButton,
.secondaryButton {
    color: var(--wp--preset--color--cream);
}
.section {
  scroll-margin-block: 4rem;
}

.section,
.section-bento {
    padding-inline: 1.6rem;
    padding-block: 4rem 8rem;
}
.section-bento {
    width: 100%;
}
@media (width>=768px) {
    .section,
    .section-bento {
        padding-inline: 2.4rem;
        padding-block: 4.2rem 8.4rem;
    }
}
@media (width>=1024px) {
    .section,
    .section-bento {
        padding-inline: 4rem;
        padding-block: 6rem 12rem;
    }
}
@media (width>=2200px) {
    .section {
        padding-inline: 6rem 12rem;
    }
}
.featured-image {
    margin-block-end: 4rem;
    display: flex;
}
.button {
    border: 2px solid var(--wp--preset--color--clay);
    border-radius: 1.5rem;
    padding: 1rem 2.25rem;
    text-transform: capitalize;
    font-weight: 700;
    text-align: center;
    transition: 0.6s;
    display: block;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 4px;
}
.button.blog,
.vat-info {
    text-transform: uppercase;
}
.button-container .primaryButton {
    font-size: 1.4rem;
    margin-block: 4rem;
    opacity: 0;
}
.primaryButton {
    background-color: var(--wp--preset--color--clay);
    animation: 1s ease-in-out 0.5s forwards animate;
}
.secondaryButton {
    background-color: var(--wp--preset--color--sky);
    border: 2px solid transparent;
    margin: 0 auto;
}
.secondaryButton:hover {
    background-color: var(--wp--preset--color--sky);
    border: 2px solid var(--wp--preset--color--sky);
}
.margin-auto {
    margin: 0 auto !important;
    margin-block-end: 10rem !important;
}
.wrapper {
    width: 100%;
    padding-inline: 1.6rem;
    margin: 0 auto;
    height: 100%;
}
@media screen and (min-width: 768px) {
    .wrapper {
        padding-inline: 2.4rem;
    }
}
@media screen and (min-width: 1024px) {
    .wrapper {
        padding-inline: 4rem;
    }
}
@media screen and (min-width: 1860px) {
    .wrapper {
        max-width: 100%;
        padding-inline: 0rem;
    }
}

.wpcf7 .wpcf7-response-output.display-none,
.wpcf7-form br {
    display: none;
}

@media screen and (min-width: 1440px) {
    .heading-title {
        font-size: 5rem;
    }
}
@media screen and (min-width: 1920px) {
    .primaryButton {
        padding: 2rem 3.25rem;
        font-size: 2rem;
    }
}

.form-link,
.main-content a {
    color: var(--wp--preset--color--pine);
}
/* Usado por .modal-reviews-overlay en blocks/google-reviews/google-reviews.css */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
    75% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}
.f-links-container .cookies-link,
.site-footer .developed {
    color: var(--wp--preset--color--cream);
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}
.site-footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--wp--preset--color--pine);
    padding: 1.6rem;
    margin-block-end: 5rem;
}
.footer-logo-social-cont {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-block: 2rem;
    border-block-end: 1px solid rgb(255, 255, 255, 0.1);
}
.site-footer.with-margin {
    margin-block-end: 6rem;
}
@media (min-width: 1204px) {
    .site-footer.with-margin {
        margin-block-end: 10rem;
    }
}
.logo-footer {
    font-size: 2.2rem;
    color: var(--wp--preset--color--cream);
    font-family: var(--wp--preset--font-family--heading);
    transition: 0.4s;
    font-weight: 900;
}
.footer-social-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.footer-social-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 253, 249, 0.08);
    border: 1px solid rgba(255, 253, 249, 0.24);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.footer-social-icon {
    color: var(--wp--preset--color--cream);
    font-size: 1.6rem;
    transition: color 0.2s ease;
}
.footer-container {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-block: 2rem;
    gap: 2rem;
}
.footer-container .copyright {
    display: none;
    color: var(--wp--preset--color--cream);
}
.footer-container .signature {
    color: var(--wp--preset--color--cream);
    font-size: 1.6rem;
    font-weight: 600;
}
.f-links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-block-start: 2.6rem;
}
.f-links-container .cookies-link {
    font-weight: 300;
}
@media (width>=416px) {
    .f-links-container {
        flex-direction: row;
    }
    .f-links-container .cookies-link:not(:first-child)::before {
        color: var(--wp--preset--color--cream);
        content: ".";
        position: relative;
        right: 5px;
        bottom: 4px;
    }
}
.site-footer .made-by {
    color: var(--wp--preset--color--cream);
    text-align: center;
    padding-block: 2rem;
}
@media (width>=1024px) {
    .footer-container .mobile {
        display: none;
    }
    .site-footer {
        padding-inline: var(--laiguana-block-padding-inline);
        padding-block-start: 4.8rem;
        margin-block-end: 0;
    }
    .site-footer.with-margin {
        margin-block-end: 0;
    }
    .footer-logo-social-cont {
        max-width: none;
        margin: 0;
        padding-block: 2.4rem;
        border-block-end-color: rgba(255, 253, 249, 0.16);
    }
    .logo-footer:hover {
        transform: rotate(-5deg);
    }
    .footer-social-container a:hover {
        background-color: var(--wp--preset--color--clay-deep);
        border-color: var(--wp--preset--color--clay-deep);
        transform: scale(1.06);
    }
    .footer-social-container a:hover .footer-social-icon {
        color: var(--wp--preset--color--white);
    }
    .footer-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-block: 2.4rem;
        gap: 2rem;
    }
    .footer-container .copyright {
        display: block;
        color: var(--wp--preset--color--cream);
        font-size: var(--wp--preset--font-size--small);
    }
    .f-links-container {
        flex-direction: row;
        margin-block-start: 0;
    }
    .f-links-container .cookies-link {
        font-size: var(--wp--preset--font-size--small);
    }
    .f-links-container .cookies-link:hover,
    .site-footer .developed:hover {
        color: var(--wp--preset--color--white);
        border-bottom-color: var(--wp--preset--color--white);
    }
    .site-footer .made-by {
        margin-block-start: 0.8rem;
        font-size: var(--wp--preset--font-size--small);
        opacity: 0.75;
    }
}
@keyframes animate {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
        filter: blur(0);
    }
}
::-webkit-scrollbar-thumb {
    background-color: var(--wp--preset--color--clay);
    border-radius: 0.5rem;
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--wp--preset--color--sky);
}
.scrollup {
    display: none;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    background-color: var(--wp--preset--color--clay-deep);
    border-radius: 50%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background-color 0.2s ease;
    box-shadow: 0 4px 16px rgba(43, 38, 32, 0.25);
}
.scrollup__icon {
    width: 1.8rem;
    height: auto;
}
@media screen and (min-width: 1024px) {
    .scrollup {
        display: flex;
    }
    .scrollup:hover {
        background-color: var(--wp--preset--color--clay);
    }
    .scrollup.show-scroll {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
.screen-reader-text:focus {
    background-color: #eee;
    clip: auto !important;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
.wpcf7-form {
    width: 100%;
    max-width: 500px;
    height: 100%;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.wpcf7-form input::placeholder {
    color: #9f9b9b;
}
.wpcf7-form .wpcf7-form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1.6rem;
    background-color: #fbf5f2;
    transition: 0.5s;
    outline: 0;
    color: var(--wp--preset--color--ink);
    font-family: var(--wp--preset--font-family--body);
}
.wpcf7-form .form-container {
    display: flex;
    gap: 1rem;
    align-items: baseline;
}
.wpcf7-form .wpcf7-form-control:focus {
    border: 1px solid var(--wp--preset--color--clay);
    background-color: var(--wp--preset--color--cream-card);
    color: var(--wp--preset--color--pine);
}
.wpcf7-form .wpcf7-submit {
    background-color: var(--wp--preset--color--clay);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    padding: 1.2rem 2rem;
    font-size: 1.6rem;
    transition: background-color 0.3s;
    margin-block: 2rem 0;
    width: 100%;
}
.wpcf7-form .wpcf7-submit:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}
.wpcf7-form .wpcf7-submit:hover {
    background-color: #751621;
    color: #fff;
}
.wpcf7-form .required {
    display: block;
    margin-block: 0.5rem;
    font-weight: 700;
    color: var(--wp--preset--color--ink);
    font-size: 1.6rem;
}
.wpcf7-form .required::after {
    content: "*";
    color: #ff0a00;
    margin-inline-start: 3px;
}
.wpcf7-form .required.not-required::after {
    content: unset;
    color: unset;
    margin-inline-start: unset;
}
.wpcf7-form input[type="number"]::-webkit-inner-spin-button,
.wpcf7-form input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 1.6rem;
    font-weight: 400;
    display: block;
    width: fit-content;
}
.ui-widget-header {
    background: var(--wp--preset--color--cream-card);
}
.wpcf7-form .legal-text {
    margin-block: 0.5rem 2rem;
}
.wpcf7-form .legal-text-input {
    position: relative;
    top: 0.8rem;
}
.wpcf7-form textarea {
    field-sizing: content;
    resize: none;
    max-height: 100px;
}
.wpcf7-form .wpcf7-response-output {
    font-family: var(--wp--preset--font-family--body);
    background: #ffb900;
    color: var(--wp--preset--color--ink);
    text-align: center;
    margin: 0;
    border-radius: 0.5rem;
    animation: 2s infinite pulse-blue;
    border: #ffb900;
}
@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 185, 0, 0.7);
    }
    80% {
        box-shadow: 0 0 0 10px rgb(86, 64, 4, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(38, 119, 240, 0);
    }
}
.wpcf7-form .wpcf7-not-valid-tip {
    background: #dc3232;
    color: var(--wp--preset--color--cream);
    padding: 1rem;
    display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
    background: #46b450;
    color: var(--wp--preset--color--cream);
    animation: unset;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
    margin-block-start: 2rem;
}
.form-link,
.main-content a {
    font-weight: 600;
}
.form-link:hover,
.main-content a:hover {
    text-decoration: underline;
}
.main-content {
    width: 100%;
    max-width: 1200px;
    padding-inline: 1.6rem;
    margin: 0 auto;
    margin-block: 0rem 4rem;
}
.main-content p,
.main-content ul li {
    margin-block: 1.6rem;
    color: var(--wp--preset--color--ink);
    font-size: 1.6rem;
}
.main-content h3 {
    color: var(--wp--preset--color--ink);
    font-size: 2rem;
}
@media (width>=1440px) {
    .main-content h3 {
        font-size: 2.4rem;
    }
}
.button.blog {
    color: var(--wp--preset--color--cream);
}
@media (width>=360px) {
    .button-container .primaryButton {
        font-size: 1.6rem;
    }
}

.blog-page-title {
    font-size: 2rem;
    text-align: center;
}
.blog-section-head {
    margin-block-end: 2rem;
    text-align: start;
}
.blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-block-end: 0.8rem;
    font-family: var(--wp--preset--font-family--mono);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--wp--preset--color--sky);
}
.blog-eyebrow::after {
    content: "";
    width: 28px;
    height: 1.5px;
    background: var(--wp--preset--color--sky);
}
.heading-title.blog {
    font-size: clamp(1.9rem, 3.4vw, 2.75rem);
    text-align: start;
    font-family: var(--wp--preset--font-family--heading);
    font-weight: 600;
    color: var(--wp--preset--color--ink);
    margin-block: 0;
}
.wrapper,
.wrapper-blog {
    width: 100%;
    padding-inline-start: 1.6rem;
    padding-inline-end: 1.6rem;
}
.section-bento.section-blog {
    padding-block-end: 40px;
    background-color: var(--wp--preset--color--cream);
}
.blog-list-page {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-block-start: 4rem;
    justify-content: center;
    align-items: start;
}
.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-block-start: 3rem;
}
.card-blog {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    background-color: var(--wp--preset--color--ink);
}
.card-blog__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 0;
    transition: transform 0.6s ease-out;
}
.card-blog:hover .card-blog__image {
    transform: scale(1.06);
}
.card-blog__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 16, 12, 0.85) 0%, rgba(20, 16, 12, 0.1) 60%);
    z-index: 1;
    pointer-events: none;
}
.button.blog,
.button.blog-page-btn {
    background-color: var(--wp--preset--color--clay);
}
.card-blog__body {
    position: relative;
    z-index: 2;
    text-align: start;
    padding: 1.75rem;
    color: var(--wp--preset--color--white);
}
.card-blog__title {
    font-family: var(--wp--preset--font-family--heading);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.8rem;
    color: var(--wp--preset--color--white);
}
.card-blog__excerpt {
    font-family: var(--wp--preset--font-family--body);
    font-size: 1.3rem;
    color: rgba(255, 253, 249, 0.82);
    font-weight: 400;
    max-width: 44ch;
    margin: 0 0 1rem;
}
.card-blog__link {
    display: inline-block;
    font-family: var(--wp--preset--font-family--body);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--wp--preset--color--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
    transition: border-color 0.2s ease, opacity 0.2s ease;
}
.card-blog__link:hover {
    border-color: rgba(255, 255, 255, 0.9);
    opacity: 0.9;
}
.button-container {
    display: flex;
    justify-content: center;
    margin-block-start: 2rem;
}
.price-header,
.prices-list {
    flex-direction: column;
    display: flex;
}
.button.blog {
    display: inline-block;
    flex: 0 0 auto;
    padding: 1.2rem 2rem;
    border-radius: var(--wp--custom--border-radius--full);
    font-weight: 700;
    transition: background-color 0.3s;
    border: 2px solid var(--wp--preset--color--clay);
    font-size: 1.6rem;
}
.button.blog:hover {
    background-color: var(--wp--preset--color--clay-deep);
    border-color: var(--wp--preset--color--clay-deep);
}
.blog-entry .single-blog-title {
    font-size: 32px;
    margin-block-end: 40px;
    color: var(--wp--preset--color--ink);
}
.blog-entry .wp-block-heading {
    font-size: 20px;
    color: var(--wp--preset--color--clay);
}
.blog-entry {
    width: 100%;
    padding-inline: 2rem;
    margin-block: 1rem 6rem;
    color: var(--wp--preset--color--ink);
}
.blog-entry .meta {
    color: var(--wp--preset--color--clay);
    font-weight: 500;
}
.blog-entry .blog-content p {
    margin-block: 2rem;
    color: var(--wp--preset--color--ink);
    text-align: justify;
    font-size: 1.6rem;
}
.featured-image-wrapper .featured-image {
    width: 100%;
    height: 320px;
    position: relative;
    border-radius: 2rem;
    margin-block-start: 2rem;
}
.featured-image-wrapper.position-absolute {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}
.featured-image-wrapper.position-absolute img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
@media (min-width: 1024px) {
    .wrapper,
    .wrapper-blog {
        padding-inline-start: 3.2rem;
        padding-inline-end: 3.2rem;
    }
    .wrapper,
    .wrapper-blog {
        max-width: 1200px;
        margin: 0 auto;
    }
    .blog-list-page {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        margin-block-start: 6rem;
        margin-block-end: 6rem;
        justify-content: space-between;
    }
    .blog-list-page {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-blog__title {
        font-size: 2.4rem;
    }
    .blog-entry {
        max-width: 1200px;
        margin: 0 auto;
        margin-block: 1rem 6rem;
    }
    .featured-image-wrapper .featured-image {
        width: 100%;
        height: 380px;
    }
    .blog-entry .single-blog-title {
        font-size: 50px;
        margin-block-end: 40px;
    }
    .blog-entry .wp-block-heading {
        font-size: 28px;
    }
    .blog-entry .blog-content p {
        text-align: justify;
        font-size: 1.8rem;
    }
}
.section.blog-page-section {
    margin: 0 auto;
    padding: 1.6rem;
    padding-block-end: 2rem;
    padding-inline: 0;
}
.button.blog-page-btn {
    width: fit-content;
    margin: 0 auto;
    margin-block-start: 2rem;
    animation: unset;
    border-color: var(--wp--preset--color--clay);
    color: var(--wp--preset--color--cream);
}
.blog-page-title {
    color: var(--wp--preset--color--ink);
}
.price-amount,
.vat-info {
    color: var(--wp--preset--color--pine);
    font-weight: 700;
}
.blog-page-section .blog-page-text {
    color: var(--wp--preset--color--ink);
    font-size: 1.6rem;
    text-align: center;
}
.prices-card {
    background-color: var(--wp--preset--color--cream-card);
    border-radius: 2rem;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-block-start: 2rem;
}
.vat-info {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-align: right;
    border-bottom: 2px solid var(--wp--preset--color--cream);
    padding-bottom: 1rem;
}
.prices-list {
    gap: 2rem;
}
.price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--wp--preset--color--sky);
}
.price-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.price-header {
    align-items: flex-start;
    min-width: 90px;
}
.price-amount {
    font-family: var(--wp--preset--font-family--heading);
    font-size: 2.8rem;
    line-height: 1;
}
.price-suffix {
    font-size: 1.2rem;
    color: var(--wp--preset--color--ink);
    opacity: 0.7;
    margin-top: 0.2rem;
}
.price-desc {
    display: flex;
    flex-direction: column;
    text-align: right;
}
.main-desc {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--wp--preset--color--ink);
}
.sub-desc {
    font-size: 1.3rem;
    color: #666;
    font-style: italic;
    margin-top: 0.2rem;
}
.price-item.highlight .main-desc {
    color: var(--wp--preset--color--clay);
    font-weight: 700;
}
@media (max-width: 400px) {
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .price-desc,
    .vat-info {
        text-align: left;
    }
}
@media (min-width: 768px) {
    .button {
        display: inline-block;
        flex: 0 0 auto;
    }
    .prices-card {
        padding: 4rem;
    }
    .price-amount {
        font-size: 3.2rem;
    }
    .main-desc {
        font-size: 1.8rem;
    }
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }


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

/*** Background Texture ***/
.texture-grain {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  opacity: 1;
  pointer-events: none;
  z-index: -1;
  image-rendering: pixelated;
  background-image: url('../images/noise.webp');
  background-size: 100px;
  background-position: center center;
  transform: translateY(0) rotate(0.0001deg);
  mix-blend-mode: hard-light;
}
