:root {
    --green: #1a5c42;
    --green-dark: #0a2e21;
    --green-light: #2d7a5a;
    --green-glow: rgba(45, 122, 90, 0.35);
    --gold: #c9a227;
    --gold-bright: #e8c547;
    --gold-dark: #8b6914;
    --gold-glow: rgba(201, 162, 39, 0.45);
    --cream: #fffdf8;
    --surface: rgba(255, 253, 248, 0.72);
    --glass: rgba(255, 255, 255, 0.55);
    --text: #1a1510;
    --text-muted: #5c4e3d;
    --radius: 20px;
    --radius-sm: 12px;
    --radius-lg: 28px;
    --shadow: 0 8px 32px rgba(15, 61, 44, 0.1);
    --shadow-lg: 0 24px 64px rgba(15, 61, 44, 0.16);
    --shadow-gold: 0 12px 40px rgba(201, 162, 39, 0.25);
    --header-h: 76px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    font-family: "Assistant", "Segoe UI", Tahoma, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
}

html, body { min-height: 100%; margin: 0; }

body.site {
    direction: rtl;
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    background: linear-gradient(180deg, #fff9ee 0%, #f5e6b8 40%, #fff0c8 100%);
}

.site-main {
    position: relative;
}

a { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-dark); }

.site-container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.visually-hidden {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
}

/* Typography */
.title-gold {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 45%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-eyebrow {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    margin-bottom: 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: rgba(26, 92, 66, 0.08);
    border: 1px solid rgba(26, 92, 66, 0.2);
}

.text-green { color: var(--green); font-weight: 700; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(255, 253, 248, 0.65);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid rgba(26, 92, 66, 0.1);
    transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}

.site-header.is-scrolled {
    background: rgba(255, 253, 248, 0.92);
    border-bottom-color: rgba(26, 92, 66, 0.18);
    box-shadow: 0 8px 32px rgba(15, 61, 44, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 1rem;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
    text-decoration: none;
}

.site-brand:hover { text-decoration: none; }

.site-brand__logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(26,92,66,0.2));
}

