:root {
    --primary: #111E30;
    --primary-light: #E5B450;
    --primary-deep: #111E30;
    --primary-soft: rgba(17, 30, 48, 0.22);

    --bg-color: #FFFFFF;
    --surface-color: #F5F5F5;
    --surface-dark: #E8E8E8;

    --text-color: #111111;
    --text-muted: rgba(17, 17, 17, 0.62);

    --accent-warm: #E5B450;
    --accent-secondary: #E5B450;

    --line-color: rgba(17, 17, 17, 0.18);
    --font-display: 'Elms Sans', sans-serif;
    --font-body: 'Mona Sans', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

::-webkit-scrollbar {
    width: 0;
    height: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.4;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.custom-scrollbar {
    position: fixed;
    top: 0.45rem;
    right: 0;
    width: 14px;
    height: calc(100dvh - 0.9rem);
    z-index: 3000;
    pointer-events: auto;
    cursor: pointer;
    touch-action: none;
}

.custom-scrollbar-thumb {
    position: absolute;
    top: 0;
    right: 0.35rem;
    width: 4px;
    min-height: 34px;
    border-radius: 999px;
    background: var(--primary);
    opacity: 0.92;
    transform: translateY(0);
    transition: opacity 0.2s ease;
    cursor: grab;
}

.custom-scrollbar.is-idle .custom-scrollbar-thumb {
    opacity: 0.62;
}

.custom-scrollbar.is-dragging .custom-scrollbar-thumb {
    cursor: grabbing;
    opacity: 1;
}

html.sidebar-scroll-lock .custom-scrollbar {
    display: none;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.08;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="n"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23n)" opacity="0.07"/%3E%3C/svg%3E');
}

.brand-orb {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--accent-warm), transparent 65%);
    filter: blur(120px);
    opacity: 0;
    top: -10vw;
    right: -10vw;
    z-index: -1;
    animation: pulse 16s alternate infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.12) translate(-4vw, 4vw);
    }
}

h1,
h2,
h3,
.display-text {
    font-family: var(--font-display);
    font-weight: 200;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0;
}

section h2.display-text {
    font-weight: 300;
}

.about-heading,
.process-heading,
.areas-heading,
.features-heading,
.reviews-heading,
.visit-heading,
.faq-heading,
.cta-title,
.hero h1,
.indica-heading {
    text-transform: none;
    line-height: 0.82;
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    letter-spacing: 0;
}

/* NAV */
nav {
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    color: var(--text-color);
    transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
    border-bottom: 1px solid transparent;
    animation: navIntro 1s var(--ease-out-expo) 0.1s both;
}

@keyframes navIntro {
    from {
        opacity: 0;
        transform: translateY(-14px);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--line-color);
    padding: 0.7rem 5%;
}

.nav-links-desktop {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links-desktop a {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 300;
    text-decoration: none;
    opacity: 0.85;
    transition: color 0.3s ease, opacity 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    text-transform: none;
    letter-spacing: 0;
}

nav:not(.scrolled) .nav-links-desktop a {
    color: #FFFFFF;
}

nav.scrolled .nav-links-desktop a {
    color: var(--text-color);
}

.nav-links-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--accent-warm);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-links-desktop a:hover {
    opacity: 1;
    color: var(--accent-warm);
}

.nav-links-desktop a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
    padding: 0;
}

.hamburger-btn .bar {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

nav.scrolled .hamburger-btn .bar {
    background-color: var(--text-color);
}

nav:not(.scrolled) .hamburger-btn .bar {
    background-color: #FFFFFF;
}

.mobile-sidebar {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-sidebar.is-open {
    opacity: 1;
    pointer-events: auto;
}

.close-sidebar-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--text-color);
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 2002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.close-sidebar-btn:hover {
    color: var(--accent-warm);
    transform: rotate(90deg);
}

.sidebar-content {
    width: 100%;
    height: 100%;
    padding: 1.2rem 0 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.sidebar-logo-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    box-sizing: border-box;
    margin-bottom: auto;
}

.sidebar-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: brightness(0);
    transition: transform 0.3s ease;
}

.sidebar-logo-img:hover {
    transform: scale(1.02);
}

