:root {
    --cream: #fdfbf7;
    --warm-white: #f8f5f0;
    --sand: #e8e2d9;
    --bark: #2d2519;
    --bark-light: #4a3d2e;
    --forest: #1e6b3a;
    --forest-light: #2d8a4e;
    --moss: #5fb563;
    --moss-light: #8ed891;
    --gold: #d4a017;
    --gold-light: #f0c33c;
    --sky: #e8f4ea;
    --text: #1a1510;
    --text-muted: #5a4d3d;
    --radius: 16px;
    --radius-lg: 28px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 12px rgba(30, 107, 58, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 500;
    line-height: 1.15;
    color: var(--bark);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; letter-spacing: 0.01em; }

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--forest); outline-offset: 2px; border-radius: 4px; }
button:focus-visible { outline: 2px solid var(--forest); outline-offset: 2px; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

::selection {
    background-color: var(--forest);
    color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: rgba(45, 37, 25, 0.25);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(45, 37, 25, 0.4);
}

* {
    scrollbar-color: rgba(45, 37, 25, 0.25) var(--cream);
    scrollbar-width: thin;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), visibility 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.nav-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.nav {
    position: fixed;
    top: 0.75rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0.75rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-logo img {
    height: 2.75rem;
    display: block;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.875rem;
    border-radius: 100px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    display: none;
    padding: 0.5rem 1.25rem;
    background: var(--forest);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--forest-light);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
    transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    border-radius: 2px;
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 767px) {
    .nav {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav.open {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100dvh;
        height: 100vh;
        max-width: none;
        border-radius: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        background: rgba(0, 0, 0, 0.98);
        border: none;
        transform: none;
    }

    .nav.open .nav-logo {
        position: absolute;
        top: 1.25rem;
        left: 1.25rem;
    }

    .nav.open .nav-logo img {
        height: 2.75rem;
    }

    .nav.open .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        animation: fadeInUp 0.4s ease forwards;
    }

    .nav.open .nav-links a {
        font-size: 1.125rem;
        padding: 0.875rem 1.5rem;
        color: rgba(255, 255, 255, 0.9);
        opacity: 0;
        animation: fadeInUp 0.3s ease forwards;
    }

    .nav.open .nav-links a:nth-child(1) { animation-delay: 0.1s; }
    .nav.open .nav-links a:nth-child(2) { animation-delay: 0.15s; }
    .nav.open .nav-links a:nth-child(3) { animation-delay: 0.2s; }
    .nav.open .nav-links a:nth-child(4) { animation-delay: 0.25s; }
    .nav.open .nav-links a:nth-child(5) { animation-delay: 0.3s; }

    .nav.open .nav-links a:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
    }

    .nav.open .nav-cta {
        display: block;
        margin-top: 1.5rem;
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
        opacity: 0;
        animation: fadeInUp 0.3s ease forwards;
        animation-delay: 0.35s;
    }

    .nav.open .menu-toggle {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        background: rgba(255, 255, 255, 0.1);
    }

    .nav.open .menu-toggle span {
        background: #fff;
    }

    .hero-trust {
        display: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 1.5rem 4rem;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(30, 107, 58, 0.5) 0%,
        rgba(44, 36, 22, 0.75) 50%,
        rgba(44, 36, 22, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(30, 107, 58, 0.2);
    backdrop-filter: blur(10px);
    border: 0.5px solid rgba(95, 181, 99, 0.3);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--moss-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px var(--moss);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--moss); }
    50% { opacity: 0.7; transform: scale(1.15); box-shadow: 0 0 12px var(--moss); }
}

.hero h1 {
    color: var(--cream);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.0625rem;
    color: rgba(253, 251, 247, 0.88);
    margin-bottom: 1.5rem;
    max-width: 500px;
    letter-spacing: 0.2px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    color: rgba(253, 251, 247, 0.9);
    font-size: 0.8125rem;
    font-weight: 500;
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    transition: background 0.2s ease, transform 0.2s ease;
    min-height: 44px;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.trust-item svg {
    width: 1.125rem;
    height: 1.125rem;
    stroke: var(--moss-light);
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(253, 251, 247, 0.5);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.scroll-hint svg {
    width: 1.5rem;
    height: 1.5rem;
    animation: bounce 1.6s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
    min-height: 44px;
}

.btn:focus-visible {
    outline: 2px solid var(--forest);
    outline-offset: 2px;
}

.btn svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(30, 107, 58, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--forest-light) 0%, var(--moss) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 107, 58, 0.2);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--forest);
    border: 2px solid var(--forest);
}