.site-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.site-brand__text strong {
    font-size: 1.05rem;
    font-weight: 800;
    background: linear-gradient(
        115deg,
        #7a5c10 0%,
        #b8860b 18%,
        #d4af37 42%,
        #f5e6b8 55%,
        #c9a227 72%,
        #8b6914 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 1px 3px rgba(139, 105, 20, 0.25));
}

.site-brand__text small {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.site-brand__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.85rem;
    background: linear-gradient(135deg, #d4af37, #8b6914);
    color: #fff;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    flex-wrap: wrap;
}

.site-nav__link {
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.25s var(--ease-out);
    position: relative;
}

.site-nav__link.is-active {
    color: var(--green-dark);
    background: rgba(26, 92, 66, 0.1);
}

.site-nav__link:hover {
    background: rgba(26,92,66,0.08);
    color: var(--green-dark);
    text-decoration: none;
}

.site-nav__link--cta {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: #fff !important;
    border: none;
    margin-right: 0.25rem;
}

.site-nav__link--cta:hover {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--green-glow);
}

.site-nav__link--cta-gold {
    background: linear-gradient(135deg, #ffe566 0%, #ffd700 48%, #d4af37 100%);
    color: var(--green-dark) !important;
    border: none;
    margin-right: 0.25rem;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(255, 215, 80, 0.38), 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.site-nav__link--cta-gold:hover {
    background: linear-gradient(135deg, #fff0a0 0%, #ffe566 50%, #e6c200 100%);
    color: var(--green-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(255, 215, 80, 0.48);
}

.site-nav-toggle {
    display: none;
    width: 44px; height: 44px;
    border: 2px solid rgba(26,92,66,0.25);
    border-radius: var(--radius-sm);
    background: var(--surface);
}

.site-nav-toggle__bar {
    display: block;
    width: 18px; height: 2px;
    margin: 4px auto;
    background: var(--green-dark);
}

.site-header--overlay {
    background: rgba(8, 28, 22, 0.15);
    backdrop-filter: blur(12px) saturate(1.3);
    -webkit-backdrop-filter: blur(12px) saturate(1.3);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.site-header--overlay .site-brand__text strong {
    background: linear-gradient(
        115deg,
        #f5e6b8 0%,
        #ffe566 22%,
        #d4af37 48%,
        #fff8e7 58%,
        #c9a227 78%,
        #e8c547 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.35));
}

.site-header--overlay .site-brand__text small {
    color: rgba(245, 230, 184, 0.82);
}

.site-header--overlay .site-nav__link {
    color: rgba(255, 255, 255, 0.88);
}

.site-header--overlay .site-nav__link:hover,
.site-header--overlay .site-nav__link.is-active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.site-header--overlay .site-nav__link--cta-gold {
    background: linear-gradient(135deg, #ffe566 0%, #ffd700 48%, #d4af37 100%);
    color: var(--green-dark) !important;
    border: none;
    backdrop-filter: none;
    box-shadow: 0 4px 24px rgba(255, 215, 80, 0.42), 0 1px 0 rgba(255, 255, 255, 0.4) inset;
}

.site-header--overlay .site-nav__link--cta-gold:hover {
    background: linear-gradient(135deg, #fff0a0 0%, #ffe566 50%, #e6c200 100%);
    color: var(--green-dark) !important;
    box-shadow: 0 8px 32px rgba(255, 215, 80, 0.52);
}

.site-header--overlay .site-nav-toggle {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.site-header--overlay .site-nav-toggle__bar {
    background: #fff;
}

.site-header--overlay.is-scrolled,
.site-header--overlay.is-past-hero {
    background: rgba(255, 253, 248, 0.92);
    border-bottom-color: rgba(26, 92, 66, 0.15);
}

.site-header--overlay.is-scrolled .site-brand__text strong,
.site-header--overlay.is-past-hero .site-brand__text strong {
    background: linear-gradient(
        115deg,
        #7a5c10 0%,
        #b8860b 18%,
        #d4af37 42%,
        #f5e6b8 55%,
        #c9a227 72%,
        #8b6914 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 1px 3px rgba(139, 105, 20, 0.25));
}

.site-header--overlay.is-scrolled .site-brand__text small,
.site-header--overlay.is-past-hero .site-brand__text small {
    color: var(--text-muted);
}

.site-header--overlay.is-scrolled .site-nav__link,
.site-header--overlay.is-past-hero .site-nav__link {
    color: var(--text-muted);
}

.site-header--overlay.is-scrolled .site-nav__link:hover,
.site-header--overlay.is-scrolled .site-nav__link.is-active,
.site-header--overlay.is-past-hero .site-nav__link:hover,
.site-header--overlay.is-past-hero .site-nav__link.is-active {
    background: rgba(26, 92, 66, 0.08);
    color: var(--green-dark);
}

.site-header--overlay.is-scrolled .site-nav__link--cta-gold,
.site-header--overlay.is-past-hero .site-nav__link--cta-gold {
    background: linear-gradient(135deg, #ffe566 0%, #ffd700 48%, #d4af37 100%);
    border: none;
    color: var(--green-dark) !important;
    box-shadow: 0 4px 20px rgba(255, 215, 80, 0.38);
}

.site-header--overlay.is-scrolled .site-nav-toggle,
.site-header--overlay.is-past-hero .site-nav-toggle {
    border-color: rgba(26, 92, 66, 0.25);
    background: var(--surface);
}

.site-header--overlay.is-scrolled .site-nav-toggle__bar,
.site-header--overlay.is-past-hero .site-nav-toggle__bar {
    background: var(--green-dark);
}

/* Hero — cinematic, content in container */
.hero--cinema {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    margin-top: calc(-1 * var(--header-h));
    padding: calc(var(--header-h) + 4rem) 0 5rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        145deg,
        #1a5c42 0%,
        #227256 28%,
        #2d8a62 52%,
        #268058 78%,
        #1f6b4a 100%
    );
}

.hero__bg-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 60% at 78% 18%, rgba(255, 220, 90, 0.38), transparent 52%),
        radial-gradient(ellipse 65% 55% at 18% 78%, rgba(232, 197, 71, 0.22), transparent 50%),
        radial-gradient(ellipse 55% 45% at 50% 45%, rgba(255, 255, 255, 0.1), transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 45%, rgba(0, 0, 0, 0.08) 100%);
}

.hero__mesh-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 85% 75% at 40% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 85% 75% at 40% 50%, black, transparent);
    opacity: 0.7;
}

.hero__aurora {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 82% 28%, rgba(255, 215, 70, 0.42), transparent 55%),
        radial-gradient(ellipse 55% 48% at 12% 72%, rgba(110, 231, 160, 0.25), transparent 52%),
        radial-gradient(ellipse 45% 40% at 55% 50%, rgba(232, 197, 71, 0.2), transparent 58%);
    animation: aurora-shift 10s ease-in-out infinite alternate;
    mix-blend-mode: soft-light;
}

@keyframes aurora-shift {
    0% { opacity: 0.75; transform: translateX(0) scale(1); }
    100% { opacity: 1; transform: translateX(2%) scale(1.03); }
}

.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__particles span {
    position: absolute;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255, 230, 120, 0.95);
    box-shadow: 0 0 16px rgba(255, 215, 80, 0.9), 0 0 32px rgba(232, 197, 71, 0.4);
    animation: particle-rise 8s linear infinite;
}

.hero__particles span:nth-child(1) { left: 12%; bottom: -5%; animation-delay: 0s; animation-duration: 9s; }
.hero__particles span:nth-child(2) { left: 25%; bottom: -5%; animation-delay: 1.5s; animation-duration: 11s; width: 3px; height: 3px; }
.hero__particles span:nth-child(3) { left: 38%; bottom: -5%; animation-delay: 3s; animation-duration: 8s; }
.hero__particles span:nth-child(4) { left: 52%; bottom: -5%; animation-delay: 0.8s; animation-duration: 12s; width: 5px; height: 5px; }
.hero__particles span:nth-child(5) { left: 65%; bottom: -5%; animation-delay: 2.2s; animation-duration: 10s; }
.hero__particles span:nth-child(6) { left: 78%; bottom: -5%; animation-delay: 4s; animation-duration: 9s; width: 3px; height: 3px; }
.hero__particles span:nth-child(7) { left: 88%; bottom: -5%; animation-delay: 1s; animation-duration: 11s; }
.hero__particles span:nth-child(8) { left: 45%; bottom: -5%; animation-delay: 5s; animation-duration: 13s; width: 2px; height: 2px; }
.hero__particles span:nth-child(9) { left: 58%; bottom: -5%; animation-delay: 3.5s; animation-duration: 7s; }
.hero__particles span:nth-child(10) { left: 72%; bottom: -5%; animation-delay: 6s; animation-duration: 10s; }

@keyframes particle-rise {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-110vh) scale(0.5); opacity: 0; }
}

.hero__scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.015) 2px, rgba(255, 255, 255, 0.015) 4px);
    pointer-events: none;
    opacity: 0.5;
}

