/* ═══════════════════════════════════════════════════════════════════════════
   Dr. Bothaynah — site.css (base layer)
   Loaded before site-chrome.css and site-redesign.css
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── 1. Design tokens ─── */
:root {
    --green: #849379;
    --green-dark: #5a6b4e;
    --green-deep: #4a5a42;
    --green-light: #eef4eb;
    --green-glow: rgba(132, 147, 121, 0.22);
    --accent: #c9a86c;
    --accent-soft: #f5efe4;
    --ink: #2a2f2c;
    --ink-soft: #424a45;
    --ink-muted: #6b756c;
    --paper: #fafbf9;
    --paper-2: #eef2eb;
    --paper-3: #e2ebe0;
    --coral: var(--green);
    --coral-soft: var(--green-light);
    --mint: #cddbc8;
    --mint-deep: var(--green);
    --gold-line: #b8c9b0;
    --font-display: 'Alexandria', 'Outfit', system-ui, sans-serif;
    --font-serif: 'Alexandria', Georgia, serif;
    --font-body: 'Alexandria', 'Outfit', system-ui, sans-serif;
    --font-ar: 'Alexandria', system-ui, sans-serif;
    --header-h: 76px;
    --gutter: clamp(20px, 4.5vw, 56px);
    --content-max: 1160px;
    --readable-max: 42rem;
    --radius: 20px;
    --radius-sm: 14px;
    --radius-lg: 28px;
    --radius-pill: 999px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 12px 40px rgba(42, 47, 44, 0.08);
    --shadow-float: 0 24px 60px rgba(42, 47, 44, 0.12);
    --shadow-glow: 0 0 0 1px rgba(132, 147, 121, 0.12), 0 16px 44px rgba(90, 107, 78, 0.14);
    --section-py: clamp(52px, 7vw, 88px);
    --hero-h: clamp(520px, 88vh, 820px);
}

/* ─── 2. Reset & base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink-soft);
    background: var(--paper);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open { overflow: hidden; }

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--green-deep);
    letter-spacing: -0.02em;
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

main {
    position: relative;
    z-index: 1;
    min-height: 50vh;
}

::selection {
    background: rgba(132, 147, 121, 0.25);
    color: var(--ink);
}

/* ─── 3. Layout ─── */
.container {
    width: min(var(--content-max), 100%);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.content-rail {
    width: 100%;
    max-width: var(--content-max);
    margin-inline: auto;
}

.content-rail-narrow {
    max-width: calc(var(--readable-max) + var(--gutter) * 2);
}

/* ─── 4. Site header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    pointer-events: none;
}

.site-header-inner {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 2vw, 24px);
    min-height: var(--header-h);
    padding: 8px var(--gutter);
    margin-inline: auto;
    max-width: 100%;
    position: relative;
    border-radius: 0;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.3s var(--ease);
}

.site-header-full .site-header-inner {
    max-width: none;
}

.site-header:not(.site-header-hero) .site-header-inner,
.site-header-hero.is-scrolled .site-header-inner {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(42, 47, 44, 0.08);
    border-bottom: 1px solid rgba(132, 147, 121, 0.12);
}

.site-header-hero:not(.is-scrolled) {
    background: rgba(77, 110, 84, 0.94);
    backdrop-filter: blur(16px) saturate(1.1);
    -webkit-backdrop-filter: blur(16px) saturate(1.1);
    box-shadow: none;
}

.site-header-hero:not(.is-scrolled) .site-header-inner,
.site-header-full:not(.is-scrolled) .site-header-inner {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
    isolation: isolate;
}

.site-logo img {
    position: relative;
    z-index: 1;
    height: 48px;
    width: auto;
    transition: height 0.35s var(--ease), filter 0.35s var(--ease);
}

.site-logo-spotlight,
.site-logo-spotlight-beam {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.site-header-hero:not(.is-scrolled) .site-logo-spotlight {
    inset: -55% -120%;
    background: radial-gradient(
        ellipse 70% 80% at 50% 50%,
        rgba(245, 255, 248, 0.82) 0%,
        rgba(210, 245, 220, 0.48) 30%,
        rgba(160, 210, 175, 0.2) 55%,
        transparent 76%
    );
    filter: blur(14px);
    animation: heroSpotlightPulse 6s ease-in-out infinite;
}

.site-header-hero:not(.is-scrolled) .site-logo-spotlight-beam {
    top: -30%;
    left: 50%;
    width: 180%;
    height: 130%;
    transform: translateX(-50%);
    background: radial-gradient(
        ellipse 45% 70% at 50% 35%,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(220, 245, 228, 0.22) 45%,
        transparent 72%
    );
    filter: blur(18px);
    animation: heroSpotlightBeam 8s ease-in-out infinite;
}

.site-header-hero.is-scrolled .site-logo-spotlight,
.site-header-hero.is-scrolled .site-logo-spotlight-beam {
    display: none;
}

.site-header.is-scrolled .site-logo img,
.site-header-hero.is-scrolled .site-logo img {
    height: 40px;
}

.site-nav-desktop {
    display: none;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

.site-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink-soft);
    border-radius: var(--radius-pill);
    transition: color 0.25s, background 0.25s;
    white-space: nowrap;
}

.site-nav-link:hover,
.site-nav-link.is-active {
    color: var(--green-dark);
    background: rgba(132, 147, 121, 0.1);
}

.site-header-hero:not(.is-scrolled) .site-nav-link,
.site-header-hero:not(.is-scrolled) .site-nav-link span,
.site-header-hero:not(.is-scrolled) .site-nav-icon {
    color: rgba(255, 255, 255, 0.92);
}

.site-header-hero:not(.is-scrolled) .site-nav-link:hover,
.site-header-hero:not(.is-scrolled) .site-nav-link.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-inline-start: auto;
}

.site-header-cta {
    display: none;
    align-items: center;
    gap: 10px;
}

.site-header-phone {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-dark);
    border-radius: var(--radius-pill);
    background: rgba(132, 147, 121, 0.1);
    transition: background 0.25s, color 0.25s;
}

.site-header-phone:hover {
    background: rgba(132, 147, 121, 0.18);
}

.site-header-hero:not(.is-scrolled) .site-header-phone {
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.1);
}

.site-header-mobile-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.site-header-mobile-tools {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-header-mobile-tools .btn-register {
    display: none;
}

.site-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(132, 147, 121, 0.1);
    transition: background 0.25s;
    z-index: 2;
}

.site-header-hero:not(.is-scrolled) .site-menu-btn {
    background: rgba(255, 255, 255, 0.12);
}

.site-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.35s var(--ease), opacity 0.25s, background 0.25s;
}

.site-header-hero:not(.is-scrolled) .site-menu-btn span {
    background: #fff;
}

.site-menu-btn.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-menu-btn.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.site-menu-btn.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu shell */
.site-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: visibility 0.4s, opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

body.menu-open .site-header {
    z-index: 1101;
}

.site-menu-overlay.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

/* ─── 5. Hero cinema ─── */
.hero-cinema {
    position: relative;
    min-height: var(--hero-h);
    color: #fff;
    overflow: hidden;
    background: #1a2a20;
}

.hero-cinema--split {
    min-height: var(--hero-h);
    display: block;
    background: #4d6e54;
}

.hero-cinema--split .hero-cinema-split {
    min-height: var(--hero-h);
}

.hero-cinema--split .hero-cinema-media-col .hero-cinema-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border-radius: inherit;
}

