:root {
    --bg: #111111;
    --surface: #1b1b1b;
    --surface-alt: #262626;
    --border: #3e434a;
    --primary: #c6a46c;
    --primary-deep: #a8844f;
    --primary-soft: #e7d7b7;
    --text: #f3eee7;
    --text-muted: #d2ccc3;
    --text-soft: #8d877f;
    --whatsapp: #25d366;
    --success: #2f6b45;
    --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.28);
    --shadow-hero: 0 24px 60px rgba(0, 0, 0, 0.35);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-pill: 20px;
    --container: 1200px;
    --gutter: 20px;
    --section-space: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(
            circle at top left,
            rgba(198, 164, 108, 0.14),
            transparent 42%
        ),
        linear-gradient(180deg, #111111 0%, #151515 100%);
    color: var(--text);
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

body.cookie-modal-open {
    overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--primary-soft);
    outline-offset: 4px;
}

button,
input,
textarea,
select {
    font: inherit;
}

:where([hidden]) {
    display: none !important;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 1000;
    padding: 12px 16px;
    background: var(--primary);
    color: #111111;
    border-radius: var(--radius-pill);
}

.skip-link:focus {
    top: 16px;
}

.container {
    width: min(100% - (var(--gutter) * 2), var(--container));
    margin: 0 auto;
}

.section {
    padding: var(--section-space) 0;
}

.section-tight {
    padding-top: 12px;
}

.section-accent {
    background:
        radial-gradient(
            circle at top left,
            rgba(198, 164, 108, 0.12),
            transparent 44%
        ),
        rgba(27, 27, 27, 0.72);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--primary-soft);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-soft), transparent);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    line-height: 0.98;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
    max-width: 12ch;
}

h1 span,
h2 span {
    color: var(--primary);
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
}

h3 {
    font-size: clamp(1.45rem, 2vw, 1.8rem);
}

p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition:
        transform 240ms ease,
        border-color 240ms ease,
        background-color 240ms ease,
        color 240ms ease;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--primary) 100%);
    color: #111111;
    border-color: rgba(198, 164, 108, 0.34);
    box-shadow: 0 14px 28px rgba(198, 164, 108, 0.18);
}

.button-secondary {
    border-color: rgba(198, 164, 108, 0.42);
    background: rgba(255, 255, 255, 0.02);
    color: var(--primary-soft);
    box-shadow: none;
}

.location-copy {
    position: relative;
    z-index: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    background: rgba(17, 17, 17, 0.3);
    border-bottom: 1px solid transparent;
    transition:
        background-color 240ms ease,
        border-color 240ms ease,
        box-shadow 240ms ease;
}

.site-header.is-scrolled {
    background: rgba(17, 17, 17, 0.92);
    border-color: rgba(62, 67, 74, 0.65);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 86px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(198, 164, 108, 0.28);
}

.brand span {
    display: grid;
    gap: 4px;
}

.brand strong {
    font-size: 1rem;
}

.brand small {
    color: var(--text-soft);
    font-size: 0.82rem;
}

.site-nav {
    display: inline-flex;
    align-items: center;
    gap: 24px;
}

.site-nav a {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--primary-soft);
}

.header-mobile-actions {
    display: none;
    align-items: center;
    gap: 12px;
}

.whatsapp-mobile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--primary) 100%);
    border: 1px solid rgba(198, 164, 108, 0.32);
    transition: background-color 200ms ease;
}

.whatsapp-mobile-icon:hover {
    background: linear-gradient(135deg, #f0ddb7 0%, #cfa15d 100%);
}

.whatsapp-mobile-icon svg {
    fill: #111111;
}

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    min-width: 46px;
    padding: 0 14px;
    border: 1px solid rgba(198, 164, 108, 0.4);
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--primary-soft);
    line-height: 1;
}