.header-logo-img {
    height: 68px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.header-logo-img:hover {
    transform: scale(1.02);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: auto;
    margin-bottom: auto;
    width: 100%;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.sidebar-links a {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.sidebar-links a:hover {
    color: var(--accent-warm);
    transform: translateY(-2px);
}

.sidebar-footer {
    width: 100%;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-divider {
    width: 100%;
    border: none;
    height: 1px;
    background-color: var(--line-color);
    margin-bottom: 2rem;
    opacity: 0.6;
}

.sidebar-cta {
    width: calc(100% - 3rem);
    max-width: 340px;
    min-width: 280px;
    font-size: 1.05rem;
    padding: 1.1rem 2.2rem;
    justify-content: center;
}

@media (max-width: 1023px) {
    .nav-links-desktop {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    nav .unified-cta {
        display: none;
    }

    .header-logo-img {
        height: 52px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.brand-wordmark {
    display: inline-flex;
    flex-direction: column;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 0.86;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.brand-wordmark small {
    color: var(--accent-warm);
    font-size: 0.53em;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-top: 0.38rem;
}

nav:not(.scrolled) .brand-wordmark {
    color: #fff;
}

nav:not(.scrolled) .header-logo-img {
    filter: brightness(0) invert(1);
}

nav.scrolled .header-logo-img {
    filter: brightness(0);
}

.logo:hover .header-logo-img {
    opacity: 0.82;
}

.nav-cta {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 300;
    text-decoration: none;
    color: #fff;
    border: none;
    padding: 0.78rem 1.4rem;
    border-radius: 50px;
    text-transform: none;
    background: var(--primary-deep);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-expo);
    isolation: isolate;
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
    letter-spacing: 0;
}

.nav-cta span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-warm);
    transform: translateY(101%);
    transition: transform 0.5s var(--ease-out-expo);
    z-index: -1;
}

.nav-cta:hover {
    color: var(--primary-deep);
    transform: translateY(-3px);
}

.nav-cta:hover::before {
    transform: translateY(0);
}

/* HERO */
.hero {
    height: 100vh;
    min-height: 560px;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 21rem 5% 4.5rem;
    position: relative;
    overflow: hidden;
    background: var(--primary-deep) url('./desktop.jpeg') center/cover no-repeat;
    z-index: 1;
}

@media (max-width: 767px) {
    .hero {
        height: auto;
        min-height: 100vh;
        max-height: none;
        padding-top: 22rem;
        background-image: url('./desktop.jpeg');
    }
    .hero h1 {
        font-size: clamp(2.4rem, 7.5vw, 3.2rem) !important;
    }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 72%, rgba(17, 30, 48, 0.22), transparent 32vw),
        linear-gradient(115deg, rgba(255, 255, 255, 0.03), transparent 42%);
    mix-blend-mode: screen;
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(45deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.74) 42%, rgba(0, 0, 0, 0.28) 74%, rgba(0, 0, 0, 0.05) 100%),
        radial-gradient(circle at 0% 100%, rgba(0, 0, 0, 0.42), transparent 52%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.06) 45%, rgba(0, 0, 0, 0.46) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero>* {
    position: relative;
    z-index: 2;
}

.hero .brand-orb {
    position: absolute;
}

.hero-orb {
    position: absolute;
    width: 64vw;
    height: 64vw;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 65%, #111E30, transparent 62%);
    filter: blur(110px);
    opacity: 0.25;
    bottom: -16vw;
    left: -14vw;
    z-index: 1;
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.26);
    margin-bottom: 1.8rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    opacity: 0;
    transform: translateY(20px);
    filter: blur(8px);
    animation: heroFade 1.1s var(--ease-out-expo) 0.05s forwards;
}

.hero-eyebrow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 45%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    pointer-events: none;
    animation: shine 6s infinite ease-in-out;
}

.hero h1 {
    margin-left: 0;
    color: #fff;
    position: relative;
    max-width: 1400px;
    text-align: left;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: clamp(2.9rem, 5vw, 4.6rem);
    }
}

.hero h1 .word {
    display: block;
    opacity: 0;
    transform: translateY(60%);
    filter: blur(12px);
    animation: heroWord 1.1s var(--ease-out-expo) forwards;
}

.hero h1 .word:nth-child(1) {
    animation-delay: 0.15s;
}

.hero h1 .word:nth-child(2) {
    animation-delay: 0.30s;
}

.hero h1 .word:nth-child(3) {
    animation-delay: 0.45s;
}

@keyframes heroWord {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes heroFade {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 2.3rem;
    max-width: 560px;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.2;
    letter-spacing: 0;
}

.hero-cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(18px);
    animation: heroFade 1.1s var(--ease-out-expo) 0.55s forwards;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.2rem;
    left: 5%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.44);
    opacity: 0;
    animation: heroFade 1.1s var(--ease-out-expo) 0.7s forwards;
}

.scroll-line {
    width: 48px;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.55), transparent);
    transform-origin: left center;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%,
    100% {
        transform: scaleX(1);
        opacity: 0.55;
    }

    50% {
        transform: scaleX(0.7);
        opacity: 0.25;
    }
}