.hero-cinema--split .hero-cinema-media-col .hero-cinema-shade {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    border-radius: inherit;
}

.hero-cinema--split .hero-cinema-content {
    max-width: 560px;
}

.hero-video-stage {
    position: relative;
    width: min(100%, 380px);
    margin-inline: auto;
    padding: 12px 0 32px;
}

.hero-video-spotlight,
.hero-video-spotlight-beam,
.hero-video-frame-glow {
    display: none;
}

.hero-video-frame {
    position: relative;
    z-index: 1;
    padding: 0;
    border-radius: var(--radius-lg);
    background: transparent;
    border: none;
    box-shadow: 0 16px 40px rgba(10, 20, 14, 0.28);
}

.hero-video-frame .hero-cinema-media {
    position: relative;
    inset: auto;
    aspect-ratio: 4 / 5;
    min-height: clamp(220px, 32vh, 360px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    z-index: 1;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.14),
        0 0 64px rgba(210, 245, 220, 0.45),
        0 20px 48px rgba(10, 20, 14, 0.35);
}

/* Local video: let the frame follow the clip's real proportions so the
   whole video shows without cropping and without dark filler bars. */
.hero-video-frame .hero-cinema-media--has-video:has(.hero-cinema-video) {
    aspect-ratio: auto;
    min-height: 0;
    background: transparent;
}

.hero-video-frame .hero-cinema-media--has-video .hero-cinema-video {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-video-frame .hero-cinema-overlay {
    opacity: 1;
    background: linear-gradient(
        180deg,
        rgba(8, 14, 11, 0.28) 0%,
        rgba(10, 18, 14, 0.12) 45%,
        rgba(6, 12, 9, 0.32) 100%
    );
}

.hero-video-frame .hero-cinema-shade {
    opacity: 0.45;
    background:
        radial-gradient(ellipse 85% 70% at 50% 40%, transparent 35%, rgba(4, 10, 7, 0.22) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 40%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-video-sound {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    background: rgba(8, 14, 11, 0.55);
    color: #fff;
    font-size: 1.35rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s;
}

.hero-video-sound:hover {
    transform: scale(1.06);
    background: rgba(77, 110, 84, 0.88);
    border-color: #fff;
}

.hero-video-sound.is-unmuted {
    background: rgba(77, 110, 84, 0.92);
}

.hero-video-sound:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

[dir="rtl"] .hero-video-sound {
    right: auto;
    left: 14px;
}

/* Caption above video */
.hero-video-caption {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: min(100%, 380px);
    margin: 16px auto 40px;
    padding: 10px 16px;
    text-align: center;
    opacity: 1;
    animation: hero-rise 0.8s var(--ease) 0.15s forwards;
}

.hero-cinema--split .hero-scroll-hint {
    z-index: 5;
}

.hero-cinema-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: var(--hero-h);
}

.hero-cinema-content-col {
    position: relative;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 32px) var(--gutter) 64px;
    z-index: 2;
}

.hero-cinema-media-col {
    position: relative;
    min-height: 280px;
    overflow: hidden;
}

.hero-cinema-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #152018;
}

.hero-cinema-video,
.hero-cinema-yt-wrap,
.hero-cinema-ig-wrap,
.hero-cinema-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-cinema-video,
.hero-cinema-yt-wrap,
.hero-cinema-ig-wrap {
    z-index: 1;
}

.hero-cinema-video {
    object-fit: cover;
    object-position: center;
}

.hero-cinema-yt-wrap {
    overflow: hidden;
    pointer-events: none;
}

.hero-cinema-ig-wrap {
    overflow: hidden;
    background: #000;
}

.hero-cinema-ig {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    min-width: 100%;
    height: 115%;
    min-height: 100%;
    transform: translateX(-50%);
    border: 0;
    pointer-events: auto;
}