.hero__stage {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 420px);
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero__main {
    position: relative;
    padding: 0.5rem 0;
}

.hero__title,
.hero__lead {
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero__ai-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem 0.4rem 0.75rem;
    margin-bottom: 1.25rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.98);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 230, 120, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.hero__ai-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 12px #4ade80;
    animation: ai-pulse 2s ease-in-out infinite;
}

@keyframes ai-pulse {
    0%, 100% { box-shadow: 0 0 8px #4ade80; transform: scale(1); }
    50% { box-shadow: 0 0 20px #4ade80, 0 0 40px rgba(74, 222, 128, 0.4); transform: scale(1.15); }
}

.hero__ai-icon {
    color: var(--gold-bright);
    font-size: 0.9rem;
    animation: spin-slow 8s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero__title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero__title-line--gold {
    background: linear-gradient(135deg, #fff8dc 0%, #ffe566 25%, #fff 50%, #ffd700 75%, #fff8dc 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shimmer 4s linear infinite;
    filter: drop-shadow(0 2px 12px rgba(255, 215, 80, 0.35));
}

@keyframes text-shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero__lead {
    margin: 0 0 0.65rem;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.96);
    line-height: 1.65;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.25);
}

.hero__tagline {
    margin: 0 0 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 248, 220, 0.85);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding-top: 1.25rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s;
}

.hero__chip svg { color: #4ade80; flex-shrink: 0; }

.hero__chip:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero__chip--phone {
    color: var(--gold-bright);
    border-color: rgba(201, 162, 39, 0.35);
}

.hero__chip--phone:hover { text-decoration: none; }

/* Left side — image styled as video */
.hero__aside {
    display: flex;
    justify-content: flex-end;
}

.hero__media-slot {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.hero__media-slot--video {
    aspect-ratio: 3 / 4;
    min-height: 320px;
    max-height: min(480px, 55vh);
}

.hero__media-slot--video img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
}

.hero__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero__play span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--green-dark);
    font-size: 0.9rem;
    padding-right: 0.15rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s var(--ease-out);
}

.hero__media-slot--video:hover .hero__play span {
    transform: scale(1.08);
}

.hero__media-badge {
    position: absolute;
    bottom: 0.6rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

.btn--glass-primary {
    background: linear-gradient(135deg, rgba(232, 197, 71, 0.95), rgba(201, 162, 39, 0.9));
    color: var(--green-dark);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(201, 162, 39, 0.35);
    border-radius: 999px;
}

.btn--glass-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(201, 162, 39, 0.45);
    text-decoration: none;
}

.btn--glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    text-decoration: none;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 28px; height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    text-decoration: none;
    transition: border-color 0.3s;
}

.hero__scroll:hover { border-color: rgba(255, 255, 255, 0.6); }

.hero__scroll span {
    width: 4px; height: 8px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.7);
    animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: #fff;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.image-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, rgba(201,162,39,0.6), rgba(26,92,66,0.3), rgba(201,162,39,0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.image-frame:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.image-frame img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.6s var(--ease-out);
}

.image-frame:hover img {
    transform: scale(1.04);
}

.image-frame__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
    transform: translateX(100%);
    animation: shine 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shine {
    0%, 70%, 100% { transform: translateX(100%); }
    85% { transform: translateX(-100%); }
}

.image-frame--float {
    animation: frame-float 7s ease-in-out infinite;
}

@keyframes frame-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.image-frame--float:hover {
    animation: none;
}

.image-frame--hero img {
    max-height: 420px;
    object-fit: cover;
}

.image-frame--wide {
    margin-bottom: 2.5rem;
}

.image-frame--wide img {
    width: 100%;
}

/* Sections — gold/cream base; soft green washes on selected sections (not hero style) */
.section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.section > .site-container,
.contact-block > .site-container {
    position: relative;
    z-index: 1;
}