.menu-toggle-lines {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle-lines span {
    display: block;
    width: 16px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
}

.hero {
    padding-top: 32px;
}

.hero-grid {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 40px;
    align-items: center;
    min-height: calc(100vh - 118px);
    padding: clamp(24px, 4vw, 44px);
    overflow: hidden;
    border: 1px solid rgba(198, 164, 108, 0.18);
    border-radius: 32px;
    background-color: #151515;
    box-shadow: var(--shadow-hero);
}

.hero-grid::before,
.hero-grid::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid::before {
    background:
        radial-gradient(
            circle at top right,
            rgba(198, 164, 108, 0.16),
            transparent 34%
        ),
        linear-gradient(135deg, rgba(24, 24, 24, 0.98), rgba(17, 17, 17, 1));
}

.hero-grid::after {
    background:
        linear-gradient(
            96deg,
            rgba(9, 9, 9, 0.62) 0%,
            rgba(9, 9, 9, 0.44) 34%,
            rgba(9, 9, 9, 0.16) 62%,
            rgba(9, 9, 9, 0.26) 100%
        ),
        linear-gradient(
            180deg,
            rgba(12, 12, 12, 0.04) 0%,
            rgba(12, 12, 12, 0.2) 100%
        );
}

.hero-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 24px;
    max-width: 42rem;
}

.hero-text {
    max-width: 56ch;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.microcopy,
.section-note {
    color: #b9b2a8;
    font-size: 0.92rem;
}

.section-note {
    margin-top: 32px;
}

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

.stat-card,
.feature-card,
.service-card,
.combo-card,
.plan-card,
.testimonial-card,
.faq-item,
.info-chip,
.final-cta-card,
.location-copy,
.map-card {
    background: linear-gradient(
        180deg,
        rgba(27, 27, 27, 0.98),
        rgba(20, 20, 20, 0.96)
    );
    border: 1px solid rgba(62, 67, 74, 0.75);
    box-shadow: var(--shadow-card);
}

.stat-card {
    padding: 18px;
    border-radius: var(--radius-md);
}

.stat-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--primary-soft);
    font-size: 1.15rem;
}

.stat-card span {
    color: #c2bbb2;
    font-size: 0.92rem;
    line-height: 1.5;
}

.hero-media {
    position: relative;
    z-index: 1;
}

.hero-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(198, 164, 108, 0.24);
    box-shadow: var(--shadow-hero);
}

.hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(17, 17, 17, 0.06) 0%,
        rgba(17, 17, 17, 0.16) 100%
    );
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.feature-grid,
.combo-grid,
.testimonial-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.combo-card,
.testimonial-card {
    padding: 24px;
    border-radius: var(--radius-md);
    transition:
        transform 240ms ease,
        border-color 240ms ease,
        box-shadow 240ms ease;
}

.feature-card:hover,
.combo-card:hover,
.testimonial-card:hover,
.service-card:hover,
.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(198, 164, 108, 0.5);
}

.feature-card h2 {
    margin-bottom: 14px;
    font-size: 1.55rem;
}

.positioning-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 28px;
    align-items: start;
}

.positioning-grid p {
    margin-top: 18px;
}

.info-stack {
    display: grid;
    gap: 16px;
}

.info-chip {
    padding: 18px 20px;
    border-radius: 18px;
}

.info-chip strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-soft);
}

.section-heading {
    display: grid;
    gap: 14px;
    max-width: 760px;
    margin-bottom: 32px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition:
        transform 240ms ease,
        border-color 240ms ease;
}

.service-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.service-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 10px;
    padding: 14px 16px;
}

.service-card-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.service-card-header strong,
.combo-price,
.plan-price {
    color: var(--primary);
    font-size: clamp(1.3rem, 1.8vw, 1.6rem);
    font-weight: 800;
    line-height: 1;
}

.service-card-body p {
    font-size: 0.92rem;
    line-height: 1.45;
}

.service-card-body a {
    font-size: 0.92rem;
}

.service-card a,
.plan-card a {
    color: var(--primary-soft);
    font-weight: 700;
}

.service-card a {
    margin-top: auto;
}

.section-cta {
    margin-top: 26px;
}

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

.combo-card h3,
.plan-card h3 {
    margin: 10px 0 12px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.plan-card {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 28px;
    border-radius: 24px;
    transition:
        transform 240ms ease,
        border-color 240ms ease;
}

.plan-card-featured {
    transform: scale(1.03);
    padding-top: 78px;
    border-color: rgba(198, 164, 108, 0.6);
    background:
        radial-gradient(
            circle at top left,
            rgba(198, 164, 108, 0.16),
            transparent 45%
        ),
        linear-gradient(180deg, rgba(36, 32, 26, 0.98), rgba(20, 20, 20, 0.96));
}

.plan-label {
    color: #c2bbb2;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ribbon {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--primary-soft), var(--primary));
    color: #111111;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    max-width: calc(100% - 36px);
    text-align: center;
}

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

.testimonial-card p {
    margin-bottom: 18px;
    color: var(--text);
    font-size: 1.08rem;
}

.testimonial-card cite {
    color: #cbc4ba;
    font-style: normal;
}

.faq-layout {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 22px 24px;
    color: var(--text);
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    padding: 0 24px 22px;
}

.final-cta-card {
    display: grid;
    gap: 24px;
    padding: 36px;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at top left,
            rgba(198, 164, 108, 0.16),
            transparent 45%
        ),
        linear-gradient(180deg, rgba(27, 27, 27, 0.98), rgba(14, 14, 14, 0.98));
}