.hero-cinema-yt {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    min-width: 100%;
    min-height: 100%;
    height: 56.25vw;
    transform: translate(-50%, -50%);
    border: 0;
}

.hero-cinema-fallback {
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-cinema-media--has-video .hero-cinema-fallback {
    display: none;
}

.hero-cinema-media--has-video .hero-cinema-video,
.hero-cinema-media--has-video .hero-cinema-yt-wrap,
.hero-cinema-media--has-video .hero-cinema-ig-wrap {
    z-index: 2;
}

.hero-cinema-media:has(.hero-cinema-video) .hero-cinema-fallback,
.hero-cinema-media:has(.hero-cinema-yt-wrap) .hero-cinema-fallback,
.hero-cinema-media:has(.hero-cinema-ig-wrap) .hero-cinema-fallback {
    opacity: 0;
    visibility: hidden;
}

.hero-cinema-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(115deg, rgba(26, 42, 32, 0.72) 0%, rgba(45, 69, 52, 0.45) 50%, rgba(26, 42, 32, 0.55) 100%);
    pointer-events: none;
}

.hero-cinema-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(10, 18, 14, 0.35) 0%, transparent 35%, rgba(10, 18, 14, 0.25) 100%);
    pointer-events: none;
}

.hero-cinema-grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-orbs {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    animation: heroOrbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 320px;
    height: 320px;
    background: rgba(132, 147, 121, 0.35);
    top: 10%;
    right: 5%;
}

.hero-orb-2 {
    width: 240px;
    height: 240px;
    background: rgba(201, 168, 108, 0.2);
    bottom: 20%;
    left: 10%;
    animation-delay: -3s;
}

.hero-orb-3 {
    width: 180px;
    height: 180px;
    background: rgba(77, 184, 201, 0.15);
    top: 40%;
    left: 40%;
    animation-delay: -5s;
}

.hero-cinema-inner {
    position: relative;
    z-index: 4;
    padding: calc(var(--header-h) + 40px) 0 100px;
}

.hero-cinema-grid {
    display: grid;
    gap: clamp(28px, 5vw, 48px);
    align-items: center;
}

.hero-cinema-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero-cinema-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 12px;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
    opacity: 0;
    animation: hero-rise 0.8s var(--ease) 0.2s forwards;
}

.hero-cinema-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    animation: pulse-dot 1.4s ease infinite;
}

.hero-cinema-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.02;
    margin-bottom: 24px;
    color: #fff;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(24px);
    animation: hero-rise 0.9s var(--ease) forwards;
}

.hero-line:nth-child(1) { animation-delay: 0.15s; }
.hero-line:nth-child(2) { animation-delay: 0.3s; }

.hero-line-accent {
    font-weight: 500;
    font-size: 0.36em;
    letter-spacing: 0.04em;
    margin-top: 0.15em;
    color: rgba(255, 255, 255, 0.88);
}

.hero-cinema-lead {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin-bottom: 28px;
    opacity: 0;
    animation: hero-rise 0.9s var(--ease) 0.45s forwards;
}

.hero-cinema-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
    opacity: 0;
    animation: hero-rise 0.9s var(--ease) 0.6s forwards;
}

.hero-cinema-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 36px;
    max-width: 480px;
    opacity: 0;
    animation: hero-rise 0.9s var(--ease) 0.75s forwards;
}

.hero-stat-card {
    padding: 16px 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(12px);
}

.hero-stat-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-card span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.hero-scroll-hint:hover { color: #fff; }

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.8), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

.hero-cinema-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 4;
    line-height: 0;
    pointer-events: none;
}

.hero-cinema-wave svg {
    display: block;
    width: 100%;
    height: 64px;
}

.hero-cinema-wave svg path {
    fill: var(--paper);
}

.video-fallback .hero-cinema-video { display: none; }
.video-fallback .hero-cinema-fallback { z-index: 1; opacity: 1; visibility: visible; }

/* ─── 6. Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, border-color 0.3s, color 0.3s;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

.btn-glow {
    color: #fff;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    box-shadow: 0 8px 28px rgba(90, 107, 78, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 12px 36px rgba(90, 107, 78, 0.5);
}

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

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-book {
    color: #fff;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    box-shadow: 0 6px 24px rgba(90, 107, 78, 0.35);
}

.btn-book:hover {
    box-shadow: 0 10px 32px rgba(90, 107, 78, 0.45);
}

.btn-outline {
    color: var(--green-dark);
    background: transparent;
    border-color: var(--green);
}

.btn-outline:hover {
    background: var(--green-light);
}

.btn-soft {
    color: var(--green-dark);
    background: var(--accent-soft);
}

.btn-soft:hover {
    background: var(--green-light);
}

.btn-primary {
    color: #fff;
    background: var(--green-dark);
}

.btn-primary:hover {
    background: var(--green);
}

/* ─── 7. Reveal animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

body.is-motion-ready .reveal { will-change: opacity, transform; }

/* ─── 8. Sections & utilities ─── */
.section {
    padding: var(--section-py) 0;
    position: relative;
}

.section-tight {
    padding: calc(var(--section-py) * 0.72) 0;
}

.section-compact {
    padding: 48px 0;
}

.section-muted {
    background: var(--paper-2);
}

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

.section-head {
    margin-bottom: clamp(18px, 2.5vw, 28px);
}

.section-head h2 {
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    max-width: 18ch;
    color: var(--green-deep);
}

.section-head.center {
    text-align: center;
}

.section-head.center h2 {
    margin-inline: auto;
    max-width: 22ch;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.section-cta {
    text-align: center;
    margin-top: 32px;
}

.mesh-bg {
    position: relative;
    overflow: hidden;
}

.mesh-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 20% 0%, rgba(132, 147, 121, 0.12), transparent 55%),
        radial-gradient(ellipse 50% 40% at 80% 100%, rgba(201, 168, 108, 0.08), transparent 50%);
}