.section--compact { padding: 1.5rem 0; }

/* Gold — warm champagne */
.section--why {
    background: linear-gradient(180deg, #fff9ee 0%, #f8e8b8 45%, #fff5d6 100%);
}

.section--google {
    background: linear-gradient(180deg, #fff9ee 0%, #f5e6b8 40%, #edd99a 100%);
}

.section--testimonials {
    background: linear-gradient(180deg, #f8ecc0 0%, #fff5d6 50%, #f0d890 100%);
}

.contact-block:nth-of-type(odd) {
    background: linear-gradient(180deg, #fff5d6 0%, #f8e8b8 100%);
}

.contact-block {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Soft sage — pale green blended into cream */
.section--dark {
    background: linear-gradient(165deg, #fff9ee 0%, #eef6f0 38%, #dceee4 72%, #f0f7f2 100%);
}

.section--dark::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 45% at 12% 88%, rgba(45, 122, 90, 0.1), transparent 58%),
        radial-gradient(ellipse 50% 40% at 88% 12%, rgba(26, 92, 66, 0.07), transparent 55%);
}

/* Mint wash — light vertical fade */
.section--alt {
    background: linear-gradient(180deg, #f7faf8 0%, #e8f2ec 42%, #edf5f0 68%, #fff9ee 100%);
}

.section--alt::after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 90%);
    height: 55%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse, rgba(45, 122, 90, 0.07), transparent 68%);
}

/* Commitment — cream center glow with soft green (matches card style) */
.section--commitment {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, #fdfbf2 0%, #eef6f0 48%, #f8f0dc 100%);
}

.section--commitment::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(232, 245, 238, 0.85), transparent 72%);
}

/* Disclaimer — whisper green into cream */
.section--disclaimer {
    padding-bottom: 2rem;
    background: linear-gradient(180deg, #f0f7f3 0%, #f8faf6 45%, #fff9ee 100%);
}

/* Second contact — mint-gold blend */
.contact-block:nth-of-type(even) {
    background: linear-gradient(165deg, #edf5f0 0%, #f5f9f6 40%, #fff5d6 100%);
}

.contact-block:nth-of-type(even)::before {
    background: radial-gradient(ellipse, rgba(45, 122, 90, 0.07), transparent 70%);
}

/* Softer green bubbles on pale-green sections (not hero) */
.section--dark .fx-bubble,
.section--alt .fx-bubble,
.section--commitment .fx-bubble,
.section--disclaimer .fx-bubble,
.contact-block:nth-of-type(even) .fx-bubble {
    border-color: rgba(26, 92, 66, 0.14);
    background: radial-gradient(circle at 30% 30%, rgba(45, 122, 90, 0.12), rgba(26, 92, 66, 0.03));
}

.section--dark .fx-line,
.section--alt .fx-line,
.section--commitment .fx-line {
    background: linear-gradient(180deg, transparent, rgba(45, 122, 90, 0.22), transparent);
    opacity: 0.35;
}

/* Animated section decorations */
.section-fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.fx-star {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 8px var(--gold-glow);
    animation: fx-twinkle 4s ease-in-out infinite;
}

.fx-star:nth-child(1) { top: 12%; right: 8%; animation-delay: 0s; }
.fx-star:nth-child(2) { top: 28%; right: 22%; width: 3px; height: 3px; animation-delay: 0.8s; }
.fx-star:nth-child(3) { top: 55%; right: 5%; animation-delay: 1.6s; }
.fx-star:nth-child(4) { top: 70%; right: 18%; width: 5px; height: 5px; animation-delay: 2.2s; }
.fx-star:nth-child(5) { top: 18%; left: 12%; animation-delay: 1s; }
.fx-star:nth-child(6) { top: 82%; left: 25%; width: 3px; height: 3px; animation-delay: 3s; }

.hero--cinema .fx-star {
    background: #ffe566;
    box-shadow: 0 0 14px rgba(255, 230, 120, 1), 0 0 28px rgba(255, 215, 80, 0.5);
}

@keyframes fx-twinkle {
    0%, 100% { opacity: 0.25; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.4); }
}

.fx-bubble {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.2);
    background: radial-gradient(circle at 30% 30%, rgba(232, 197, 71, 0.15), rgba(201, 162, 39, 0.03));
    animation: fx-bubble 14s ease-in-out infinite;
}

.fx-bubble:nth-child(7)  { width: 80px;  height: 80px;  top: 10%; left: 6%;  animation-delay: 0s; }
.fx-bubble:nth-child(8)  { width: 120px; height: 120px; top: 60%; left: 3%;  animation-delay: -3s; }
.fx-bubble:nth-child(9)  { width: 60px;  height: 60px;  top: 35%; right: 4%; animation-delay: -6s; }
.fx-bubble:nth-child(10) { width: 100px; height: 100px; top: 75%; right: 8%; animation-delay: -2s; }
.fx-bubble:nth-child(11) { width: 50px;  height: 50px;  top: 20%; right: 20%; animation-delay: -8s; }