.btn-outline:hover {
    background: var(--forest);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--bark);
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--forest);
    margin-bottom: 0.75rem;
}

.section-tag.light {
    color: var(--moss);
}

.about {
    padding: 5rem 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    gap: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.about-grid.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 0.5px solid rgba(255, 255, 255, 0.5);
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
    pointer-events: none;
    z-index: 2;
}

.image-frame img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.image-frame:hover img {
    transform: scale(1.03);
}

.image-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 70%;
    height: 70%;
    background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
    opacity: 0.15;
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    background: var(--warm-white);
    border-radius: 100px;
    border: 1px solid var(--sand);
}

.stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--forest);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1.125rem;
    color: var(--bark);
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.1px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.about-values {
    margin-top: 2rem;
    display: grid;
    gap: 1.25rem;
}

.value {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--warm-white);
    border-radius: var(--radius);
    border: 0.5px solid rgba(212, 162, 121, 0.4);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.value:hover {
    border-color: var(--forest);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(30, 107, 58, 0.15);
}

.value-icon svg {
    width: 1rem;
    height: 1rem;
    stroke: #fff;
}

.value-content {
    flex: 1;
    min-width: 0;
}

.value strong {
    display: block;
    color: var(--bark);
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
}

.value span {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.services {
    padding: 5rem 0;
    background: var(--warm-white);
}

.services-header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 3rem;
}

.services-header h2 {
    margin-bottom: 0.75rem;
}

.services-header p {
    color: var(--text-muted);
    font-size: 1.0625rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.services-grid-large {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-card {
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--sand);
    transition: all 0.2s ease;
}

.service-card:hover {
    border-color: var(--forest);
    box-shadow: var(--shadow);
}

.service-card-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.service-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: #fff;
}

.service-card h4 {
    color: var(--bark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.service-price {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--sky);
    color: var(--forest);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
}

.services-info {
    text-align: center;
    padding: 1rem 1.5rem;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--sand);
    margin-bottom: 2rem;
}

.services-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.services-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.services-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 107, 58, 0.95) 0%, rgba(30, 107, 58, 0.7) 50%, transparent 100%);
}

.services-banner-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 400px;
}

.rut-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--gold);
    color: var(--bark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.services-banner-content h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.services-banner-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.forest {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.forest-bg {
    position: absolute;
    inset: 0;
}

.forest-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.forest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(44, 36, 22, 0.92) 0%,
        rgba(42, 90, 59, 0.85) 100%);
}

.forest-content {
    position: relative;
    z-index: 1;
}

.forest-header {
    max-width: 600px;
    margin-bottom: 3rem;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    margin-top: 1.5rem;
}

.cert-badge svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--moss-light);
}

.cert-badge span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
}

.forest-header h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.forest-header p {
    color: rgba(255, 255, 255, 0.8);
}

.forest-services {
    display: grid;
    gap: 1.5rem;
}

.forest-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), background 0.2s ease;
    opacity: 0;
    transform: translateY(12px);
}

.forest-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.forest-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.forest-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--moss) 0%, var(--moss-light) 100%);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(95, 181, 99, 0.2);
}

.forest-card-icon svg {
    width: 1.125rem;
    height: 1.125rem;
    stroke: var(--bark);
}

.forest-card h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.forest-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    letter-spacing: 0.1px;
}

.forest-price {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(142, 216, 145, 0.2);
    color: var(--moss-light);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    transition: background 0.2s ease, transform 0.2s ease;
}

a.forest-price:hover {
    background: rgba(142, 216, 145, 0.35);
    transform: translateY(-1px);
}