.mesh-bg > .container,
.mesh-bg > .content-rail {
    position: relative;
    z-index: 1;
}

/* ─── 9. Marquee trust strip ─── */
.marquee-strip {
    overflow: hidden;
    padding: 18px 0;
    background: var(--paper);
    border-block: 1px solid var(--paper-3);
}

.marquee-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: marquee 32s linear infinite;
}

.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-dark);
    white-space: nowrap;
}

.marquee-track span::before {
    content: '✦';
    color: var(--accent);
    font-size: 10px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 32px 0;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--paper-3);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    animation: sectionFloat 5s ease-in-out infinite;
}

.trust-item:nth-child(2) { animation-delay: -1.2s; }
.trust-item:nth-child(3) { animation-delay: -2.4s; }
.trust-item:nth-child(4) { animation-delay: -3.6s; }

.trust-item-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 18px;
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 4px;
}

.trust-item span {
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.5;
}

/* ─── 10. About bento ─── */
.about-bento {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

.about-bento--wide {
    gap: 16px;
}

.about-bento-main {
    padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px);
    border-radius: var(--radius);
    color: #fff;
    background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
}

.about-bento-main h3 {
    color: #fff;
    font-size: clamp(1.55rem, 3.2vw, 2.15rem);
    margin-bottom: 12px;
    max-width: 24ch;
}

.about-bento-main p {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 1.75vw, 1.12rem);
    line-height: 1.75;
    margin-bottom: 0.75em;
    max-width: 72ch;
}

.about-bento-main p:last-child {
    margin-bottom: 0;
}

.about-bento-img {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 240px;
}

.about-bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 240px;
}

.about-bento-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius);
    background: var(--paper);
    border: 1px solid var(--paper-3);
}

.about-bento-stat strong {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1;
}

.about-bento-stat span {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-muted);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ─── 11. Help pills ─── */
.help-pills {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 720px;
    margin-inline: auto;
}

.help-pill {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid var(--paper-3);
    border-radius: var(--radius-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.help-pill:hover {
    transform: translateX(6px);
    border-color: var(--green);
    box-shadow: var(--shadow);
}

.help-pill-num {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--green-dark);
    flex-shrink: 0;
}

.help-pill h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.help-pill p {
    font-size: 0.95rem;
    color: var(--ink-muted);
    margin: 0;
}

/* ─── 12. Services bento ─── */
.bento-services {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

.bento-services--home {
    gap: 16px;
}

@media (min-width: 640px) {
    .bento-services--home {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }
}

.bento-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--paper-3);
    overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-float);
}

.bento-card.featured {
    border-color: rgba(132, 147, 121, 0.35);
}

.bento-card.featured .bento-card-body,
.bento-card--full .bento-card-body {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: baseline;
    column-gap: 14px;
    row-gap: 10px;
}

.bento-card.featured .bento-card-index,
.bento-card--full .bento-card-index {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
    font-size: 1.35rem;
    line-height: 1;
}

.bento-card.featured .bento-card-body h3,
.bento-card--full .bento-card-body h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
}

.bento-card.featured .bento-card-body p,
.bento-card--full .bento-card-body p {
    grid-column: 1 / -1;
    grid-row: 2;
}

.bento-card--full {
    grid-column: 1 / -1;
}

@media (min-width: 640px) {
    .bento-card--full {
        flex-direction: row;
        align-items: stretch;
    }

    .bento-card--full .bento-card-img {
        flex: 0 0 min(40%, 380px);
        aspect-ratio: auto;
        min-height: 200px;
    }

    .bento-card--full .bento-card-body {
        justify-content: center;
        align-content: center;
    }
}

.bento-card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--paper-2);
}

.bento-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.bento-card:hover .bento-card-img img {
    transform: scale(1.04);
}

.bento-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bento-card-index {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 8px;
}

.bento-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.bento-card p {
    font-size: 0.95rem;
    color: var(--ink-muted);
    line-height: 1.7;
    flex: 1;
}

/* ─── 13. Articles ─── */
.articles-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

.article-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--paper-3);
    overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
}

.article-card-img {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--paper-2);
}

.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.article-card:hover .article-card-img img {
    transform: scale(1.04);
}

.article-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-date {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.article-card h2 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.35;
}

.article-card h2 a:hover {
    color: var(--green-dark);
}

.article-card p {
    font-size: 0.95rem;
    color: var(--ink-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.article-read-more {
    font-size: 14px;
    font-weight: 700;
    color: var(--green-dark);
    margin-top: auto;
}

.article-read-more:hover {
    color: var(--green);
}

.articles-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--ink-muted);
    font-size: 1.05rem;
}

/* ─── 14. FAQ accordion ─── */
.faq-accordion {
    max-width: 760px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--paper-3);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
}

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

.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 11px;
    transition: transform 0.3s var(--ease), background 0.3s;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: var(--green);
    color: #fff;
}

.faq-answer {
    padding: 0 20px 18px;
    color: var(--ink-muted);
    line-height: 1.85;
    font-size: 0.97rem;
}

/* ─── 15. Testimonials ─── */
.testimonials-track {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

.testimonial-card {
    margin: 0;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--paper-3);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: #c9a227;
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-meta strong {
    font-family: var(--font-display);
    color: var(--ink);
}

.testimonial-meta span {
    font-size: 13px;
    color: var(--ink-muted);
}

/* ─── 16. Contact ─── */
.contact-block {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr;
}

.contact-block-aside {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-deep) 100%);
    color: #fff;
}