.hero--cinema .fx-bubble {
    border-color: rgba(255, 230, 120, 0.35);
    background: radial-gradient(circle at 30% 30%, rgba(255, 230, 120, 0.22), rgba(232, 197, 71, 0.05));
}

@keyframes fx-bubble {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    33% { transform: translate(12px, -20px) scale(1.05); opacity: 0.75; }
    66% { transform: translate(-8px, -35px) scale(0.95); opacity: 0.6; }
}

.fx-line {
    position: absolute;
    width: 1px;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(201, 162, 39, 0.35), transparent);
    animation: fx-line 10s linear infinite;
    opacity: 0.4;
}

.fx-line:nth-child(12) { top: -20%; right: 15%; animation-delay: 0s; }
.fx-line:nth-child(13) { top: -20%; left: 20%; height: 140px; animation-delay: -4s; }
.fx-line:nth-child(14) { top: -20%; right: 45%; height: 80px; animation-delay: -7s; }

.hero--cinema .fx-line {
    background: linear-gradient(180deg, transparent, rgba(255, 230, 120, 0.55), transparent);
    opacity: 0.5;
}

@keyframes fx-line {
    0% { transform: translateY(0) rotate(15deg); opacity: 0; }
    15% { opacity: 0.5; }
    85% { opacity: 0.5; }
    100% { transform: translateY(120vh) rotate(15deg); opacity: 0; }
}

.section-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 3rem;
}

.section-head--align-start {
    text-align: right;
    max-width: none;
    margin: 0 0 2.5rem;
}

.split-block--intro {
    margin-bottom: 2.5rem;
}

.image-frame--accent {
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 215, 80, 0.25);
}

.image-frame--tall img {
    min-height: 420px;
    object-fit: cover;
}

.image-frame--sticky {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
}

.commitment-split {
    display: grid;
    grid-template-columns: minmax(240px, 0.85fr) 1.25fr;
    gap: 2rem;
    align-items: center;
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 1.05fr minmax(300px, 0.95fr);
    gap: 2.5rem;
    align-items: stretch;
}

.testimonials-layout__main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonials-layout__aside {
    display: flex;
    min-height: 100%;
}

.testimonials-layout__aside .image-frame--full-height {
    flex: 1;
    width: 100%;
    min-height: 100%;
    height: auto;
    position: relative;
    top: auto;
}

.testimonials-layout__aside .image-frame--full-height img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}

.disclaimer-box__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-bottom: 1.25rem;
}

.disclaimer-box__logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(26, 92, 66, 0.15));
}

.disclaimer-box__head h2 {
    flex: 1 1 220px;
    margin: 0;
}

.disclaimer-box__icon {
    font-size: 2rem;
    line-height: 1;
}

.contact-block__layout {
    max-width: 920px;
    margin: 0 auto;
}

.contact-block__layout--media {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) 1.1fr;
    gap: 2rem;
    align-items: stretch;
    max-width: 1080px;
}

.contact-block__media .image-frame {
    height: 100%;
}

.contact-block__media .image-frame img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.contact-block__form {
    min-width: 0;
}

.contact-block__form .contact-form-wrap {
    max-width: none;
    margin: 0;
}

.split-block__media--badge {
    position: relative;
}

.partner-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 2;
    width: min(148px, 40%);
    padding: 0.55rem;
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 215, 80, 0.45);
}

.partner-badge img {
    display: block;
    width: 100%;
    height: auto;
}

.section-head h2 {
    font-size: clamp(1.75rem, 3.8vw, 2.5rem);
    margin: 0 0 0.85rem;
}

.section-head__lead {
    font-size: 1.08rem;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Why grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(26, 92, 66, 0.18);
    border-top: 3px solid var(--green);
    border-radius: var(--radius);
    padding: 1.5rem 1.6rem;
    box-shadow: var(--shadow);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    background: radial-gradient(circle, rgba(26, 92, 66, 0.1), transparent 70%);
    pointer-events: none;
}

.why-card:nth-child(odd) {
    background: linear-gradient(135deg, #1a5c42 0%, #247052 50%, #2d7a5a 100%);
    border: 1px solid rgba(255, 215, 80, 0.28);
    border-top: 3px solid var(--gold-bright);
    box-shadow: var(--shadow), 0 6px 24px rgba(26, 92, 66, 0.22);
}

.why-card:nth-child(odd)::after {
    background: radial-gradient(circle, rgba(255, 215, 80, 0.14), transparent 70%);
}

.why-card:nth-child(odd):hover {
    border-color: rgba(255, 215, 80, 0.45);
}

.why-card:nth-child(odd) .why-card__num {
    color: var(--gold-bright);
    background: rgba(255, 215, 80, 0.15);
    border-color: rgba(255, 215, 80, 0.35);
}

.why-card:nth-child(odd) h3 {
    color: #fff;
}

.why-card:nth-child(odd) p {
    color: rgba(255, 255, 255, 0.85);
}

.why-card:nth-child(1),
.why-card:nth-child(2) {
    grid-column: span 1;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 92, 66, 0.35);
}