.property {
    padding: 5rem 0;
    background: var(--cream);
}

.property-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.property-header p {
    color: var(--text-muted);
    margin-top: 1rem;
}

.property-grid {
    display: grid;
    gap: 1.5rem;
}

.property-card {
    position: relative;
    padding: 1.5rem;
    padding-top: 2.5rem;
    background: #fff;
    border-radius: var(--radius);
    border: 0.5px solid rgba(212, 162, 121, 0.4);
    transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.2s ease;
    opacity: 0;
    transform: translateY(12px);
}

.property-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.property-card:hover {
    border-color: var(--forest);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.property-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sky);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.property-card:hover .property-icon {
    background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
    box-shadow: 0 2px 8px rgba(30, 107, 58, 0.15);
}

.property-icon svg {
    width: 1.125rem;
    height: 1.125rem;
    stroke: var(--forest);
    transition: stroke 0.3s ease;
}

.property-card:hover .property-icon svg {
    stroke: #fff;
}

.property-card h4 {
    color: var(--bark);
    margin-bottom: 0.5rem;
}

.property-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.property-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.625rem;
    background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(30, 107, 58, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.property-card:hover .property-badge {
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(30, 107, 58, 0.35);
}

.testimonials {
    padding: 5rem 0;
    background: var(--sky);
    overflow: visible;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
    overflow: visible;
}

.testimonial-card {
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 0.5px solid rgba(212, 162, 121, 0.35);
    transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0;
    transform: translateY(16px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.testimonial-card:nth-child(3) { transition-delay: 0.2s; }

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--forest) 0%, var(--bark) 100%);
    border-color: transparent;
}

.testimonial-card.featured .testimonial-text,
.testimonial-card.featured .testimonial-author strong {
    color: #fff;
}

.testimonial-card.featured .testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-card.featured .author-avatar {
    background: var(--moss);
    color: var(--bark);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.testimonial-stars svg {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--gold);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--bark);
    margin-bottom: 1.25rem;
    font-style: italic;
    letter-spacing: -0.1px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
    color: var(--bark);
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
}

.testimonial-author span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .testimonials-grid {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-card.featured.visible {
        transform: scale(1.02);
    }

    .testimonial-card.featured:hover {
        transform: scale(1.02) translateY(-4px);
    }
}

.gallery {
    padding: 5rem 0;
    background: var(--warm-white);
}

.gallery-header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 3rem;
}

.gallery-header h2 {
    margin-bottom: 0.75rem;
}

.gallery-header p {
    color: var(--text-muted);
    font-size: 1.0625rem;
}

.gallery-grid {
    display: grid;
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s ease;
    box-shadow: var(--shadow);
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
    filter: brightness(1.02);
}

.gallery-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 16px rgba(30, 107, 58, 0.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
}

.cta-section {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(30, 107, 58, 0.75) 0%, rgba(44, 36, 22, 0.8) 100%);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.contact {
    padding: 5rem 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--warm-white);
    border-radius: var(--radius);
    border: 0.5px solid rgba(212, 162, 121, 0.4);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    min-height: 56px;
}

.contact-card:hover {
    border-color: var(--forest);
    box-shadow: var(--shadow);
}

.contact-card-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 1rem;
    height: 1rem;
    stroke: #fff;
}

.contact-card strong {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bark);
    margin-bottom: 0.25rem;
    opacity: 0.7;
}

.contact-card span {
    font-weight: 500;
    color: var(--bark);
}

.contact-form {
    padding: 2rem;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 0.5px solid rgba(212, 162, 121, 0.4);
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 4px;
    background: linear-gradient(90deg, var(--forest), var(--moss), var(--gold));
    border-radius: 0 0 4px 4px;
}

.contact-form h3 {
    margin-bottom: 0.75rem;
    color: var(--bark);
}

.response-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--sky);
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.response-badge svg {
    width: 1rem;
    height: 1rem;
    stroke: var(--forest);
}

.response-badge span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--forest);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--bark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    background: var(--warm-white);
    border: 2px solid var(--sand);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--forest);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(30, 107, 58, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b5d4d' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    gap: 1.25rem;
}