.final-cta-card h2 {
    margin-bottom: 16px;
}

.contact-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-chips span {
    padding: 12px 16px;
    border: 1px solid rgba(198, 164, 108, 0.28);
    border-radius: var(--radius-pill);
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
}

.final-cta-button {
    width: fit-content;
}

.location-section {
    padding-top: 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
}

.location-copy {
    display: grid;
    gap: 18px;
    padding: 32px;
    border-radius: 28px;
}

.location-copy p {
    max-width: 58ch;
}

.location-details {
    display: grid;
    gap: 14px;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.map-card {
    display: grid;
    gap: 18px;
    padding: 20px;
    border-radius: 28px;
    overflow: hidden;
}

.map-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.map-card-header strong {
    display: block;
    margin-top: 6px;
    color: var(--text);
    font-size: 1.1rem;
}

.map-card-header a {
    align-self: center;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.map-cta-card {
    display: grid;
    gap: 14px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(198, 164, 108, 0.24);
    background:
        radial-gradient(
            circle at top left,
            rgba(198, 164, 108, 0.14),
            transparent 42%
        ),
        rgba(255, 255, 255, 0.02);
}

.map-cta-eyebrow {
    color: var(--primary-soft);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.map-cta-card h3 {
    font-size: clamp(1.7rem, 3vw, 2.1rem);
}

.map-cta-card .button {
    width: fit-content;
}

.map-note {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.site-footer {
    padding: 0 0 36px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 12px;
    border-top: 1px solid rgba(62, 67, 74, 0.75);
}

.footer-inner strong {
    display: block;
    margin-bottom: 8px;
}

.footer-inner a {
    display: block;
    color: var(--text-muted);
}

.footer-inner a + a {
    margin-top: 0;
}

.footer-icons {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.footer-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    transition:
        background-color 240ms ease,
        color 240ms ease;
}

.footer-icons a:hover {
  background: var(--primary);
  color: #111111;
}

.footer-copyright {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(62, 67, 74, 0.4);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-copyright a {
    display: inline;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-top: 18px;
}

.footer-links a,
.footer-link-button {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--primary-soft);
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-link-button:hover,
.footer-link-button:focus-visible {
    color: var(--primary);
    text-decoration: underline;
}

.privacy-section .section-heading {
    margin-bottom: 28px;
}

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

.privacy-card {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(27, 27, 27, 0.98), rgba(20, 20, 20, 0.96));
    border: 1px solid rgba(62, 67, 74, 0.75);
    box-shadow: var(--shadow-card);
}

.privacy-card h3 {
    margin-bottom: 12px;
}

.privacy-card p {
    margin-top: 0;
}

.privacy-card ul {
    margin: 0;
    padding-left: 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

.privacy-card li + li {
    margin-top: 8px;
}

.privacy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 14px 28px calc(14px + env(safe-area-inset-bottom));
    border-radius: 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(198, 164, 108, 0.18),
            transparent 28%
        ),
        linear-gradient(180deg, rgba(31, 28, 24, 0.98) 0%, rgba(20, 18, 16, 0.99) 100%);
    border-top: 1px solid rgba(198, 164, 108, 0.22);
    box-shadow: 0 -16px 40px rgba(0, 0, 0, 0.3);
}

.cookie-banner-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.cookie-banner-copy p {
    max-width: 72ch;
    color: #d6cdbf;
    line-height: 1.35;
}

.cookie-banner-copy p strong {
    color: #f4ede2;
    font-size: 1rem;
}

.cookie-banner-copy a {
    color: var(--primary-soft);
    text-decoration: underline;
    font-weight: 700;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-banner-actions .button {
    min-height: 48px;
    padding: 0 22px;
    border-width: 1px;
}

.cookie-banner .button-primary {
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--primary) 100%);
    color: #111111;
    border-color: rgba(198, 164, 108, 0.28);
    box-shadow: 0 12px 24px rgba(198, 164, 108, 0.16);
}

.cookie-banner .button-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--primary-soft);
    border-color: rgba(198, 164, 108, 0.3);
    box-shadow: none;
}