.why-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem; height: 2rem;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--green-dark);
    background: rgba(26, 92, 66, 0.1);
    border: 1px solid rgba(26, 92, 66, 0.2);
    margin-bottom: 0.75rem;
}

.why-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.02rem;
    color: var(--green-dark);
    line-height: 1.35;
}

.why-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.why-grid .reveal-stagger:nth-child(1) { transition-delay: 0s; }
.why-grid .reveal-stagger:nth-child(2) { transition-delay: 0.07s; }
.why-grid .reveal-stagger:nth-child(3) { transition-delay: 0.14s; }
.why-grid .reveal-stagger:nth-child(4) { transition-delay: 0.21s; }
.why-grid .reveal-stagger:nth-child(5) { transition-delay: 0.28s; }
.why-grid .reveal-stagger:nth-child(6) { transition-delay: 0.35s; }
.why-grid .reveal-stagger:nth-child(7) { transition-delay: 0.42s; }
.why-grid .reveal-stagger:nth-child(8) { transition-delay: 0.49s; }
.why-grid .reveal-stagger:nth-child(9) { transition-delay: 0.56s; }
.why-grid .reveal-stagger:nth-child(10) { transition-delay: 0.63s; }

@media (max-width: 1100px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Split blocks */
.split-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.split-block--reverse {
    direction: ltr;
}

.split-block--reverse > * {
    direction: rtl;
}

.feature-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 1.5rem 0.5rem 0;
    position: relative;
    border-bottom: 1px solid rgba(26,92,66,0.1);
    color: var(--text-muted);
}

.feature-list li::before {
    content: "✦";
    position: absolute;
    right: 0;
    color: var(--green);
}

.gold-card {
    background: linear-gradient(135deg, #134a35 0%, #1a5c42 45%, #2d7a5a 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 80, 0.3);
    border-right: 4px solid var(--gold-bright);
    border-radius: var(--radius);
    padding: 1.75rem 2rem;
    box-shadow: var(--shadow-lg), 0 8px 32px rgba(26, 92, 66, 0.25);
}

.gold-card .feature-list li {
    color: rgba(255, 255, 255, 0.88);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.gold-card .feature-list li::before {
    color: var(--gold-bright);
}

/* Benefits */
.benefit-grid {
    display: grid;
    gap: 1rem;
}

.benefit-card {
    background: linear-gradient(135deg, #1a5c42 0%, #247052 50%, #2d7a5a 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 215, 80, 0.25);
    border-right: 4px solid var(--gold-bright);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.15rem 1.35rem;
    box-shadow: var(--shadow), 0 6px 24px rgba(26, 92, 66, 0.2);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateX(-4px);
    box-shadow: var(--shadow-lg), 0 10px 32px rgba(26, 92, 66, 0.3);
    border-color: rgba(255, 215, 80, 0.4);
}

.benefit-card h3 {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    color: #fff;
}

.benefit-card p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.benefit-card--inline {
    margin-bottom: 1rem;
}

.cta-note {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #1a5c42 0%, #2d7a5a 100%);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 215, 80, 0.3);
    border-right: 3px solid var(--gold-bright);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
}

/* Commitment */
.commitment-box {
    position: relative;
    background: linear-gradient(135deg, #134a35 0%, #1a5c42 40%, #247052 70%, #2d7a5a 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg), 0 12px 40px rgba(26, 92, 66, 0.35);
    border: 2px solid rgba(255, 215, 80, 0.35);
    overflow: hidden;
}

.commitment-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 80, 0.12), transparent 45%);
    pointer-events: none;
}

.commitment-box h2 {
    position: relative;
    margin: 0 0 1.25rem;
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.commitment-box p {
    position: relative;
    margin: 0;
    max-width: 900px;
    margin-inline: auto;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.02rem;
}

/* Testimonials */
.testimonials-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.35rem;
    margin-bottom: 0;
    flex: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(26, 92, 66, 0.18);
    border-top: 3px solid var(--green);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem 1.5rem;
    margin: 0;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card__quote {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 4rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(26, 92, 66, 0.15);
    pointer-events: none;
    user-select: none;
}

.testimonial-card__stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.85rem;
    letter-spacing: 3px;
}

.testimonial-card p {
    margin: 0 0 1rem;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.testimonial-card footer {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green);
}

.testimonial-card:nth-child(odd) {
    background: linear-gradient(135deg, #1a5c42 0%, #2d7a5a 100%);
    border: 1px solid rgba(255, 215, 80, 0.28);
    border-top: 3px solid var(--gold-bright);
    box-shadow: var(--shadow), 0 6px 24px rgba(26, 92, 66, 0.2);
}

.testimonial-card:nth-child(odd) .testimonial-card__quote {
    color: rgba(255, 215, 80, 0.2);
}

.testimonial-card:nth-child(odd) p {
    color: rgba(255, 255, 255, 0.88);
}

.testimonial-card:nth-child(odd) footer {
    color: var(--gold-bright);
}

.testimonials-cta {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #134a35 0%, #1a5c42 50%, #2d7a5a 100%);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 215, 80, 0.35);
    border-top: 3px solid var(--gold-bright);
    box-shadow: var(--shadow-lg), 0 10px 36px rgba(26, 92, 66, 0.3);
}

.testimonials-cta h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    color: var(--gold-bright) !important;
}

.testimonials-cta p {
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, 0.88);
}