.form-note {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

#contact-form .g-recaptcha {
    transform-origin: left center;
    max-width: 100%;
}

@media (max-width: 400px) {
    #contact-form .g-recaptcha {
        transform: scale(0.85);
    }
}

@media (max-width: 340px) {
    #contact-form .g-recaptcha {
        transform: scale(0.75);
    }
}

.sticky-phone {
    display: none;
}

@media (max-width: 767px) {
    .sticky-phone {
        display: flex;
        position: fixed;
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3.5rem;
        height: 3.5rem;
        background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(30, 107, 58, 0.4);
        z-index: 900;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .sticky-phone:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 24px rgba(30, 107, 58, 0.5);
    }

    .sticky-phone svg {
        width: 1.5rem;
        height: 1.5rem;
        stroke: #fff;
    }
}

.footer {
    background: var(--bark);
    color: var(--cream);
    padding: 4rem 0 2rem;
}

.footer-main {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    height: 3.75rem;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    font-size: 1rem;
    color: rgba(253, 251, 247, 0.75);
    margin-bottom: 1.5rem;
    max-width: 320px;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: rgba(253, 251, 247, 0.9);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--moss-light);
}

.footer-contact svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--moss);
    flex-shrink: 0;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cream);
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    font-size: 1rem;
    color: rgba(253, 251, 247, 0.75);
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--moss-light);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(95, 181, 99, 0.12);
    border: 1px solid rgba(95, 181, 99, 0.2);
    border-radius: 100px;
}

.footer-badges .badge svg {
    width: 1rem;
    height: 1rem;
    stroke: var(--moss-light);
    flex-shrink: 0;
}

.footer-badges .badge span {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(253, 251, 247, 0.85);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(253, 251, 247, 0.5);
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.75rem;
    }

    .nav-backdrop {
        display: none;
    }

    .nav {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: auto;
        max-width: 700px;
        padding: 0.5rem 0.75rem;
        gap: 0.25rem;
    }

    .nav-logo img {
        height: 2.5rem;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 0;
        margin-left: 0.5rem;
    }

    .nav-links a {
        font-size: 0.8125rem;
        padding: 0.5rem 0.75rem;
    }

    .nav-cta {
        display: block;
        margin-left: 0.5rem;
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    .menu-toggle {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 2rem;
        align-items: center;
    }

    .service-showcase {
        grid-template-columns: 1fr 1.2fr;
        gap: 2rem;
        align-items: start;
    }

    .showcase-image {
        position: sticky;
        top: 5rem;
    }

    .showcase-image img {
        aspect-ratio: 3/2;
    }

    .forest-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .property-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .forest-card,
    .property-card {
        padding: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 2rem;
        align-items: start;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }

    .services-grid-large {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 3rem;
    }

    .footer-nav {
        grid-template-columns: 1fr 1fr;
    }

    .footer-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2.5rem;
    }

    .about-grid {
        gap: 3rem;
    }

    .service-showcase {
        gap: 3rem;
    }

    .showcase-image img {
        aspect-ratio: 16/10;
    }

    .forest-card,
    .property-card {
        padding: 1.75rem;
    }

    .services-grid-large {
        grid-template-columns: repeat(5, 1fr);
    }

    .forest-services {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }

    .property-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }

    .gallery-grid {
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .gallery-item.large {
        grid-column: 1;
        grid-row: span 2;
    }

    .gallery-item.large img {
        aspect-ratio: 1;
        height: 100%;
    }

    .gallery-item:nth-child(4) {
        grid-column: 2 / 4;
    }
}

.service-item:nth-child(2) { transition-delay: 0.1s; }
.service-item:nth-child(3) { transition-delay: 0.2s; }
.service-item:nth-child(4) { transition-delay: 0.3s; }

.forest-card:nth-child(2) { transition-delay: 0.1s; }
.forest-card:nth-child(3) { transition-delay: 0.2s; }
.forest-card:nth-child(4) { transition-delay: 0.3s; }