/* MARQUEE */
.marquee-wrapper {
    overflow: hidden;
    background: var(--primary-deep);
    padding: 1.1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee {
    display: flex;
    gap: 2.5rem;
    white-space: nowrap;
    animation: marqueeScroll 26s linear infinite;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

.marquee .dot {
    color: var(--accent-warm);
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* SECTION LABELS */
.section-label {
    display: inline-block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-secondary);
    font-weight: 600;
    margin-bottom: 1.4rem;
}

/* ABOUT */
.about-section {
    padding: 9rem 5%;
}

.about-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "text" "photo" "stats";
    gap: 2.5rem;
}

.about-text-block {
    grid-area: text;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.about-heading {
    color: var(--primary-deep);
    max-width: 620px;
}

.about-body {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 1.5rem;
    max-width: 620px;
}

.about-right-col {
    grid-area: photo;
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1792 / 2400;
    justify-self: center;
    overflow: hidden;
    border-radius: 4px;
}

.about-image {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-stats {
    grid-area: stats;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: end;
    border-top: 1px solid var(--line-color);
    border-left: 1px solid var(--line-color);
}

.stat-item {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    padding: 2rem 1rem;
    border-right: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
    text-align: center;
    transition: background 0.3s ease;
}

.stat-item:hover { background: var(--surface-color); }

.stat-number {
    font-family: var(--font-display);
    font-weight: 200;
    font-size: clamp(1.4rem, 2vw, 1.875rem);
    color: var(--primary-deep);
    line-height: 1.15;
}

.stat-label {
    font-size: 0.65rem;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--text-muted);
}

@media (min-width: 1000px) {
    .about-layout {
        max-width: 1520px;
        grid-template-columns: minmax(0, 1fr) clamp(290px, 28vw, 480px);
        grid-template-areas: "text photo" "stats photo";
        column-gap: clamp(2rem, 3vw, 3rem);
        row-gap: 3rem;
    }

    .about-stats { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.3fr); }
    .about-stats .stat-item { padding: 2rem clamp(0.75rem, 1.2vw, 1.25rem); }
    .about-stats .stat-number { font-size: clamp(1.4rem, 2vw, 1.75rem); }
    .about-stats .stat-label { max-width: none; }

    .about-right-col {
        max-width: none;
        min-height: 510px;
        aspect-ratio: auto;
        align-self: stretch;
    }
}

@media (max-width: 767px) {
    .about-stats { grid-template-columns: 1fr; }
    .stat-item { padding: 2rem 1.5rem; }
    .stat-number { font-size: 28px; }
}

/* PROCESS */
.process-section {
    padding: 9rem 5%;
    background: var(--primary-deep);
    color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.process-orb {
    position: absolute;
    width: 58vw;
    height: 58vw;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 65%, var(--accent-warm), transparent 65%);
    filter: blur(120px);
    opacity: 0.08;
    bottom: -18vw;
    right: -14vw;
    pointer-events: none;
    animation: pulse 20s alternate infinite ease-in-out;
}

.process-section .section-label {
    color: var(--accent-warm);
}

.process-heading {
    color: var(--bg-color);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-step {
    padding: 3rem 2.5rem 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.9rem;
    row-gap: 1.35rem;
    align-items: center;
    position: relative;
}

@media (min-width: 768px) {
    .process-step {
        padding: 3.5rem 2.5rem 3.5rem 0;
        border-right: 1px solid rgba(255, 255, 255, 0.10);
        border-bottom: none;
    }

    .process-step:last-child {
        border-right: none;
        padding-right: 0;
    }

    .process-step:not(:first-child) {
        padding-left: 2.5rem;
    }
}

.step-number {
    grid-column: 1 / -1;
    font-family: var(--font-display);
    font-weight: 200;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.32);
}

.step-icon {
    grid-column: 1;
    font-size: 1.2rem;
    color: var(--accent-warm);
    line-height: 1;
}

.step-title {
    grid-column: 2;
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 1.15rem;
    color: var(--bg-color);
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.1;
}

.step-desc {
    grid-column: 1 / -1;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.15;
    letter-spacing: 0;
}

/* PRACTICE AREAS */
.areas-section {
    padding: 9rem 5%;
}

.areas-header {
    margin-bottom: 4rem;
}

.areas-heading {
    color: var(--primary-deep);
}

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

.area-item {
    min-width: 0;
    padding: clamp(1.5rem, 3vw, 2.75rem);
    border: 1px solid rgba(17, 30, 48, 0.16);
    border-radius: 2px;
    background: var(--bg-color);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 26px;
    align-content: start;
    column-gap: 1.5rem;
    row-gap: 1.25rem;
}

.area-icon {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    margin-top: 0.15rem;
    color: rgba(17, 30, 48, 0.55);
    font-size: 26px;
    line-height: 1;
}

.area-name {
    grid-column: 1;
    grid-row: 1;
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 22px;
    color: var(--primary-deep);
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.25;
}

.area-note {
    grid-column: 1 / -1;
    max-width: 54ch;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    letter-spacing: 0;
}

/* INDICACOES */
.indica-section {
    padding: 9rem 5%;
    background: #FFFFFF;
}

.indica-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 900px) {
    .indica-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.indica-heading {
    color: var(--primary-deep);
}

.indica-subtext {
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 340px;
    line-height: 1.15;
    letter-spacing: 0;
}

.indica-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--line-color);
    border-left: 1px solid var(--line-color);
}

@media (min-width: 600px) {
    .indica-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .indica-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.indica-item {
    padding: 2.4rem 2rem;
    border-right: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background 0.4s ease, transform 0.5s var(--ease-out-expo);
    background: var(--bg-color);
}

.indica-item:hover {
    background: var(--surface-dark);
    transform: translateY(-3px);
}

.indica-icon {
    font-size: 1.15rem;
    color: var(--accent-secondary);
}

.indica-name {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 1.15rem;
    color: var(--primary-deep);
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.1;
}

.indica-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.15;
    letter-spacing: 0;
}

/* REVIEWS */
.reviews-section {
    padding: 9rem 5%;
    background: var(--primary-deep);
    color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.reviews-orb {
    position: absolute;
    width: 58vw;
    height: 58vw;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 65%, var(--accent-warm), transparent 65%);
    filter: blur(120px);
    opacity: 0.07;
    top: -18vw;
    right: -14vw;
    pointer-events: none;
    animation: pulse 22s alternate infinite ease-in-out;
}

.reviews-section .section-label {
    color: var(--accent-warm);
}

.reviews-heading {
    color: var(--bg-color);
}

.reviews-rating-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.10);
    padding: 0.6rem 1.1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars i {
    color: var(--accent-warm);
    font-size: 0.8rem;
}

.rating-number {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bg-color);
}

.rating-count {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.52);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: background 0.4s ease, transform 0.5s var(--ease-out-expo), border-color 0.4s ease;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.22);
}

.review-quote-icon {
    font-size: 1.35rem;
    color: var(--accent-warm);
    opacity: 0.6;
}

.review-card-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.2;
    letter-spacing: 0;
    flex: 1;
}

.review-card-footer {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 1.3rem;
}

.review-card-author {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--bg-color);
}