.cookie-banner .button-secondary:hover,
.cookie-banner .button-secondary:focus-visible {
    background: rgba(198, 164, 108, 0.12);
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: grid;
    place-items: center;
    padding: 20px;
}

.cookie-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 11, 0.58);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.cookie-modal-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 800px);
    max-height: calc(100vh - 40px);
    overflow: auto;
    padding: 28px 28px 30px;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at top left,
            rgba(198, 164, 108, 0.14),
            transparent 30%
        ),
        linear-gradient(180deg, #f6efe4 0%, #f0e4d4 100%);
    border: 1px solid rgba(198, 164, 108, 0.28);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 26px;
    padding-right: 108px;
}

.cookie-modal-header p {
    max-width: 56ch;
    color: #6f6a5f;
    font-size: 1.05rem;
    line-height: 1.5;
}

.cookie-modal-header .eyebrow {
    color: #c19c63;
    margin-bottom: 12px;
}

.cookie-modal-header .eyebrow::before {
    display: none;
}

.cookie-modal-header h2 {
    color: #163a2a;
    font-size: clamp(3rem, 6vw, 4.4rem);
    line-height: 0.92;
}

.cookie-modal-header .button-secondary {
    position: absolute;
    top: 28px;
    right: 28px;
    min-height: 48px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.68);
    color: #173c2b;
    border-color: rgba(198, 164, 108, 0.24);
    box-shadow: none;
}

.cookie-settings {
    display: grid;
    gap: 14px;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 16px;
    border-radius: 22px;
    border: 1px solid rgba(198, 164, 108, 0.18);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
    cursor: pointer;
}

.cookie-option-static {
    cursor: default;
}

.cookie-option-copy {
    display: grid;
    gap: 2px;
    max-width: 58ch;
}

.cookie-option strong {
    display: block;
    margin-bottom: 4px;
    color: #173c2b;
    font-size: 1.05rem;
}

.cookie-option-copy,
.cookie-option-copy span,
.cookie-option > span {
    color: #6f6a5f;
    line-height: 1.55;
}

.cookie-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    background: rgba(198, 164, 108, 0.18);
    color: #173c2b;
    font-size: 0.92rem;
    font-weight: 800;
}

.cookie-switch {
    position: relative;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.cookie-switch input {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.cookie-switch-track {
    position: relative;
    display: block;
    width: 48px;
    height: 28px;
    border-radius: 999px;
    background: #d8ddd7;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
    transition: background-color 240ms ease;
}

.cookie-switch-track::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
    transition: transform 240ms ease;
}

.cookie-switch input:checked + .cookie-switch-track {
    background: #1d4c33;
}

.cookie-switch input:checked + .cookie-switch-track::after {
    transform: translateX(20px);
}

.cookie-switch input:focus-visible + .cookie-switch-track {
    outline: 3px solid rgba(198, 164, 108, 0.5);
    outline-offset: 3px;
}

.cookie-smallprint {
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.cookie-modal-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 24px;
}

.cookie-modal-actions .button-primary {
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--primary) 100%);
    color: #111111;
    box-shadow: 0 14px 28px rgba(198, 164, 108, 0.16);
}