/* Disclaimer */
.disclaimer-box {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(26, 92, 66, 0.2);
    border-right: 4px solid var(--green);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow);
}

.disclaimer-box__icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.disclaimer-box h2 {
    font-size: 1.15rem;
    color: var(--green-dark);
    margin: 0;
}

.disclaimer-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.disclaimer-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.disclaimer-item h3 {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    color: var(--green);
}

.disclaimer-item p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Contact forms */
.contact-block::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: min(600px, 80vw);
    height: 300px;
    background: radial-gradient(ellipse, rgba(26, 92, 66, 0.06), transparent 70%);
    pointer-events: none;
}

.contact-form-wrap {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(26, 92, 66, 0.2);
    box-shadow: var(--shadow-lg);
}

.contact-form-wrap::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, rgba(26, 92, 66, 0.45), rgba(255, 215, 80, 0.4), rgba(26, 92, 66, 0.35));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.gold-card.contact-form-wrap,
.contact-form-wrap.gold-card {
    border: none;
}

.contact-block__head {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.contact-block__head h2 {
    font-size: clamp(1.5rem, 3.2vw, 2rem);
    margin: 0 0 0.4rem;
}

.contact-block__subtitle {
    margin: 0;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.05rem;
}

.contact-block__alt {
    margin: 1.25rem 0 0;
    text-align: center;
    font-weight: 600;
    color: var(--green);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.field--full { grid-column: 1 / -1; }

.field span {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.35rem;
}

.field input,
.field textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1.5px solid rgba(26, 92, 66, 0.15);
    border-radius: var(--radius-sm);
    font: inherit;
    background: rgba(255, 255, 255, 0.85);
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.18);
}

.contact-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.75rem 1.35rem;
    border-radius: 999px;
    border: 2px solid transparent;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--lg { padding: 0.9rem 1.65rem; font-size: 1rem; }

.btn--primary {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: var(--green-dark);
    border-color: rgba(201, 162, 39, 0.5);
    box-shadow: 0 6px 24px rgba(201, 162, 39, 0.35);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(201, 162, 39, 0.45);
    text-decoration: none;
}