.review-card-meta {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.42);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.review-card-stars {
    display: flex;
    gap: 3px;
    margin-top: 0.2rem;
}

.review-card-stars i {
    color: var(--accent-warm);
    font-size: 0.7rem;
}

.reviews-cta {
    text-align: center;
    margin-top: 4rem;
}

.reviews-cta .secondary-btn {
    background: var(--bg-color);
    color: var(--primary-deep);
    border-color: var(--bg-color);
    position: relative;
    animation: reviewBtnGlow 2.6s ease-in-out infinite;
    transition: all 0.4s var(--ease-out-expo);
}

.reviews-cta .secondary-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 54px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: reviewRingPulse 2.6s ease-out infinite;
}

.reviews-cta .secondary-btn:hover {
    background: transparent;
    color: var(--bg-color);
    border-color: var(--bg-color);
    transform: translateY(-3px);
    animation: none;
}

.reviews-cta .secondary-btn:hover::after {
    animation: none;
    opacity: 0;
}

@keyframes reviewBtnGlow {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.15);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

@keyframes reviewRingPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.12);
        opacity: 0;
    }
}

/* VISIT INFO */
.visit-section {
    padding: 9rem 5%;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 900px) {
    .visit-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 5rem;
        align-items: center;
    }
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.visit-heading {
    color: var(--primary-deep);
}

.visit-info p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.1;
    max-width: 500px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1.5rem;
    border-top: 1px solid var(--line-color);
}

.info-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line-color);
    transition: padding 0.4s ease;
}

.info-row:hover {
    padding-left: 0.4rem;
}

.info-row i {
    font-size: 0.95rem;
    color: var(--accent-secondary);
}

.info-row .info-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.25rem;
}

.info-row .info-value {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0;
}

.info-row a.info-value {
    transition: color 0.3s ease;
}

.info-row a.info-value:hover {
    color: var(--accent-secondary);
}

.map-card {
    position: relative;
    background: var(--surface-color);
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 8px;
    min-height: 430px;
    overflow: hidden;
    box-shadow: 0 26px 64px rgba(17, 17, 17, 0.10);
    isolation: isolate;
}

.map-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(17, 17, 17, 0.22));
    pointer-events: none;
    z-index: 2;
}

.real-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


.map-meta {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.4rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    background: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(8px);
}

.map-meta strong {
    font-size: 0.8rem;
    color: #fff;
    font-family: var(--font-display);
    letter-spacing: 0;
}

.map-meta span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.72);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--accent-warm);
    text-decoration: none;
    margin-top: 0.3rem;
    transition: gap 0.3s ease;
}

.map-link:hover {
    gap: 0.55rem;
}

/* FAQ */
.faq-section {
    padding: 9rem 5%;
    background: var(--surface-color);
}

.faq-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 900px) {
    .faq-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.faq-heading {
    color: var(--primary-deep);
}

.faq-subtext {
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 340px;
    line-height: 1.15;
    letter-spacing: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line-color);
}

.faq-item {
    border-bottom: 1px solid var(--line-color);
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    cursor: pointer;
}

.faq-question {
    background: none;
    border: none;
    padding: 1.8rem 3rem 1.8rem 0;
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 300;
    color: var(--primary-deep);
    letter-spacing: 0;
    text-align: left;
    cursor: pointer;
    line-height: 1.15;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-secondary);
}

.faq-icon {
    padding-top: 1.8rem;
    padding-right: 0.2rem;
    font-size: 1.05rem;
    color: var(--accent-secondary);
    transition: transform 0.4s var(--ease-out-expo);
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    grid-column: 1 / -1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo);
}

.faq-item.open .faq-answer {
    max-height: 600px;
}

.faq-answer-inner {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.2;
    padding-bottom: 1.8rem;
    max-width: 780px;
    letter-spacing: 0;
}

/* CTA SECTION */
.cta-section {
    padding: 9rem 5%;
    background: var(--primary-deep);
    color: var(--bg-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    width: 64vw;
    height: 64vw;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, var(--accent-warm), transparent 62%);
    filter: blur(130px);
    opacity: 0.09;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: pulse 18s alternate infinite ease-in-out;
}

.cta-label {
    display: inline-block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-warm);
    font-weight: 600;
    margin-bottom: 2rem;
}

.cta-title {
    color: var(--bg-color);
    max-width: 820px;
    margin: 0 auto;
}

.cta-subtext {
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    color: rgba(255, 255, 255, 0.66);
    margin-top: 2rem;
    line-height: 1.2;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0;
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

/* UNIFIED CTA */
.unified-cta {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 300;
    text-decoration: none;
    color: #fff;
    background: var(--primary-deep);
    padding: 0.35rem 1.4rem 0.35rem 0.35rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    line-height: 1;
    letter-spacing: 0;
    cursor: pointer;
    animation: ctaGlowPulse 3.6s ease-in-out infinite;
}

@keyframes ctaGlowPulse {
    0%, 100% {
        filter: brightness(1);
        box-shadow: inset 0 0 0 rgba(255, 255, 255, 0), 0 0 0 rgba(17, 30, 48, 0);
    }
    50% {
        filter: brightness(1.045);
        box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.12), 0 0 14px rgba(17, 30, 48, 0.18);
    }
}

.unified-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(17, 30, 48, 0.30);
    background: var(--accent-secondary);
    color: #fff;
    animation-play-state: paused;
}

.cta-section .unified-cta {
    background: var(--accent-warm);
}

.cta-section .unified-cta:hover {
    background: var(--primary-deep);
}