.contact-block-aside h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.contact-block-aside p,
.contact-block-aside .content {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    font-size: 15px;
}

.contact-detail a {
    color: #fff;
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

/* Invisible honeypot — bots fill it, humans never see it */
.hp-field {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.contact-form {
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--paper-3);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--paper-3);
    border-radius: var(--radius-sm);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.form-control:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(132, 147, 121, 0.15);
}

.form-control::placeholder {
    color: var(--ink-muted);
    opacity: 0.7;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ─── 17. Vitals section (base structure) ─── */
.vitals-section {
    position: relative;
    overflow: hidden;
}

.vitals-copy h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 8px;
}

.vitals-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.vitals-lead {
    font-size: 1.05rem;
    color: var(--ink-muted);
    line-height: 1.8;
    margin: 12px 0 24px;
}

.vitals-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vitals-tab {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    padding: 16px 18px;
    text-align: start;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--paper-3);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.vitals-tab:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.vitals-tab.is-active {
    background: #fff;
    border-color: var(--green);
    box-shadow: var(--shadow-glow);
}

.vitals-tab-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 16px;
    flex-shrink: 0;
}

.vitals-tab.is-active .vitals-tab-icon {
    background: var(--green);
    color: #fff;
}

.vitals-tab-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 2px;
}

.vitals-tab-text small {
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.5;
}

.vitals-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 360px;
}

.vitals-visual-frame {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-float);
}

/* ─── 18. Inner pages ─── */
.page-hero-band {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: clamp(200px, 28vh, 300px);
    padding: calc(var(--header-h) + 56px) 0 clamp(64px, 9vh, 96px);
    background: #4d6e54;
    color: #fff;
    overflow: hidden;
}

.page-hero-band-pattern {
    position: absolute;
    inset: 0;
    background-image: var(--med-pattern-footer, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.95' opacity='0.17'%3E%3Cpath d='M32 18v14M24 26h16'/%3E%3C/g%3E%3C/svg%3E"));
    background-size: 40px 40px;
    opacity: 0.16;
    pointer-events: none;
}

.page-hero-band > .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.page-hero-band h1 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.5vw, 2.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: #fff;
    margin: 0;
    max-width: none;
}

.page-hero-band-inner {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.5vw, 22px);
    flex-wrap: wrap;
}

.page-hero-band-icon {
    position: relative;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: clamp(56px, 9vw, 72px);
    height: clamp(56px, 9vw, 72px);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.page-hero-band-icon-ring {
    position: absolute;
    inset: -6px;
    border-radius: 26px;
    border: 1px dashed rgba(255, 255, 255, 0.22);
    animation: pageHeroRing 6s linear infinite;
}

@keyframes pageHeroRing {
    to { transform: rotate(360deg); }
}

.page-hero-band-copy {
    flex: 1 1 220px;
    min-width: 0;
}

.page-hero-band-kicker {
    margin: 0 0 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.4;
}

.page-hero-band-title-text {
    display: inline-block;
    max-width: 22ch;
}

.page-hero-band-deco {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.page-hero-band-deco--lead {
    font-size: 1.15rem;
    color: rgba(201, 168, 108, 0.9);
}

.page-hero-band-deco--trail i:nth-child(1) { opacity: 0.35; font-size: 0.75em; }
.page-hero-band-deco--trail i:nth-child(2) { opacity: 0.6; font-size: 0.9em; }
.page-hero-band-deco--trail i:nth-child(3) { opacity: 0.95; }

[dir="rtl"] .page-hero-band-inner {
    flex-direction: row-reverse;
}

[dir="rtl"] .page-hero-band-deco--trail,
[dir="rtl"] .page-hero-band-deco--lead {
    transform: scaleX(-1);
}

[dir="rtl"] .page-hero-band-title-text {
    text-align: right;
}

@media (max-width: 560px) {
    .page-hero-band-deco--lead {
        display: none;
    }

    .page-hero-band-inner {
        gap: 12px;
    }
}

.page-hero-band-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    pointer-events: none;
    z-index: 2;
}

.page-hero-band-wave svg {
    display: block;
    width: 100%;
    height: 40px;
}

.page-hero-band-wave path {
    fill: var(--paper);
}

.page-hero-band--light .page-hero-band-kicker,
.page-hero-band--light h1,
.page-hero-band--light .page-hero-band-title-text,
.page-hero-band--light .page-hero-band-deco,
.page-hero-band--light .page-hero-band-icon,
.page-hero-band--light .page-hero-band-icon i {
    color: #fff;
}

.page-hero-band--light .page-hero-band-icon {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.page-hero-band--light .page-hero-band-deco--lead {
    color: rgba(255, 255, 255, 0.92);
}

.page-hero-band--light .page-hero-band-icon-ring {
    border-color: rgba(255, 255, 255, 0.28);
}

/* ─── Customer testimonials / image carousels ─── */
.section-clients {
    padding-block: clamp(48px, 6vw, 72px);
}

.clients-head {
    margin-bottom: clamp(24px, 4vw, 36px);
}

.clients-icon-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.clients-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 1.2rem;
}

.clients-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--green-deep);
    margin: 0;
}

.clients-carousel {
    position: relative;
    padding-inline: 52px;
}

.clients-carousel-viewport {
    overflow: hidden;
}

.clients-carousel-track {
    display: flex;
    will-change: transform;
}

.clients-slide {
    flex: 0 0 auto;
    margin: 0;
}

.clients-slide-link {
    display: block;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.clients-slide-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
}

.clients-slide img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

/* Customer Testimonials — portrait screenshots, show full image */
.section-clients .clients-slide-link {
    background: #fff;
}