.btn--shine::after {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-shine {
    0%, 70%, 100% { left: -100%; }
    85% { left: 150%; }
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border-color: rgba(26, 92, 66, 0.25);
    color: var(--green-dark);
}

.btn--ghost:hover {
    background: rgba(26, 92, 66, 0.08);
    border-color: var(--green);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn--phone {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.btn--phone:hover {
    background: var(--green-dark);
    text-decoration: none;
}

.btn--whatsapp {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

.btn--whatsapp:hover {
    background: #1da851;
    text-decoration: none;
}

/* Alerts */
.alert {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-weight: 600;
}

.alert--success {
    background: rgba(52,168,83,0.12);
    color: #1e6b3a;
    border: 1px solid rgba(52,168,83,0.3);
}

.alert--error {
    background: rgba(234,67,53,0.1);
    color: #b52d20;
    border: 1px solid rgba(234,67,53,0.25);
}

/* Footer — full-width green */
.site-footer {
    position: relative;
    margin-top: 0;
    padding: 0;
    background: linear-gradient(165deg, #1a5c42 0%, #134a35 38%, #0f3d2c 68%, #0a2e21 100%);
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    isolation: isolate;
}

.site-footer__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 80% at 15% 20%, rgba(255, 215, 80, 0.12), transparent 55%),
        radial-gradient(ellipse 45% 60% at 85% 80%, rgba(45, 122, 90, 0.35), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.site-footer__top {
    position: relative;
    z-index: 1;
    padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(2rem, 4vw, 2.75rem);
    border-bottom: 1px solid rgba(255, 215, 80, 0.14);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr 0.9fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.site-footer__logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: opacity 0.25s;
}

.site-footer__logo:hover {
    opacity: 0.92;
    text-decoration: none;
}

.site-footer__logo-img {
    width: clamp(96px, 12vw, 112px);
    height: clamp(96px, 12vw, 112px);
    object-fit: contain;
    flex-shrink: 0;
    filter:
        drop-shadow(0 0 6px rgba(255, 255, 255, 0.85))
        drop-shadow(0 0 14px rgba(255, 255, 255, 0.55))
        drop-shadow(0 0 24px rgba(255, 255, 255, 0.35))
        drop-shadow(0 4px 12px rgba(255, 255, 255, 0.2));
}

.site-footer__logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    line-height: 1.25;
}

.site-footer__logo-text strong {
    font-size: 1.15rem;
    font-weight: 800;
    background: linear-gradient(
        115deg,
        #f5e6b8 0%,
        #ffe566 25%,
        #d4af37 50%,
        #fff8e7 65%,
        #c9a227 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.site-footer__logo-text small {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__person {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.site-footer__heading {
    margin: 0 0 1rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-bright);
}

.site-footer__links,
.site-footer__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.site-footer__links a,
.site-footer__contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s, transform 0.25s var(--ease-out);
}

.site-footer__links a:hover,
.site-footer__contact-list a:hover {
    color: var(--gold-bright);
    transform: translateX(-3px);
    text-decoration: none;
}

.site-footer__contact-icon {
    width: 1.75rem;
    height: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 215, 80, 0.2);
    flex-shrink: 0;
}

.site-footer__bottom {
    position: relative;
    z-index: 1;
    padding: 1.1rem 0 1.35rem;
    background: rgba(0, 0, 0, 0.18);
}

.site-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.site-footer__legal a {
    font-size: 0.84rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer__legal a:hover {
    color: var(--gold-bright);
    text-decoration: none;
}

.site-footer__copy {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 0.55rem 1.1rem;
    border: 1.5px solid rgba(201, 162, 39, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    color: var(--text-muted);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s var(--ease-out);
}

.footer-btn:hover {
    background: #fff;
    transform: translateY(-1px);
    text-decoration: none;
}

.footer-btn--primary {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: var(--green-dark);
}

.sparkle {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: 32px; height: 32px;
    pointer-events: none;
    z-index: 5;
    opacity: 0.85;
}

.sparkle::before, .sparkle::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    background: var(--gold-bright);
    border-radius: 999px;
    box-shadow: 0 0 16px var(--gold-glow);
}

.sparkle::before { width: 4px; height: 100%; }
.sparkle::after { width: 100%; height: 4px; }

/* Reveal animations */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-fade,
.reveal-stagger {
    opacity: 0;
    transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
    will-change: opacity, transform;
}

.reveal {
    transform: translateY(36px);
}

.reveal-left {
    transform: translateX(48px);
}

.reveal-right {
    transform: translateX(-48px);
}

.reveal-scale {
    transform: translateY(24px) scale(0.94);
}

.reveal-fade {
    transform: translateY(16px);
}

.reveal-stagger {
    transform: translateY(28px);
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible,
.reveal-fade.is-visible,
.reveal-stagger.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-scale.is-visible {
    transform: translateY(0) scale(1);
}

.reveal--delay { transition-delay: 0.2s; }

.image-frame[data-parallax] {
    will-change: transform;
}

.image-frame.reveal-scale.is-visible img,
.image-frame.reveal-scale.is-visible {
    transform: none;
}

/* Legal pages */
.page-hero {
    padding: 3rem 0 1rem;
    text-align: center;
}

.content-panel {
    background: var(--surface);
    border: 1px solid rgba(26,92,66,0.15);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.legal-text {
    line-height: 1.85;
    color: var(--text-muted);
    white-space: pre-line;
}

.legal-links {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(26,92,66,0.15);
}

/* Auth */
.auth-section { padding: 3rem 0; }
.auth-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Responsive */
@media (max-width: 960px) {
    .hero--cinema {
        min-height: auto;
        padding: calc(var(--header-h) + 2.5rem) 0 3.5rem;
    }

    .hero__stage {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: min(1180px, calc(100% - 2rem));
    }

    .hero__main {
        padding: 0;
    }

    .hero__aside {
        justify-content: center;
        max-width: 420px;
        margin: 0 auto;
    }

    .hero__scroll { display: none; }

    .split-block,
    .split-block--reverse,
    .auth-layout,
    .commitment-split,
    .contact-block__layout--media,
    .testimonials-layout {
        grid-template-columns: 1fr;
    }

    .testimonials-layout__aside {
        order: -1;
    }

    .testimonials-layout__aside .image-frame--full-height {
        min-height: min(420px, 55vw);
        max-height: none;
    }

    .image-frame--sticky {
        position: static;
    }

    .image-frame--tall img {
        min-height: 280px;
    }

    .reveal-left,
    .reveal-right {
        transform: translateY(36px);
    }

    .reveal-left.is-visible,
    .reveal-right.is-visible {
        transform: none;
    }

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

    .split-block--reverse { direction: rtl; }

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

    .site-nav-toggle { display: inline-block; }

    .site-nav {
        display: none;
        position: absolute;
        top: var(--header-h);
        right: 1rem;
        left: 1rem;
        flex-direction: column;
        padding: 0.75rem;
        background: rgba(255, 253, 248, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(26, 92, 66, 0.12);
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
    }

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

    .site-header__inner { position: relative; }

    .site-brand__text { display: none; }

    .section { padding: 3.5rem 0; }

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

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .site-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .hero__aside {
        max-width: 100%;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn { width: 100%; }
}

@media (max-width: 600px) {
    .contact-form__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-form__actions .btn { width: 100%; }
}