.cta-icon-circle {
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: var(--primary-deep);
    font-size: 1.05rem;
    font-weight: bold;
}

.cta-section .unified-cta .cta-icon-circle {
    color: var(--accent-secondary);
}

.cta-section .unified-cta:hover .cta-icon-circle {
    color: var(--primary-deep);
}

.cta-icon-circle i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0;
    animation: arrowNudge 5s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes arrowNudge {
    0%,
    90%,
    100% {
        transform: translate(0, 0);
    }

    92% {
        transform: translate(3px, -3px);
    }

    94% {
        transform: translate(0, 0);
    }

    96% {
        transform: translate(3px, -3px);
    }
}

.unified-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 45%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    pointer-events: none;
    animation: shine 8.5s infinite ease-in-out;
}

.sidebar-cta.unified-cta {
    padding: 0.6rem 1.4rem 0.6rem 0.6rem;
    font-size: 0.95rem;
    justify-content: flex-start;
}

.sidebar-cta.unified-cta .cta-icon-circle {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.sidebar-cta.unified-cta span {
    flex-grow: 1;
    text-align: center;
    white-space: nowrap;
    padding-right: 15px;
    font-size: 0.92rem;
}

/* BUTTONS */
.main-btn {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 300;
    text-decoration: none;
    color: #fff;
    background: var(--primary-deep);
    padding: 0.9rem 1.6rem;
    border-radius: 50px;
    border: 1px solid var(--primary-deep);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: transform 0.4s var(--ease-out-expo), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    line-height: 1;
    letter-spacing: 0;
}

.main-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-warm);
    transform: translateY(101%);
    transition: transform 0.5s var(--ease-out-expo);
    z-index: -1;
}

.main-btn:hover {
    color: var(--primary-deep);
    border-color: var(--accent-warm);
    transform: translateY(-3px);
}

.main-btn:hover::before {
    transform: translateY(0);
}

.cta-section .main-btn {
    background: var(--accent-warm);
    color: var(--primary-deep);
    border-color: var(--accent-warm);
}

.cta-section .main-btn::before {
    background: #ffffff;
}

.cta-section .main-btn:hover {
    color: var(--primary-deep);
    border-color: #ffffff;
}

@keyframes shine {
    0% {
        left: -120%;
    }

    15% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.main-btn::after,
.nav-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 45%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    pointer-events: none;
    animation: shine 4.5s infinite ease-in-out;
}

.secondary-btn {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 300;
    text-decoration: none;
    color: #fff;
    background: transparent;
    padding: 0.9rem 1.6rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: transform 0.4s var(--ease-out-expo), background 0.3s ease, border-color 0.3s ease;
    line-height: 1;
    letter-spacing: 0;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

/* FOOTER */
footer {
    background: var(--primary-deep);
    color: rgba(255, 255, 255, 0.9);
    padding: 5rem 5% 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1.6fr;
        gap: 4rem;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 300;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.5rem;
    margin-left: -0.6rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    line-height: 1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-socials a:hover { color: var(--accent-warm); }
.footer-socials a:focus-visible {
    outline: 1px solid var(--accent-warm);
    outline-offset: 2px;
}

.footer-logo {
    display: inline-flex;
    text-decoration: none;
}

.footer-logo-img {
    height: 76px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    opacity: 0.8;
}

.footer-tagline {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.2;
    max-width: 280px;
    letter-spacing: 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 600px) {
    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-col-title {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.44);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col-links a,
.footer-col-links button {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    opacity: 0.72;
    transition: opacity 0.3s ease, transform 0.3s var(--ease-out-expo), color 0.3s ease;
    letter-spacing: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    text-align: left;
}

.footer-col-links a:hover,
.footer-col-links button:hover {
    opacity: 1;
    transform: translateX(4px);
    color: var(--accent-warm);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        position: relative;
    }
}

.monfily-credit {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.44);
}

.monfily-credit a {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.monfily-credit a:hover {
    color: var(--accent-warm);
}

.footer-legal {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.44);
}

.footer-legal a,
.footer-legal button {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
    transition: color 0.3s ease;
}

.footer-legal a:hover,
.footer-legal button:hover {
    color: var(--accent-warm);
}

/* WHATSAPP FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 1.8rem;
    right: 1.8rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.20);
    z-index: 1000;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease, background 0.4s ease;
}

.whatsapp-fab::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid #25D366;
    opacity: 0.5;
    animation: ringPulse 2.4s ease-out infinite;
}

@keyframes ringPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-fab:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.26);
    background: #1ebe5a;
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
    transition: opacity 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo), filter 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal-stagger {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
    transition: opacity 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo), filter 0.6s ease;
}

.reveal-stagger.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* COOKIES + PRIVACY */
body.modal-open {
    overflow: hidden;
}

.cookie-banner[hidden],
.privacy-modal[hidden] {
    display: none;
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 1.4rem;
    transform: translateX(-50%);
    width: min(1120px, calc(100% - 2rem));
    z-index: 1200;
}

.cookie-shell {
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 1.4rem;
    align-items: start;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line-color);
    border-radius: 4px;
    padding: 1.35rem;
    box-shadow: 0 16px 44px rgba(17, 17, 17, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: panelLift 0.28s var(--ease-out-expo);
}

@keyframes panelLift {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cookie-copy {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cookie-kicker {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-secondary);
    font-weight: 700;
}

.cookie-copy h2 {
    font-family: var(--font-display);
    font-weight: 200;
    font-size: clamp(1.6rem, 3.4vw, 2.3rem);
    color: var(--primary-deep);
    letter-spacing: 0;
    text-transform: none;
    line-height: 0.92;
}

.cookie-copy p {
    font-size: 0.82rem;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--text-muted);
    max-width: 700px;
}

.cookie-privacy-link {
    width: fit-content;
    border: none;
    border-bottom: 1px solid var(--accent-secondary);
    background: transparent;
    padding: 0 0 0.2rem;
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-body);
}

.cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    min-width: 220px;
}

.cookie-action {
    border-radius: 50px;
    padding: 0.95rem 1.25rem;
    border: 1px solid var(--line-color);
    cursor: pointer;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    font-family: var(--font-body);
    transition: transform 0.25s var(--ease-out-expo), background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.cookie-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 17, 17, 0.08);
}

.cookie-action.primary {
    background: var(--primary-deep);
    color: var(--bg-color);
    border-color: var(--primary-deep);
}

.cookie-action.outline {
    background: transparent;
    color: var(--text-color);
    border-color: rgba(17, 30, 48, 0.46);
}

.cookie-action.subtle {
    background: var(--surface-color);
    color: var(--text-color);
    border-color: var(--line-color);
}

.cookie-preferences {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--line-color);
    border: 1px solid var(--line-color);
    margin-top: 0.4rem;
}

.cookie-preferences[hidden] {
    display: none;
}

.cookie-option {
    background: var(--bg-color);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.2rem;
    padding: 1.1rem;
    transition: background 0.24s ease;
}

.cookie-option:hover {
    background: var(--surface-color);
}

.cookie-option h3 {
    font-family: var(--font-display);
    text-transform: none;
    font-size: 0.92rem;
    font-weight: 300;
    letter-spacing: 0;
    margin-bottom: 0.35rem;
    color: var(--primary-deep);
}

.cookie-option p {
    font-size: 0.8rem;
    line-height: 1.15;
    letter-spacing: 0;
    color: var(--text-muted);
}

.cookie-fixed {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-secondary);
    font-weight: 700;
}

.toggle-wrap {
    display: flex;
    align-items: center;
}

.toggle {
    position: relative;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-track {
    position: absolute;
    inset: 0;
    background: rgba(17, 30, 48, 0.18);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.28s ease;
}

.toggle input:checked+.toggle-track {
    background: var(--primary-deep);
}

.toggle-thumb {
    position: absolute;
    left: 3px;
    top: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(17, 17, 17, 0.18);
    transition: transform 0.28s var(--ease-out-expo);
    pointer-events: none;
}

.toggle input:checked~.toggle-thumb {
    transform: translateX(20px);
}

.cookie-shell-wrap {
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 1.4rem;
    align-items: start;
}

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

    .cookie-shell-wrap {
        grid-template-columns: 1fr;
    }

    .cookie-actions {
        min-width: auto;
    }
}

/* PRIVACY MODAL */
.privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
}

.privacy-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.58);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.privacy-sheet {
    position: relative;
    z-index: 1;
    background: var(--bg-color);
    border-radius: 8px;
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(17, 17, 17, 0.24);
    border: 1px solid var(--line-color);
    display: flex;
    flex-direction: column;
}

.privacy-sheet-head {
    padding: 2rem 2rem 1.2rem;
    border-bottom: 1px solid var(--line-color);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    position: sticky;
    top: 0;
    background: var(--bg-color);
    z-index: 2;
}

.privacy-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-secondary);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.privacy-title {
    font-family: var(--font-display);
    font-weight: 200;
    font-size: clamp(1.3rem, 2.6vw, 1.8rem);
    color: var(--primary-deep);
    letter-spacing: 0;
    text-transform: none;
    line-height: 1;
}

.privacy-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line-color);
    background: var(--surface-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.privacy-close:hover {
    background: var(--primary-deep);
    color: #fff;
}

.privacy-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.privacy-section h3 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-deep);
    margin-bottom: 0.6rem;
    text-transform: none;
    letter-spacing: 0;
}

.privacy-section p,
.privacy-section li {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.3;
    letter-spacing: 0;
}