.cookie-modal-actions .button-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #173c2b;
    border-color: rgba(198, 164, 108, 0.28);
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 22px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #2fd974 0%, var(--whatsapp) 100%);
    color: #111111;
    font-weight: 800;
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 420ms ease,
        transform 420ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1023px) {
    :root {
        --gutter: 20px;
    }

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

    .header-mobile-actions {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: start;
        padding: 18px;
        border: 1px solid rgba(62, 67, 74, 0.85);
        border-radius: 20px;
        background: rgba(17, 17, 17, 0.97);
        box-shadow: var(--shadow-card);
    }

    .site-nav.is-open {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .hero-grid,
    .positioning-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

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

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

    .hero {
        padding-top: 20px;
    }

    .hero-grid {
        min-height: auto;
        gap: 28px;
        padding: 24px;
    }

    .hero-image-wrap {
        max-width: 440px;
        margin: 0 auto;
    }

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

    .plan-card-featured {
        transform: none;
    }
}

@media (max-width: 767px) {
    :root {
        --section-space: 64px;
    }

    .header-inner {
        min-height: 78px;
    }

    .brand small {
        display: none;
    }

    .location-copy,
    .map-card {
        padding: 20px;
    }

    .location-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-image-wrap {
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-grid {
        gap: 20px;
        padding: 18px;
        border-radius: 24px;
    }

    .hero-grid::after {
        background:
            linear-gradient(
                180deg,
                rgba(9, 9, 9, 0.22) 0%,
                rgba(9, 9, 9, 0.14) 38%,
                rgba(9, 9, 9, 0.28) 100%
            );
    }

    .hero-actions,
    .hero-badges,
    .feature-grid,
    .services-grid,
    .combo-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .button,
    .final-cta-button {
        width: 100%;
    }

    .service-card-header {
        flex-direction: column;
    }

    .map-card-header {
        flex-direction: column;
    }

    .final-cta-card,
    .feature-card,
    .combo-card,
    .testimonial-card,
    .plan-card,
    .service-card-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .service-card {
        border-radius: 18px;
    }

    .service-card-body {
        gap: 8px;
        padding: 12px 14px;
    }

    .service-card img {
        aspect-ratio: 16 / 7;
    }

    .service-card-body p {
        font-size: 0.88rem;
        line-height: 1.35;
    }

    .service-card-body a {
        font-size: 0.86rem;
    }

    .service-card-header strong {
        font-size: 1.12rem;
    }

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

    .footer-links {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner {
        grid-template-columns: 1fr;
        padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
    }

    .cookie-banner-actions,
    .privacy-actions,
    .cookie-modal-actions {
        align-items: stretch;
    }

    .privacy-actions .button,
    .cookie-modal-actions .button,
    .footer-links a,
    .footer-link-button {
        width: 100%;
    }

    .cookie-banner-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .cookie-banner-actions .button {
        width: 100%;
        min-width: 0;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 0.88rem;
    }

    .cookie-banner-actions .button:last-child {
        grid-column: 1 / -1;
    }

    .map-cta-card .button {
        width: 100%;
    }

    .cookie-modal {
        padding: 16px;
    }

    .cookie-modal-panel {
        padding: 18px 14px 16px;
        max-height: calc(100vh - 32px);
        border-radius: 24px;
    }

    .cookie-modal-header h2 {
        font-size: clamp(2rem, 10vw, 2.7rem);
        line-height: 0.95;
        max-width: 7ch;
    }

    .cookie-option {
        align-items: flex-start;
        padding: 14px 12px;
        gap: 12px;
    }

    .cookie-badge {
        min-height: 34px;
        padding: 0 10px;
        font-size: 0.82rem;
    }

    .cookie-modal-header .button-secondary {
        top: 12px;
        right: 12px;
        min-height: 38px;
        padding: 0 12px;
        font-size: 0.88rem;
        width: auto;
        display: inline-flex;
        z-index: 3;
    }

    .cookie-modal-header {
        gap: 10px;
        margin-bottom: 18px;
        padding-top: 34px;
        padding-right: 0;
    }

    .cookie-modal-header .eyebrow {
        margin-bottom: 8px;
        font-size: 0.68rem;
        letter-spacing: 0.12em;
    }

    .cookie-modal-header p {
        font-size: 0.94rem;
        line-height: 1.4;
        max-width: none;
    }

    .cookie-option-copy {
        gap: 4px;
        max-width: none;
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .cookie-option strong {
        margin-bottom: 2px;
        font-size: 0.98rem;
    }

    .cookie-switch {
        width: 44px;
        height: 32px;
        margin-top: 2px;
    }

    .cookie-switch-track {
        width: 44px;
        height: 26px;
    }

    .cookie-switch-track::after {
        top: 3px;
        left: 3px;
        width: 20px;
        height: 20px;
    }

    .cookie-switch input:checked + .cookie-switch-track::after {
        transform: translateX(18px);
    }

    .cookie-settings {
        gap: 10px;
    }

    .cookie-modal-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 16px;
    }

    .cookie-modal-actions .button {
        width: 100%;
        min-height: 46px;
        font-size: 0.9rem;
    }

    .plan-card-featured {
        padding-top: 92px;
    }

    .ribbon {
        top: 14px;
        right: 14px;
        left: 14px;
        max-width: none;
    }

    .floating-whatsapp {
        left: 18px;
        right: 18px;
        bottom: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