.section-clients .clients-slide img {
    aspect-ratio: 651 / 1024;
    min-height: clamp(340px, 42vw, 520px);
    object-fit: contain;
}

.clients-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(168, 184, 158, 0.45);
    background: #fff;
    color: var(--green-dark);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
    z-index: 2;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.clients-carousel-btn:hover {
    background: var(--green-dark);
    color: #fff;
    border-color: var(--green-dark);
}

.clients-carousel-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.clients-carousel-prev { inset-inline-start: 0; }
.clients-carousel-next { inset-inline-end: 0; }

.clients-carousel-dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.clients-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(90, 107, 78, 0.28);
    padding: 0;
    cursor: pointer;
    transition: transform 0.25s, background 0.25s;
}

.clients-dot.is-active {
    background: var(--green-dark);
    transform: scale(1.2);
}

.about-page-certs .section-head {
    margin-bottom: 28px;
}

.about-page-certs-head {
    margin-bottom: clamp(24px, 4vw, 36px);
}

.about-page-certs-head h2 {
    margin: 0;
    color: var(--green-deep);
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
}

/* Full-width certificate carousels — match drbj.net Elementor layout */
.about-page-certs {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-inline: var(--gutter);
}

.about-page-certs-carousels {
    max-width: 1820px;
    margin-inline: auto;
}

.about-page-certs .clients-carousel + .clients-carousel {
    margin-top: 40px;
}

.about-page-certs .clients-carousel--certs {
    padding-inline: 52px;
}

.about-page-certs .clients-carousel--certs .clients-carousel-track {
    align-items: flex-start;
}

.about-page-certs .clients-carousel--certs .clients-slide {
    height: auto;
}

.about-page-certs .clients-carousel--certs .clients-slide-link {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    display: block;
    height: auto;
}

.about-page-certs .clients-carousel--certs .clients-slide-link:hover {
    transform: none;
    box-shadow: none;
}

.about-page-certs .clients-carousel--certs .clients-slide img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
    display: block;
    margin: 0;
}

.about-page-certs .clients-carousel-dots {
    margin-top: 24px;
}

.clients-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    background: rgba(10, 18, 14, 0.88);
    padding: 24px;
}

.clients-lightbox[hidden] {
    display: none !important;
}

.clients-lightbox-img {
    max-width: min(92vw, 960px);
    max-height: 86vh;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-float);
}

.clients-lightbox-close,
.clients-lightbox-nav {
    position: absolute;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    line-height: 1;
}

.clients-lightbox-close {
    top: 20px;
    inset-inline-end: 20px;
}

.clients-lightbox-prev { inset-inline-start: 20px; top: 50%; transform: translateY(-50%); }
.clients-lightbox-next { inset-inline-end: 20px; top: 50%; transform: translateY(-50%); }

.contact-block-aside .contact-detail i {
    color: #fff;
    width: 18px;
    text-align: center;
}

@media (max-width: 640px) {
    .clients-carousel {
        padding-inline: 40px;
    }

    .clients-carousel-btn {
        width: 36px;
        height: 36px;
    }
}

    padding: calc(var(--header-h) + 48px) 0 56px;
    background: linear-gradient(180deg, var(--green-light) 0%, var(--paper) 100%);
}

.page-top h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-top: 8px;
}

.page-top p {
    font-size: 1.1rem;
    color: var(--ink-muted);
    max-width: 560px;
    margin-top: 12px;
}

.page-body {
    padding: 48px 0 var(--section-py);
}

.page-body .content,
.page-body .article-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--ink-soft);
}

.page-body .content h2,
.page-body .content h3,
.page-body .article-content h2,
.page-body .article-content h3 {
    margin: 1.5em 0 0.6em;
    color: var(--ink);
}

.page-body .content img,
.page-body .article-content img {
    border-radius: var(--radius-sm);
    margin: 1.5em 0;
}

/* ─── About page ─── */
.about-page {
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 6vw, 64px);
}

.about-page-intro {
    display: grid;
    gap: 32px;
    align-items: center;
}

.about-page-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-float);
    border: 1px solid var(--paper-3);
    max-width: 420px;
    margin-inline: auto;
}

.about-page-photo img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
    margin: 0;
}

.about-page-lead h2 {
    margin-top: 0;
    color: var(--green-deep);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.about-page-certs .section-head {
    margin-bottom: 24px;
}

.about-page-certs .section-head h2 {
    margin: 0;
    color: var(--green-deep);
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
}

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

.about-cert-card {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--paper-3);
    background: #fff;
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.about-cert-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
}

.about-cert-card img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    margin: 0;
    display: block;
}

.about-page-contact {
    padding-top: 8px;
}

.about-contact-card {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    padding: 24px 28px;
    border-radius: var(--radius);
    background: linear-gradient(145deg, var(--green-light) 0%, #fff 70%);
    border: 1px solid var(--paper-3);
}

.about-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
    color: var(--ink-soft);
}

.about-contact-item i {
    color: var(--green-dark);
    width: 18px;
    text-align: center;
}

.about-contact-item a {
    color: var(--green-dark);
    font-weight: 600;
}