.property-card:nth-child(2) { transition-delay: 0.05s; }
.property-card:nth-child(3) { transition-delay: 0.1s; }
.property-card:nth-child(4) { transition-delay: 0.15s; }
.property-card:nth-child(5) { transition-delay: 0.2s; }
.property-card:nth-child(6) { transition-delay: 0.25s; }

.gallery-item:nth-child(2) { transition-delay: 0.1s; }
.gallery-item:nth-child(3) { transition-delay: 0.2s; }

@media (max-width: 767px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 5rem 1.25rem 3rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        min-height: 48px;
    }

    .hero-trust {
        display: none;
    }

    .about,
    .services-intro,
    .property,
    .testimonials,
    .gallery,
    .contact {
        padding: 3rem 0;
    }

    .forest,
    .cta-section {
        padding: 3.5rem 0;
    }

    .about-grid {
        gap: 2rem;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .stat {
        padding: 0.5rem 0.75rem;
    }

    .stat-number {
        font-size: 1.125rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .service-showcase {
        gap: 1.5rem;
    }

    .showcase-image img {
        aspect-ratio: 4/3;
    }

    .service-item {
        padding: 1.25rem;
        gap: 1rem;
    }

    .service-icon {
        width: 2.25rem;
        height: 2.25rem;
    }

    .service-icon svg {
        width: 1rem;
        height: 1rem;
    }

    .forest-card {
        padding: 1.25rem;
    }

    .property-card {
        padding: 1.25rem;
        padding-top: 2.25rem;
    }

    .forest-card-icon,
    .property-icon {
        width: 2.25rem;
        height: 2.25rem;
        margin-bottom: 0.75rem;
    }

    .forest-card-icon svg,
    .property-icon svg {
        width: 1rem;
        height: 1rem;
    }

    .testimonials,
    .testimonials-grid,
    .testimonial-card,
    .about,
    .about-grid,
    .services,
    .services-grid,
    .forest,
    .forest-services,
    .forest-card,
    .property,
    .property-grid,
    .property-card,
    .gallery,
    .gallery-grid,
    .contact,
    .contact-grid {
        overflow: visible;
        -webkit-overflow-scrolling: touch;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .gallery-caption {
        padding: 1rem;
        font-size: 0.875rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.25rem;
    }

    .services-banner {
        min-height: 320px;
    }

    .services-banner::after {
        background: linear-gradient(0deg, rgba(30, 107, 58, 0.95) 0%, rgba(30, 107, 58, 0.8) 60%, transparent 100%);
    }

    .services-banner-content {
        padding: 1.5rem;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
        padding: 0.875rem 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-main {
        gap: 2rem;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-box {
        padding: 1.5rem;
        gap: 1rem;
    }

    section,
    section > div,
    section > div > div,
    section > div > div > div {
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .contact-grid > div,
    .grid > div {
        min-width: 0;
        max-width: 100%;
    }

    .about-grid,
    .forest-card,
    .property-card,
    .testimonial-card,
    .gallery-item {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    .hero {
        padding: 3.5rem 1rem 2rem;
    }

    .hero h1 {
        font-size: 1.875rem;
    }

    .hero p {
        font-size: 0.9375rem;
        line-height: 1.7;
    }

    .hero-badge {
        font-size: 0.6875rem;
        padding: 0.5rem 0.875rem;
    }

    .about,
    .services-intro,
    .property,
    .testimonials,
    .gallery,
    .contact {
        padding: 2.5rem 0;
    }

    .menu-toggle {
        width: 2.75rem;
        height: 2.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.125rem;
    }

    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .service-info {
        width: 100%;
        min-width: 0;
    }

    .service-icon {
        width: 2rem;
        height: 2rem;
    }

    .value {
        padding: 1rem;
        gap: 0.875rem;
    }

    .value-content {
        min-width: 0;
        word-break: break-word;
    }

    .value strong {
        font-size: 0.875rem;
    }

    .value span {
        font-size: 0.75rem;
    }

    .value-icon {
        width: 2rem;
        height: 2rem;
    }

    .value-icon svg {
        width: 0.875rem;
        height: 0.875rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .image-frame img {
        aspect-ratio: 1;
    }
}