.privacy-section ul {
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.privacy-update {
    font-size: 0.7rem;
    color: var(--text-muted);
    padding-top: 1rem;
    border-top: 1px solid var(--line-color);
}

/* MOBILE RESPONSIVE EXTRAS */
@media (max-width: 767px) {
    nav {
        padding: 1.2rem 5%;
    }

    nav.scrolled {
        padding: 0.9rem 5%;
    }

    .nav-cta {
        font-size: 0.82rem;
        padding: 0.75rem 1rem;
    }

    .process-step {
        padding: 2.5rem 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .visit-section,
    .areas-section,
    .indica-section,
    .reviews-section,
    .about-section,
    .faq-section,
    .cta-section,
    .process-section {
        padding: 6rem 5%;
    }

    .faq-question {
        padding: 1.4rem 2.5rem 1.4rem 0;
    }

    .faq-icon {
        padding-top: 1.4rem;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: clamp(2.5rem, 9.5vw, 3.3rem);
    }
}

    
section h2.display-text,
.about-heading,
.process-heading,
.areas-heading,
.features-heading,
.reviews-heading,
.visit-heading,
.faq-heading,
.cta-title,
.indica-heading {
    font-family: 'Elms Sans', var(--font-display), sans-serif !important;
    font-weight: 300 !important;
}
.hero {
    background: var(--primary) !important;
}
.hero-picture {
    position: absolute !important;
    inset: 0;
    z-index: 0 !important;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}
.hero-picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
.hero::before,
.hero::after {
    z-index: 1 !important;
}
.hero > :not(.hero-picture) {
    z-index: 2 !important;
}
.process-section,
.reviews-section,
.cta-section,
footer {
    background: var(--primary) !important;
    color: #FFFFFF !important;
}
.process-heading,
.step-title,
.reviews-heading,
.rating-number,
.review-card-text,
.review-card-author,
.cta-title,
.cta-subtext,
.footer-tagline,
.footer-col-title,
.footer-col-links a,
.footer-col-links button,
.monfily-credit,
.monfily-credit a,
.footer-legal,
.footer-legal a,
.footer-legal button {
    color: #FFFFFF !important;
}
.step-number,
.step-desc,
.rating-count,
.review-card-meta {
    color: rgba(255, 255, 255, 0.66) !important;
}
.process-steps,
.process-step,
.review-card,
.review-card-footer,
.footer-bottom {
    border-color: rgba(255, 255, 255, 0.16) !important;
}
.process-orb,
.reviews-orb,
.cta-orb,
.brand-orb {
    background: radial-gradient(circle at 50% 50%, rgba(17, 30, 48, 0.5), transparent 64%) !important;
    opacity: 0.16 !important;
}
.nav-cta,
.unified-cta,
.main-btn,
.sidebar-cta.unified-cta {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #FFFFFF !important;
}
.nav-cta:hover,
.unified-cta:hover,
.main-btn:hover,
.sidebar-cta.unified-cta:hover,
.cta-section .unified-cta,
.cta-section .main-btn {
    background: var(--accent-warm) !important;
    border-color: var(--accent-warm) !important;
    color: #FFFFFF !important;
}
.cta-section .unified-cta:hover,
.cta-section .main-btn:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #FFFFFF !important;
}
.hero .secondary-btn,
.reviews-cta .secondary-btn,
.cta-section .secondary-btn {
    color: #FFFFFF !important;
    border-color: #FFFFFF !important;
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
}
.hero .secondary-btn:hover,
.reviews-cta .secondary-btn:hover,
.cta-section .secondary-btn:hover {
    background: #FFFFFF !important;
    border-color: #FFFFFF !important;
    color: #111E30 !important;
    box-shadow: none !important;
}
.reviews-grid {
    margin-top: clamp(2.6rem, 5vw, 4.5rem) !important;
}


/* Page-specific branding and responsive sizing. */
html { scroll-padding-top: 110px; }
.header-logo-img, .sidebar-logo-img, .footer-logo-img { display: block; object-fit: contain; flex-shrink: 0; }
.header-logo-img { width: 142px; height: 64px; }
nav:not(.scrolled) .header-logo-img { filter: brightness(0) invert(1); }
nav.scrolled .header-logo-img, .sidebar-logo-img, .footer-logo-img { filter: none !important; }
.sidebar-logo-img { width: 142px; height: 64px; }
.footer-logo-img { width: 180px; height: 81px; }
.logo:hover .header-logo-img { opacity: 1; }
.header-logo-img:hover, .sidebar-logo-img:hover { transform: none; }
nav { padding: 1.1rem 5%; }
nav.scrolled { background: #fff; padding: .8rem 5%; border-bottom: 1px solid rgba(17,30,48,.12); }
.nav-links-desktop { gap: 1.6rem; }
.hero { height: auto; min-height: 100vh; min-height: 100svh; max-height: none; padding: 12rem 5% 7rem; justify-content: flex-end; }
.hero::before, .hero-orb, .brand-orb, .process-orb, .reviews-orb, .cta-orb { display: none !important; }
.hero::after { background: linear-gradient(45deg, rgba(17,30,48,.94) 0%, rgba(17,30,48,.76) 42%, rgba(17,30,48,.28) 74%, rgba(17,30,48,.08) 100%), linear-gradient(180deg, rgba(17,30,48,.3), transparent 45%, rgba(17,30,48,.25)); }
.hero h1 { font-family: 'Elms Sans', sans-serif; font-size: 68px !important; font-weight: 300; line-height: 1.04; max-width: 1100px; letter-spacing: 0; }
.hero-eyebrow { border-color: rgba(255,255,255,.16); box-shadow: none; }
.hero-content { max-width: 530px; margin-top: 2rem; gap: 1.6rem; }
.hero-subtitle { font-size: 16px; line-height: 1.5; color: rgba(255,255,255,.8); }
.hero-cta-row { gap: 1rem; }
.hero-scroll-hint { font-size: 11px; letter-spacing: 0; }
.marquee { width: max-content; gap: 0; font-size: 12px; letter-spacing: 0; }
.marquee-group { display: flex; align-items: center; flex-shrink: 0; gap: 2.5rem; padding-right: 2.5rem; }
.about-heading, .areas-heading, .process-heading, .indica-heading, .reviews-heading, .visit-heading, .faq-heading, .cta-title { font-size: 48px !important; line-height: 1.15; letter-spacing: 0; }
.section-label, .cta-label, .step-number, .review-card-meta, .stat-label, .info-label, .footer-col-title { letter-spacing: 0; }
.section-label { color: var(--primary); }
.process-section .section-label, .reviews-section .section-label, .cta-label { color: var(--accent-secondary) !important; }
.about-body, .area-note, .areas-subtext, .step-desc, .indica-note, .indica-subtext, .review-card-text, .visit-info > p, .info-value, .faq-answer-inner, .faq-subtext, .cta-subtext, .footer-tagline { line-height: 1.6; }
.indica-icon { color: var(--accent-secondary); font-size: 30px; line-height: 1; }
.area-name, .indica-name { font-size: 22px; line-height: 1.25; }
.process-steps { grid-template-columns: repeat(4,minmax(0,1fr)); }
.process-step { display: grid; grid-template-columns: auto 1fr; align-content: start; padding: 2.5rem 1.5rem !important; background: transparent; column-gap: .75rem; row-gap: 1.25rem; }
.process-step:first-child { padding-left: 0 !important; }
.step-number { color: rgba(255,255,255,.5) !important; font-size: 12px; }
.step-icon { color: var(--accent-secondary); font-size: 24px; }
.step-title { font-size: 21px; line-height: 1.25; }
.step-desc { color: rgba(255,255,255,.82) !important; }
.indica-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.reviews-heading { max-width: 850px; }
.review-card { background: transparent; border: 1px solid rgba(255,255,255,.16); padding: 2rem; }
.review-card:hover { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.025); }
.review-card-text { font-size: 15px; }
.review-card-stars i, .review-quote-icon { color: var(--accent-secondary); }
.review-card-meta { color: rgba(255,255,255,.72) !important; }
.visit-cta { margin-top: 2rem; }
.info-value { overflow-wrap: anywhere; }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-right: 0; }
.faq-question .faq-icon { padding: 0; }
iframe.real-map { width: 100%; border: 0; }
.map-meta { background: var(--primary); }
.map-meta strong, .map-meta span { color: #fff; }
.map-meta a, .map-meta i { color: var(--accent-secondary); }
.unified-cta, .unified-cta:hover, .sidebar-cta.unified-cta {
    background: var(--primary) !important; color: #fff !important; border: 1px solid transparent !important;
    box-shadow: none !important; text-shadow: none !important; animation: none !important; transform: none; outline: none;
}
.hero .unified-cta, .hero .unified-cta:hover,
.cta-section .unified-cta, .cta-section .unified-cta:hover { background: var(--primary) !important; border: .5px solid rgba(229,180,80,.5) !important; color: #fff !important; }
.unified-cta:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
.cta-icon-circle, .cta-section .unified-cta .cta-icon-circle, .cta-section .unified-cta:hover .cta-icon-circle { background: var(--accent-secondary); color: var(--primary) !important; }
.cta-icon-circle i { animation: none; }
.hero .secondary-btn, .reviews-cta .secondary-btn, .cta-section .secondary-btn {
    border: 1px solid rgba(255,255,255,.28) !important; background: transparent !important; color: #fff !important;
    box-shadow: none !important; text-shadow: none !important;
}
.hero .secondary-btn:hover, .reviews-cta .secondary-btn:hover, .cta-section .secondary-btn:hover {
    background: rgba(255,255,255,.06) !important; border-color: rgba(255,255,255,.46) !important; color: #fff !important;
}
.reviews-cta .secondary-btn { animation: none; }
.reviews-cta .secondary-btn::after { display: none; }
.footer-col-title { color: var(--accent-secondary) !important; }
.footer-brand .footer-logo-img { filter: brightness(0) invert(1) !important; }
.footer-brand .footer-tagline { margin-top: 0; color: rgba(255,255,255,.65) !important; }
.whatsapp-fab, .whatsapp-fab::before { animation: none; }
@media (min-width:768px) and (max-width:1199px) {
    .hero h1 { font-size: 56px !important; }
    .areas-grid, .process-steps { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .process-step { border-bottom: 1px solid rgba(255,255,255,.16); }
    .process-step:nth-child(odd) { padding-left: 0 !important; }
    .process-step:nth-child(even) { border-right: 0; }
}
@media (max-width:767px) {
    html { scroll-padding-top: 85px; }
    nav, nav.scrolled { padding: .85rem 5%; }
    .header-logo-img { width: 108px; height: 49px; }
    .hero { height: auto; min-height: 100vh; min-height: 100svh; padding: 10rem 5% 5rem; justify-content: flex-end; }
    .hero h1 { font-size: 40px !important; line-height: 1.05; }
    .hero-eyebrow { font-size: 11px; margin-bottom: 1.5rem; }
    .hero-content { margin-top: 1.5rem; gap: 1.5rem; }
    .hero-subtitle { font-size: 16px; }
    .hero-cta-row { gap: .7rem; }
    .hero-cta-row > a { min-height: 48px; }
    .hero .secondary-btn { padding-right: 1.2rem; padding-left: 1.2rem; }
    .hero-scroll-hint { bottom: 1.8rem; }
    .about-heading, .areas-heading, .process-heading, .indica-heading, .reviews-heading, .visit-heading, .faq-heading, .cta-title { font-size: 34px !important; }
    .areas-grid, .process-steps, .indica-grid { grid-template-columns: 1fr; }
    .process-step { padding: 2rem 0 !important; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
    .review-card { padding: 1.6rem; }
    .nav-actions > .unified-cta { display: none; }
}
@media (max-width:767px) and (max-height:700px) {
    .hero { padding-top: 7rem; padding-bottom: 4.5rem; }
    .hero h1 { font-size: 36px !important; }
}
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-stagger, .hero .word, .hero-eyebrow, .hero-cta-row, .hero-scroll-hint { opacity: 1 !important; filter: none !important; transform: none !important; animation: none !important; transition: none !important; }
    .marquee, .scroll-line, .hero-eyebrow::after { animation: none; }
}

/* Link to the full professional profile. */
.about-profile-link { align-self: flex-start; margin-top: 1.75rem; }