@media (min-width: 768px) {
    .about-page-intro {
        grid-template-columns: minmax(280px, 360px) 1fr;
    }

    .about-page-photo {
        margin-inline: 0;
    }

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

@media (min-width: 1024px) {
    .about-certs-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.hero-image-frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

/* ─── 19. Alerts ─── */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.alert-success {
    background: var(--green-light);
    color: var(--green-dark);
    border: 1px solid rgba(132, 147, 121, 0.3);
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.has-drbj-inner {
    --header-h: 64px;
}

.has-drbj-inner .site-logo img {
    height: clamp(52px, 5vw, 64px);
    transition: height 0.35s var(--ease), filter 0.35s var(--ease);
}

.has-drbj-hero .site-logo,
.has-drbj-inner .site-logo {
    position: relative;
    z-index: 3;
    padding: 4px 12px 2px;
    margin-top: 2px;
    border-radius: 10px;
    overflow: visible;
}

.has-drbj-hero .site-header-hero.is-scrolled .site-logo,
.has-drbj-inner .site-header-hero.is-scrolled .site-logo {
    padding: 0;
    margin-top: 0;
}

.has-drbj-inner .site-header-hero:not(.is-scrolled) .site-logo img {
    filter: brightness(0) invert(1);
}

.has-drbj-inner .site-header-hero.is-scrolled .site-logo img {
    height: 44px;
    filter: none;
}

.has-drbj-inner .site-nav-link {
    padding: 8px 12px;
    font-size: 12px;
}

.has-drbj-inner .site-header-hero:not(.is-scrolled) .site-nav-link,
.has-drbj-inner .site-header-hero:not(.is-scrolled) .site-nav-link span,
.has-drbj-inner .site-header-hero:not(.is-scrolled) .site-nav-icon,
.has-drbj-inner .site-header-hero:not(.is-scrolled) .site-header-phone,
.has-drbj-inner .site-header-hero:not(.is-scrolled) .site-lang-btn {
    color: #fff;
}

.has-drbj-inner .site-header-hero:not(.is-scrolled) .site-nav-link:hover,
.has-drbj-inner .site-header-hero:not(.is-scrolled) .site-nav-link.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.has-drbj-inner .page-body {
    padding-top: 48px;
}

/* ─── 20. has-drbj-hero overrides ─── */
.has-drbj-hero {
    --header-h: 64px;
    --hero-h: clamp(520px, 85vh, 820px);
}

.has-drbj-hero .site-header-full {
    position: fixed;
    width: 100%;
}

.has-drbj-hero .site-header-full .site-header-inner {
    padding: 10px var(--gutter);
    min-height: 56px;
}

.has-drbj-hero .site-logo img {
    height: clamp(56px, 5.5vw, 72px);
    transition: height 0.35s var(--ease), filter 0.35s var(--ease);
}

.has-drbj-hero .site-header-hero:not(.is-scrolled) .site-logo img {
    filter: brightness(0) invert(1);
}

.has-drbj-hero .site-header-hero.is-scrolled .site-logo img {
    height: 46px;
    filter: none;
}

.has-drbj-hero .site-nav-link {
    padding: 8px 12px;
    font-size: 12px;
}

.has-drbj-hero .site-header-hero:not(.is-scrolled) .site-nav-link,
.has-drbj-hero .site-header-hero:not(.is-scrolled) .site-nav-link span,
.has-drbj-hero .site-header-hero:not(.is-scrolled) .site-nav-icon,
.has-drbj-hero .site-header-hero:not(.is-scrolled) .site-header-phone,
.has-drbj-hero .site-header-hero:not(.is-scrolled) .site-lang-btn {
    color: #fff;
}

.has-drbj-hero .site-header-hero:not(.is-scrolled) .site-nav-link:hover,
.has-drbj-hero .site-header-hero:not(.is-scrolled) .site-nav-link.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.has-drbj-hero .hero-cinema--split {
    color: #fff;
}

.has-drbj-hero .hero-cinema-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: var(--hero-h);
}

.has-drbj-hero .hero-cinema-content-col {
    padding: calc(var(--header-h) + 60px) clamp(24px, 5vw, 72px) 96px;
    background: #4d6e54;
}

.has-drbj-hero .hero-cinema-content {
    padding-bottom: 28px;
}

.has-drbj-hero .hero-cinema-media-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 360px;
    padding: calc(var(--header-h) + 52px) clamp(24px, 5vw, 56px) 88px;
    background: #4d6e54;
    overflow: visible;
}

.has-drbj-hero .hero-scroll-hint {
    bottom: 88px;
}

@keyframes heroSpotlightPulse {
    0%, 100% { opacity: 0.75; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.04); }
}

@keyframes heroSpotlightBeam {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scaleY(1); }
    50% { opacity: 0.85; transform: translateX(-50%) scaleY(1.06); }
}

/* ─── 21. Keyframes ─── */
@keyframes hero-rise {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
}

@keyframes heroOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-16px, 12px) scale(1.06); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
    50% { transform: scaleY(1); opacity: 1; }
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes sectionFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

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

/* ─── 22. Responsive ─── */
@media (min-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-strip {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-track {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .site-header-cta {
        display: flex;
    }

    .site-header-phone {
        display: inline-flex;
    }

    .bento-services:not(.bento-services--home) {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-bento {
        grid-template-columns: 1fr minmax(160px, 220px);
        align-items: stretch;
    }

    .about-bento-main {
        grid-row: auto;
    }

    .about-bento-stat {
        padding: 28px 20px;
    }

    .contact-block {
        grid-template-columns: 0.9fr 1.1fr;
        align-items: start;
    }

    .testimonials-track {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .has-drbj-hero .hero-cinema-split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .hero-video-stage,
    .hero-video-caption {
        width: min(100%, 480px);
    }

    .hero-video-frame .hero-cinema-media {
        min-height: clamp(280px, 40vh, 420px);
        aspect-ratio: 4 / 5;
    }
}

@media (min-width: 1024px) {
    .site-nav-desktop {
        display: flex;
    }

    .site-header-mobile-bar {
        display: none;
    }

    .site-header-mobile-tools .btn-register {
        display: none;
    }

    .hero-cinema-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bento-services:not(.bento-services--home) {
        grid-template-columns: repeat(3, 1fr);
    }

    .bento-services:not(.bento-services--home) .bento-card.featured:not(.bento-card--full) {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .vitals-grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 56px;
    }
}

@media (max-width: 899px) {
    .has-drbj-hero .hero-cinema-split {
        grid-template-columns: 1fr;
    }

    .has-drbj-hero .hero-cinema-media-col {
        order: -1;
        min-height: clamp(220px, 38vh, 320px);
        max-height: none;
        padding: calc(var(--header-h) + 24px) var(--gutter) 32px;
        overflow: hidden;
    }

    .hero-video-stage,
    .hero-video-caption {
        width: min(100%, 340px);
    }

    .hero-video-caption {
        margin: 12px auto 36px;
        padding: 8px 12px;
    }

    .hero-video-stage {
        padding: 8px 0 28px;
    }

    .hero-video-frame .hero-cinema-media {
        min-height: clamp(200px, 34vh, 300px);
        aspect-ratio: 4 / 5;
    }

    .has-drbj-hero .hero-cinema-content-col {
        padding: calc(var(--header-h) + 48px) var(--gutter) 64px;
    }

    [dir="rtl"] .has-drbj-hero .hero-cinema-content-col,
    [dir="rtl"] .has-drbj-hero .hero-cinema-media-col {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 767px) {
    :root {
        --header-h: 68px;
        --hero-h: clamp(440px, 72vh, 600px);
    }

    .hero-cinema-stats {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .hero-organ-chips {
        display: none;
    }

    .hero-scroll-hint {
        display: none;
    }

    .site-header-phone-num {
        display: none !important;
    }
}

@media (max-width: 479px) {
    .hero-cinema-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cinema-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ─── 23. RTL ─── */
[dir="rtl"] .help-pill:hover {
    transform: translateX(-6px);
}

@media (min-width: 900px) {
    [dir="rtl"] .has-drbj-hero .hero-cinema-split {
        direction: ltr;
    }

    [dir="rtl"] .has-drbj-hero .hero-cinema-content-col {
        order: 2;
    }

    [dir="rtl"] .has-drbj-hero .hero-cinema-media-col {
        order: 1;
    }

    [dir="rtl"] .has-drbj-hero .hero-cinema-content {
        text-align: right;
    }
}

/* ─── 24. Hero organ chips & extras ─── */
.hero-organ-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-organ-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
}

.hero-organ-chip i {
    color: var(--accent);
    font-size: 12px;
}

.site-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(168, 184, 158, 0.35);
}

.site-lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 40px;
    width: 40px;
    height: 32px;
    padding: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    color: var(--ink-muted);
    border-radius: var(--radius-pill);
    transition: background 0.25s, color 0.25s;
    flex: 0 0 40px;
}

.site-lang-btn.is-active {
    background: var(--green);
    color: #fff;
}

.articles-pagination nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.articles-pagination a,
.articles-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid var(--paper-3);
    background: #fff;
    color: var(--ink-soft);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.articles-pagination a:hover {
    border-color: var(--green);
    color: var(--green-dark);
}

.articles-pagination span[aria-current="page"] {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.article-lead {
    font-size: 1.2rem;
    color: var(--ink-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--ink-muted);
    margin-bottom: 24px;
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--ink-soft);
}

.article-content h2,
.article-content h3 {
    margin: 1.6em 0 0.5em;
    color: var(--ink);
}

.article-content blockquote {
    margin: 1.5em 0;
    padding: 20px 24px;
    border-inline-start: 4px solid var(--green);
    background: var(--green-light);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--ink-soft);
}

.article-content ul,
.article-content ol {
    margin: 1em 0;
    padding-inline-start: 1.4em;
}

.article-content li {
    margin-bottom: 0.5em;
}

.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }

:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
}

.btn:focus-visible,
.site-nav-link:focus-visible,
.site-menu-btn:focus-visible,
.vitals-tab:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.text-muted { color: var(--ink-muted); }

.btn-register {
    font-family: var(--font-body);
}

.related-articles {
    margin-top: var(--section-py);
    padding-top: 48px;
    border-top: 1px solid var(--paper-3);
}

.related-articles h3 {
    font-size: 1.35rem;
    margin-bottom: 24px;
}

.services-list {
    display: grid;
    gap: 20px;
}

.service-card {
    display: grid;
    gap: 20px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--paper-3);
    border-radius: var(--radius);
    transition: box-shadow 0.3s var(--ease);
}

.service-card:hover {
    box-shadow: var(--shadow);
}

@media (min-width: 768px) {
    .service-card {
        grid-template-columns: 200px 1fr;
        align-items: center;
    }
}

.service-card-img {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media print {
    .site-header,
    .site-menu-overlay,
    .hero-scroll-hint,
    .marquee-strip,
    .site-footer,
    .btn,
    .home-flash-toast {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 12pt;
    }

    .hero-cinema {
        min-height: auto;
        page-break-after: always;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.85em;
        color: #666;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ─── 25. prefers-reduced-motion ─── */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-line,
    .hero-cinema-badge,
    .hero-cinema-lead,
    .hero-cinema-actions,
    .hero-cinema-stats,
    .hero-organ-chips {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .marquee-track {
        animation: none;
    }

    .trust-item {
        animation: none;
    }

    .hero-video-spotlight,
    .hero-video-spotlight-beam,
    .hero-video-frame-glow,
    .site-logo-spotlight,
    .site-logo-spotlight-beam {
        animation: none;
    }

    .hero-orb,
    .hero-scroll-line,
    .hero-mesh,
    .hero-light-ray,
    .hero-particle {
        animation: none;
    }
}
