:root {
    --forest-1000: #041914;
    --forest-950: #062019;
    --forest-900: #082a22;
    --forest-800: #103b30;
    --forest-700: #16533f;
    --emerald: #2e8f69;
    --emerald-light: #82c6a1;
    --champagne: #e5c689;
    --champagne-light: #f3ddb1;
    --cream: #f5f2e9;
    --cream-dark: #ece7dc;
    --white: #ffffff;
    --ink: #17332a;
    --muted: #697770;
    --line: rgba(20, 58, 47, 0.14);
    --font-display: "Manrope", sans-serif;
    --font-body: "DM Sans", sans-serif;
    --font-accent: "Playfair Display", Georgia, serif;
    --shadow-sm: 0 14px 35px rgba(9, 37, 29, 0.08);
    --shadow-lg: 0 30px 70px rgba(6, 31, 25, 0.18);
    --radius: 24px;
    --header-height: 86px;
    --ticker-height: 42px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--cream); font-family: var(--font-body); line-height: 1.6; }
body.menu-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, blockquote, dl, dd { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { position: relative; padding: 120px 0; }
.section-dark { color: var(--white); background: var(--forest-950); }
.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 15px; border-radius: 8px; color: var(--forest-950); background: var(--champagne); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--champagne); outline-offset: 4px; }

/* Navigation */
.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: var(--header-height); border-bottom: 1px solid rgba(229,198,137,.12); color: var(--white); background: rgba(4,25,20,.94); box-shadow: 0 14px 35px rgba(0,0,0,.15); backdrop-filter: blur(18px); transition: height .35s, background .35s, box-shadow .35s, backdrop-filter .35s; }
.site-header.scrolled { height: 72px; border-bottom: 1px solid rgba(229,198,137,.12); background: rgba(4,25,20,.9); box-shadow: 0 14px 35px rgba(0,0,0,.15); backdrop-filter: blur(18px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark { position: relative; display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid rgba(229,198,137,.66); border-radius: 50%; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; width: 12px; height: 17px; border: 1px solid var(--champagne); border-radius: 100% 0 100% 0; }
.brand-mark::before { left: 9px; transform: rotate(-32deg); }
.brand-mark::after { right: 9px; transform: scaleX(-1) rotate(-32deg); }
.brand-mark i { width: 5px; height: 5px; border-radius: 50%; background: var(--champagne); }
.brand-copy strong, .brand-copy small { display: block; }
.brand-copy strong { font: 700 12px/1.2 var(--font-display); letter-spacing: .17em; }
.brand-copy small { margin-top: 4px; color: rgba(255,255,255,.76); font-size: 9px; font-weight: 600; line-height: 1.2; letter-spacing: .045em; white-space: nowrap; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(15px, 1.55vw, 25px); }
.desktop-nav a { position: relative; padding: 12px 0; color: rgba(255,255,255,.62); font-size: 11px; font-weight: 600; transition: color .25s; }
.desktop-nav a::after { content: ""; position: absolute; right: 50%; bottom: 5px; left: 50%; height: 1px; background: var(--champagne); transition: right .25s, left .25s; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--white); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; left: 0; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; width: 45px; height: 45px; padding: 12px 9px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(255,255,255,.04); cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .3s, opacity .3s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 99; top: var(--header-height); right: 0; bottom: 0; left: 0; display: grid; align-content: start; grid-template-rows: max-content max-content; overflow-y: auto; overscroll-behavior: contain; padding: clamp(20px, 4vh, 38px) max(24px, 7vw) calc(32px + env(safe-area-inset-bottom)); visibility: hidden; opacity: 0; color: var(--white); background: radial-gradient(circle at 80% 15%, #1c5a46, var(--forest-1000) 58%); transform: translateY(-18px); transition: opacity .35s, transform .35s, visibility .35s; }
.mobile-menu.open { visibility: visible; opacity: 1; transform: translateY(0); }
.site-header.scrolled + .mobile-menu { top: 72px; }
.mobile-menu nav { width: min(100%, 720px); margin: 0 auto; border-top: 1px solid rgba(255,255,255,.12); }
.mobile-menu nav a { display: flex; align-items: center; justify-content: space-between; min-height: 50px; padding: 11px 4px; border-bottom: 1px solid rgba(255,255,255,.12); font: 600 clamp(1.05rem, 3vw, 1.45rem)/1.2 var(--font-display); }
.mobile-menu nav a span:last-child { color: var(--champagne); font-size: 15px; }
.mobile-menu-footer { display: flex; align-items: center; justify-content: space-between; width: min(100%, 720px); gap: 20px; margin: 24px auto 0; }
.mobile-menu-footer p { margin: 0; color: rgba(255,255,255,.56); }

/* Buttons and headings */
.button { display: inline-flex; align-items: center; justify-content: center; gap: 11px; min-height: 50px; padding: 0 23px; border: 1px solid transparent; border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: transform .25s, box-shadow .25s, background .25s, border-color .25s; }
.button > i { font-size: 1.55em; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 17px; font-size: 9px; }
.button-large { min-height: 57px; padding-inline: 27px; }
.button-xl { min-height: 64px; padding-inline: 32px; }
.button-primary { color: var(--forest-1000); background: linear-gradient(135deg, var(--champagne-light), var(--champagne)); box-shadow: 0 15px 35px rgba(229,198,137,.19); }
.button-primary:hover { box-shadow: 0 19px 42px rgba(0,0,0,.24); }
.button-outline { border-color: rgba(229,198,137,.55); color: var(--champagne-light); background: rgba(255,255,255,.03); }
.button-glass { border-color: rgba(255,255,255,.2); color: var(--white); background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.button-dark { color: var(--white); background: var(--forest-900); box-shadow: var(--shadow-sm); }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 11px; margin-bottom: 20px; color: #947131; font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow { color: var(--champagne); }
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
.section-heading { margin-bottom: 54px; }
.section-heading h2, .about-copy h2, .faq-intro h2, .social-inner h2 { margin-bottom: 18px; color: var(--forest-900); font-size: clamp(2.35rem, 4.2vw, 4.35rem); line-height: 1.06; letter-spacing: -.055em; }
h1 em, h2 em { color: #a47f38; font-family: var(--font-accent); font-weight: 500; }
.section-heading > p:last-child { max-width: 620px; margin-bottom: 0; color: var(--muted); font-size: 1.03rem; }
.section-heading.centered { max-width: 730px; margin-right: auto; margin-left: auto; text-align: center; }
.section-heading.centered .section-kicker { justify-content: center; }
.section-heading.centered > p:last-child { margin-inline: auto; }
.section-heading-split { display: grid; grid-template-columns: 1.2fr .7fr; align-items: end; gap: 80px; }
.section-heading-split h2 { margin-bottom: 0; }
.section-heading.light h2, .section-heading.light > p:last-child { color: var(--white); }
.section-heading.light > p:last-child { color: rgba(255,255,255,.57); }
.section-heading.light .section-kicker { color: var(--champagne); }
.section-heading.light h2 em { color: var(--champagne); }

/* Hero */
main { padding-top: var(--header-height); }
.hero { position: relative; display: grid; min-height: calc(100svh - var(--header-height) - var(--ticker-height)); overflow: hidden; scroll-margin-top: calc(var(--header-height) + var(--ticker-height)); isolation: isolate; }
.hero-media, .hero-overlay, .hero-grain { position: absolute; inset: 0; }
.hero-media { z-index: -3; background: var(--forest-1000); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 59% 50%; }
.hero-overlay { z-index: -2; background: linear-gradient(90deg, rgba(3,20,15,.98) 0%, rgba(3,22,16,.94) 33%, rgba(5,27,21,.52) 62%, rgba(5,22,17,.2) 100%), linear-gradient(180deg, rgba(3,20,15,.18), rgba(3,20,15,.35)); }
.hero-grain { z-index: -1; opacity: .06; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero-inner { position: relative; display: flex; align-items: center; min-height: calc(100svh - var(--header-height) - var(--ticker-height)); padding-top: 125px; padding-bottom: 96px; }
.hero-copy { width: min(690px, 66%); }
.hero h1 { max-width: 680px; margin-bottom: 26px; font-size: clamp(3rem, 5.35vw, 5.35rem); line-height: .99; letter-spacing: -.065em; }
.hero h1 em { display: inline; color: var(--champagne); }
.hero-lead { max-width: 610px; margin-bottom: 33px; color: rgba(255,255,255,.68); font-size: clamp(1rem, 1.25vw, 1.13rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-socials { display: flex; gap: 9px; margin-top: 22px; }
.hero-socials a, .hero-socials .social-icon-disabled { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: rgba(255,255,255,.72); background: rgba(255,255,255,.05); font-size: 17px; transition: color .25s, background .25s, transform .25s; }
.hero-socials a:hover { color: var(--forest-900); background: var(--champagne); transform: translateY(-2px); }
.hero-socials .social-icon-disabled { opacity: .42; cursor: not-allowed; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 29px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.62); font-size: 12px; }
.hero-badges span { margin-right: 5px; color: var(--champagne); }
.hero-card { position: absolute; right: 0; bottom: 12%; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; width: 315px; gap: 13px; padding: 17px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(5,28,21,.63); box-shadow: 0 20px 50px rgba(0,0,0,.25); backdrop-filter: blur(16px); }
.hero-card-icon { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(229,198,137,.4); border-radius: 50%; color: var(--champagne); }
.hero-card small, .hero-card strong { display: block; }
.hero-card small { color: rgba(255,255,255,.48); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.hero-card strong { margin-top: 3px; font-size: 11px; line-height: 1.4; }
.hero-card > a { display: grid; place-items: center; width: 33px; height: 33px; border-radius: 50%; color: var(--forest-900); background: var(--champagne); }
.scroll-indicator { position: absolute; bottom: 21px; left: 50%; display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,.42); transform: translateX(-50%); }
.scroll-indicator span { width: 1px; height: 31px; background: linear-gradient(var(--champagne), transparent); }
.scroll-indicator small { font-size: 8px; letter-spacing: .22em; text-transform: uppercase; }
.trust-strip { position: relative; z-index: 10; min-height: var(--ticker-height); overflow: hidden; border-bottom: 1px solid var(--line); background: var(--champagne); }
.trust-track { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 4vw, 60px); min-width: max-content; width: 100%; min-height: var(--ticker-height); padding: 0 24px; color: var(--forest-900); }
.trust-track span { font: 700 10px/1 var(--font-display); letter-spacing: .15em; text-transform: uppercase; }
.trust-track i { font-style: normal; font-size: 8px; }

/* Benefits and services */
.why-section { background: var(--cream); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.benefit-card { position: relative; min-height: 280px; padding: 37px 34px; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .35s, background .35s, transform .35s; }
.benefit-card::before { content: ""; position: absolute; right: -60px; bottom: -60px; width: 140px; height: 140px; border: 1px solid rgba(229,198,137,.18); border-radius: 50%; transition: transform .45s; }
.benefit-card:hover { z-index: 1; color: var(--white); background: var(--forest-900); transform: translateY(-5px); }
.benefit-card:hover::before { transform: scale(1.3); }
.benefit-number { position: absolute; top: 25px; right: 27px; color: rgba(19,55,44,.27); font-size: 10px; letter-spacing: .15em; }
.benefit-card:hover .benefit-number { color: rgba(255,255,255,.35); }
.benefit-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 31px; border: 1px solid rgba(164,127,56,.38); border-radius: 50%; color: #987333; font-size: 20px; }
.benefit-card h3 { margin-bottom: 10px; font-size: 1.08rem; }
.benefit-card p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.benefit-card:hover p { color: rgba(255,255,255,.62); }
.services-section { background: var(--cream-dark); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 345px; overflow: hidden; border: 1px solid rgba(16,59,48,.1); border-radius: var(--radius); background: rgba(255,255,255,.68); box-shadow: var(--shadow-sm); transition: transform .35s, box-shadow .35s; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-image { position: relative; overflow: hidden; min-height: 100%; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.service-card:hover .service-image img { transform: scale(1.06); }
.service-image > span { position: absolute; top: 18px; left: 18px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: var(--white); background: rgba(5,28,21,.5); font-size: 9px; backdrop-filter: blur(10px); }
.service-content { display: flex; flex-direction: column; padding: 31px 28px; }
.service-content h3 { margin-bottom: 11px; font-size: 1.32rem; letter-spacing: -.03em; }
.service-content > p { color: var(--muted); font-size: .88rem; }
.service-meta { display: grid; grid-template-columns: 1fr 1.2fr; gap: 10px; margin: auto 0 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.service-meta div { min-width: 0; }
.service-meta dt { color: #8a9891; font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.service-meta dd { margin: 4px 0 0; font-size: .8rem; font-weight: 700; }
.service-link, .text-link, .footer-wa { display: flex; align-items: center; justify-content: space-between; color: var(--forest-800); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.service-link span, .text-link span, .footer-wa span { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 50%; color: var(--cream); background: var(--forest-900); transition: transform .3s; }
.service-link:hover span, .text-link:hover span, .footer-wa:hover span { transform: rotate(45deg); }
.config-note { display: flex; align-items: center; justify-content: center; gap: 12px; max-width: 800px; margin: 32px auto 0; padding: 15px 19px; border: 1px dashed rgba(16,59,48,.22); border-radius: 14px; color: var(--muted); background: rgba(255,255,255,.45); }
.config-note > span { display: grid; flex: 0 0 auto; place-items: center; width: 25px; height: 25px; border: 1px solid currentColor; border-radius: 50%; font-size: 11px; font-weight: 700; }
.config-note p { margin: 0; font-size: .82rem; }
code { padding: .1em .4em; border-radius: 4px; color: var(--forest-700); background: rgba(16,59,48,.08); font-size: .9em; }

/* Process */
.process-section { overflow: hidden; background: radial-gradient(circle at 50% -10%, #194e3d, var(--forest-950) 45%, var(--forest-1000)); isolation: isolate; }
.process-orb { position: absolute; z-index: -1; border: 1px solid rgba(229,198,137,.08); border-radius: 50%; }
.process-orb-one { top: -240px; left: -160px; width: 550px; height: 550px; }
.process-orb-two { right: -260px; bottom: -300px; width: 700px; height: 700px; }
.process-list { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin: 70px 0 0; padding: 0; list-style: none; }
.process-list::before { content: ""; position: absolute; top: 28px; right: 10%; left: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(229,198,137,.45), transparent); }
.process-item { position: relative; padding: 0 20px; text-align: center; }
.step-marker { position: relative; z-index: 1; display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 27px; border: 1px solid rgba(229,198,137,.5); border-radius: 50%; background: var(--forest-950); box-shadow: 0 0 0 8px rgba(229,198,137,.04); }
.step-marker span { color: var(--champagne); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.process-item h3 { margin-bottom: 9px; color: var(--white); font-size: 1rem; }
.process-item p { margin-bottom: 0; color: rgba(255,255,255,.5); font-size: .82rem; line-height: 1.7; }
.process-action { margin-top: 50px; text-align: center; }

/* About and gallery */
.about-section { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(60px, 8vw, 110px); }
.about-visual { position: relative; padding: 0 34px 34px 0; }
.about-visual::before { content: ""; position: absolute; right: 0; bottom: 0; width: 82%; height: 77%; border-radius: 14px; background: var(--forest-900); }
.about-visual > img { position: relative; z-index: 1; width: 100%; min-height: 590px; border-radius: 46% 46% 14px 14px; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-seal { position: absolute; z-index: 2; right: -18px; bottom: 72px; display: grid; place-items: center; width: 130px; height: 130px; border: 1px solid rgba(229,198,137,.58); border-radius: 50%; color: var(--champagne); background: var(--forest-950); text-align: center; }
.about-seal::before { content: ""; position: absolute; inset: 7px; border: 1px dashed rgba(229,198,137,.35); border-radius: inherit; }
.about-seal span { font-family: var(--font-accent); font-size: 1.8rem; }
.about-seal small { margin-top: -24px; font-size: 7px; letter-spacing: .14em; line-height: 1.5; text-transform: uppercase; }
.vertical-copy { position: absolute; top: 50%; left: -93px; margin: 0; color: #997536; font-size: 8px; letter-spacing: .17em; text-transform: uppercase; transform: rotate(-90deg); }
.about-copy .lead { color: var(--forest-800); font-size: 1.05rem; font-weight: 600; }
.about-copy > p:not(.section-kicker) { color: var(--muted); }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 33px 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.about-values div { padding: 17px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-values strong, .about-values span { display: block; }
.about-values strong { color: var(--forest-900); font-size: .9rem; }
.about-values span { margin-top: 3px; color: #84918b; font-size: .72rem; }
.text-link { gap: 20px; justify-content: flex-start; width: max-content; }
.gallery-section { background: #eeeadf; }
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 32px; }
.gallery-filters button { min-height: 39px; padding: 0 17px; border: 1px solid rgba(16,59,48,.15); border-radius: 999px; color: var(--muted); background: transparent; font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; transition: color .25s, background .25s; }
.gallery-filters button.active, .gallery-filters button:hover { color: var(--white); background: var(--forest-900); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery-item { position: relative; grid-column: span 4; grid-row: span 1; overflow: hidden; padding: 0; border: 0; border-radius: 18px; background: var(--forest-900); cursor: zoom-in; }
.gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 8; grid-row: span 2; }
.gallery-item:nth-child(2), .gallery-item:nth-child(3), .gallery-item:nth-child(4), .gallery-item:nth-child(5) { grid-row: span 1; }
.gallery-item[hidden] { display: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s, opacity .35s; }
.gallery-item:hover img, .gallery-item:focus-visible img { opacity: .7; transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: auto 0 0; display: grid; grid-template-columns: 1fr auto; padding: 45px 20px 17px; color: var(--white); text-align: left; background: linear-gradient(transparent, rgba(3,22,17,.85)); }
.gallery-overlay small { grid-column: 1; color: var(--champagne); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.gallery-overlay strong { grid-column: 1; margin-top: 3px; font: 600 .92rem/1.3 var(--font-display); }
.gallery-overlay i { grid-row: 1 / 3; grid-column: 2; align-self: end; display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-style: normal; }

/* Testimonials and video */
.testimonials-section { overflow: hidden; background: var(--forest-900); }
.testimonial-viewport { position: relative; }
.testimonial-viewport::after { content: ""; position: absolute; z-index: 2; top: 0; right: 0; bottom: 10px; width: 110px; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(8,42,34,.94)); transition: opacity .25s; }
.testimonial-viewport.is-end::after { opacity: 0; }
.testimonial-track { display: flex; gap: 20px; overflow-x: auto; overscroll-behavior-inline: contain; padding: 2px 0 10px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card { position: relative; display: flex; flex: 0 0 calc((100% - 40px) / 3.18); flex-direction: column; min-height: 340px; padding: 31px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.045); scroll-snap-align: start; }
.testimonial-card::after { content: ""; position: absolute; right: -55px; bottom: -70px; width: 150px; height: 150px; border: 1px solid rgba(229,198,137,.09); border-radius: 50%; }
.quote-mark { position: absolute; top: 9px; right: 24px; color: rgba(229,198,137,.15); font: 6rem/1 var(--font-accent); }
.stars { position: relative; z-index: 1; margin-bottom: 26px; color: var(--champagne); font-size: 11px; letter-spacing: .15em; }
.testimonial-card blockquote { position: relative; z-index: 1; margin-bottom: 30px; color: rgba(255,255,255,.77); font: 500 1rem/1.8 var(--font-display); }
.testimonial-author { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.avatar { display: grid; place-items: center; width: 45px; height: 45px; border: 1px solid rgba(229,198,137,.4); border-radius: 50%; color: var(--champagne); background: rgba(229,198,137,.08); font-size: 10px; font-weight: 700; }
.testimonial-author strong, .testimonial-author small { display: block; }
.testimonial-author strong { font-size: .83rem; }
.testimonial-author small { margin-top: 2px; color: rgba(255,255,255,.38); font-size: .68rem; }
.testimonial-edge-next { position: absolute; z-index: 3; top: 50%; right: 12px; display: flex; align-items: center; gap: 10px; min-height: 48px; padding: 6px 7px 6px 16px; border: 1px solid rgba(229,198,137,.55); border-radius: 999px; color: var(--forest-950); background: var(--champagne); box-shadow: 0 14px 35px rgba(0,0,0,.28); cursor: pointer; transform: translateY(-50%); transition: opacity .25s, transform .25s, visibility .25s; }
.testimonial-edge-next span { font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.testimonial-edge-next i { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 50%; color: var(--white); background: var(--forest-900); font: normal 18px/1 var(--font-body); }
.testimonial-edge-next:hover { transform: translateY(-50%) translateX(3px); }
.testimonial-edge-next:disabled { visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(-50%) translateX(15px); }
.carousel-controls { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 22px; }
.carousel-controls > div { display: flex; gap: 8px; }
.testimonial-progress { color: rgba(255,255,255,.48); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.carousel-controls button { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; color: var(--white); background: transparent; cursor: pointer; }
.carousel-controls button:disabled { opacity: .28; cursor: not-allowed; }
.video-section { background: var(--cream); }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.video-grid.single { grid-template-columns: minmax(0, 820px); justify-content: center; }
.video-card { overflow: hidden; border-radius: 20px; background: var(--white); box-shadow: var(--shadow-sm); }
.video-card h3 { margin: 0; padding: 21px 23px 24px; font-size: 1rem; }
.video-poster { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; padding: 0; border: 0; background: var(--forest-900); cursor: pointer; }
.video-poster img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, opacity .3s; }
.video-poster:hover img { opacity: .72; transform: scale(1.04); }
.play-button { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 67px; height: 67px; padding-left: 4px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: var(--forest-900); background: var(--champagne); box-shadow: 0 15px 30px rgba(0,0,0,.25); transform: translate(-50%, -50%); }
.video-poster iframe { width: 100%; height: 100%; border: 0; }
.video-placeholder { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; max-width: 900px; margin: auto; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.65); box-shadow: var(--shadow-sm); }
.placeholder-art { position: relative; display: grid; place-items: center; min-height: 330px; overflow: hidden; color: var(--champagne); background: radial-gradient(circle, #1b654c, var(--forest-950)); }
.placeholder-art span { position: relative; z-index: 2; display: grid; place-items: center; width: 76px; height: 76px; padding-left: 5px; border: 1px solid rgba(229,198,137,.55); border-radius: 50%; background: rgba(4,25,20,.5); }
.placeholder-art i { position: absolute; width: 260px; height: 90px; border: 1px solid rgba(229,198,137,.11); border-radius: 50%; transform: rotate(20deg); }
.placeholder-art i:nth-of-type(2) { transform: rotate(80deg); }
.placeholder-art i:nth-of-type(3) { transform: rotate(140deg); }
.video-placeholder > div:last-child { padding: 40px; }
.video-placeholder small { color: #9a7838; font-size: 9px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.video-placeholder h3 { margin: 9px 0 12px; font-size: 1.65rem; }
.video-placeholder p { margin: 0; color: var(--muted); font-size: .9rem; }

/* Social, FAQ and CTA */
.social-section { padding: 75px 0; color: var(--white); background: var(--forest-800); }
.social-inner { display: grid; grid-template-columns: .65fr 1.35fr; align-items: end; gap: 70px; }
.social-inner .section-kicker { color: var(--champagne); }
.social-inner h2 { margin: 0; color: var(--white); }
.social-inner h2 em { color: var(--champagne); }
.social-links-large { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
.social-links-large > a, .social-links-large > .social-link-disabled { display: flex; align-items: center; justify-content: space-between; min-height: 70px; padding: 0 20px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); transition: color .25s, background .25s; }
.social-links-large a:hover { color: var(--forest-900); background: var(--champagne); }
.social-links-large .social-link-disabled { color: rgba(255,255,255,.38); background: rgba(255,255,255,.025); cursor: not-allowed; }
.social-links-large .social-link-disabled small { display: block; margin-top: 6px; color: rgba(255,255,255,.32); font: 500 7px/1 var(--font-body); letter-spacing: .08em; text-transform: uppercase; }
.social-links-large span { font: 600 .9rem/1 var(--font-display); }
.social-links-large i { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid currentColor; border-radius: 50%; font-size: 17px; font-style: normal; }
.faq-section { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: clamp(65px, 9vw, 130px); }
.faq-intro { position: sticky; top: 110px; }
.faq-intro > p:not(.section-kicker) { margin-bottom: 28px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-item h3 button { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 24px 0; border: 0; color: var(--forest-900); background: none; font-size: .98rem; font-weight: 700; text-align: left; cursor: pointer; }
.faq-item h3 button span { padding-right: 22px; }
.faq-item h3 i { position: relative; flex: 0 0 auto; width: 22px; height: 22px; border: 1px solid rgba(16,59,48,.25); border-radius: 50%; }
.faq-item h3 i::before, .faq-item h3 i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 8px; height: 1px; background: var(--forest-900); transform: translate(-50%, -50%); }
.faq-item h3 i::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .25s; }
.faq-item.open h3 i::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s; }
.faq-answer > p { overflow: hidden; margin: 0; color: var(--muted); font-size: .9rem; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding: 0 45px 23px 0; }
.cta-section { position: relative; display: grid; min-height: 620px; overflow: hidden; text-align: center; isolation: isolate; }
.cta-image { position: absolute; z-index: -2; inset: 0; background: url("../images/hero/hero-terapis-indonesia.webp") center 61% / cover no-repeat; }
.cta-section::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(rgba(3,24,18,.83), rgba(3,24,18,.91)); }
.cta-glow { position: absolute; top: 50%; left: 50%; width: 700px; height: 700px; border: 1px solid rgba(229,198,137,.12); border-radius: 50%; transform: translate(-50%, -50%); }
.cta-glow::before, .cta-glow::after { content: ""; position: absolute; border: 1px solid rgba(229,198,137,.08); border-radius: 50%; }
.cta-glow::before { inset: 60px; }
.cta-glow::after { inset: 130px; }
.cta-inner { display: grid; place-content: center; justify-items: center; padding: 105px 0; }
.cta-inner .section-kicker { color: var(--champagne); }
.cta-inner h2 { max-width: 920px; margin-bottom: 20px; font-size: clamp(2.6rem, 5vw, 5rem); line-height: 1.08; letter-spacing: -.06em; }
.cta-inner h2 em { color: var(--champagne); }
.cta-inner > p:not(.section-kicker) { color: rgba(255,255,255,.65); }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 26px; }
.social-icon-button { display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--white); background: rgba(255,255,255,.06); font-size: 21px; backdrop-filter: blur(10px); transition: color .25s, background .25s, transform .25s; }
.social-icon-button:hover { color: var(--forest-900); background: var(--champagne); transform: translateY(-2px); }
.social-icon-button.is-disabled { opacity: .38; cursor: not-allowed; }

/* Footer and floating action */
.site-footer { padding: 80px 0 0; color: var(--white); background: var(--forest-1000); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .8fr; gap: clamp(45px, 7vw, 100px); padding-bottom: 65px; }
.footer-brand > p { max-width: 400px; margin: 24px 0; color: rgba(255,255,255,.5); font-size: .87rem; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-socials a, .footer-socials .social-icon-disabled { display: grid; place-items: center; width: 41px; height: 41px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: rgba(255,255,255,.72); font-size: 16px; transition: color .25s, background .25s; }
.footer-socials a:hover { color: var(--forest-900); background: var(--champagne); }
.footer-socials .social-icon-disabled { opacity: .38; cursor: not-allowed; }
.footer-links h2, .footer-contact h2 { margin-bottom: 22px; color: var(--champagne); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-links > div { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 20px; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .82rem; transition: color .2s; }
.footer-links a:hover { color: var(--champagne); }
.footer-contact p { color: rgba(255,255,255,.52); font-size: .82rem; }
.footer-contact code { color: var(--champagne); background: rgba(255,255,255,.08); }
.footer-phone { display: inline-block; margin: -5px 0 18px; color: var(--white); font-size: 1rem; font-weight: 700; letter-spacing: .03em; transition: color .2s; }
.footer-phone:hover { color: var(--champagne); }
.footer-wa { width: 100%; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.72); }
.footer-wa span { color: var(--forest-900); background: var(--champagne); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 23px 0; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); font-size: .68rem; letter-spacing: .04em; }
.footer-bottom p { margin: 0; }
.floating-whatsapp { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 10px; min-height: 56px; padding: 6px 16px 6px 7px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; color: var(--white); background: #166d4e; box-shadow: 0 17px 40px rgba(5,40,29,.3); }
.floating-whatsapp::before { content: ""; position: absolute; inset: 0; border: 1px solid rgba(46,182,125,.6); border-radius: inherit; animation: waPulse 2.3s infinite; }
.wa-icon { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 50%; color: #156344; background: var(--white); font-size: 9px; font-weight: 800; }
.wa-icon i { font-size: 22px; }
.wa-label small, .wa-label strong { display: block; }
.wa-label small { color: rgba(255,255,255,.65); font-size: 7px; letter-spacing: .13em; text-transform: uppercase; }
.wa-label strong { margin-top: 2px; font-size: .75rem; }
@keyframes waPulse { 0%, 100% { opacity: .7; transform: scale(1); } 60% { opacity: 0; transform: scale(1.17); } }
.mobile-app-nav { display: none; }

/* Lightbox and animation */
.lightbox { position: fixed; z-index: 1000; inset: 0; display: grid; grid-template-columns: 70px minmax(0, 1fr) 70px; align-items: center; padding: 60px 24px 24px; visibility: hidden; opacity: 0; color: var(--white); background: rgba(2,15,12,.96); transition: opacity .3s, visibility .3s; }
.lightbox.open { visibility: visible; opacity: 1; }
.lightbox figure { display: grid; place-items: center; max-width: 1100px; max-height: calc(100vh - 90px); margin: auto; }
.lightbox img { max-height: calc(100vh - 150px); border-radius: 12px; box-shadow: 0 30px 70px rgba(0,0,0,.35); object-fit: contain; }
.lightbox figcaption { margin-top: 15px; color: rgba(255,255,255,.72); font-size: .85rem; }
.lightbox-close, .lightbox-nav { border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: var(--white); background: rgba(255,255,255,.05); cursor: pointer; }
.lightbox-close { position: absolute; top: 17px; right: 20px; width: 43px; height: 43px; font-size: 24px; }
.lightbox-nav { width: 48px; height: 48px; font-size: 30px; }
.reveal { opacity: 0; transform: translateY(25px); transition: opacity .75s var(--delay, 0ms), transform .75s var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
    .desktop-nav { display: none; }
    .menu-toggle { display: block; }
    .hero-copy { width: min(720px, 72%); }
    .hero-card { right: 20px; bottom: 10%; }
    .service-card { grid-template-columns: 1fr; }
    .service-image { min-height: 265px; }
    .process-item { padding-inline: 10px; }
}

@media (max-width: 900px) {
    .section { padding: 95px 0; }
    .section-heading-split { grid-template-columns: 1fr; gap: 20px; }
    .section-heading-split > p:last-child { max-width: 620px; }
    .hero-media img { object-position: 68% 50%; }
    .hero-overlay { background: linear-gradient(90deg, rgba(3,20,15,.97), rgba(3,22,16,.82) 58%, rgba(3,22,16,.35)); }
    .hero-copy { width: min(680px, 79%); }
    .hero-card { display: none; }
    .benefit-grid { grid-template-columns: repeat(2, 1fr); }
    .process-list { grid-template-columns: repeat(2, 1fr); gap: 38px 10px; }
    .process-list::before { display: none; }
    .process-item:last-child { grid-column: 1 / -1; max-width: 300px; margin: auto; }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { width: min(600px, 90%); margin: auto; }
    .gallery-grid { grid-auto-rows: 190px; }
    .gallery-item { grid-column: span 6; }
    .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 6; grid-row: span 2; }
    .testimonial-card { flex-basis: calc((100% - 20px) / 2.18); }
    .social-inner { grid-template-columns: 1fr; gap: 35px; }
    .faq-grid { grid-template-columns: 1fr; gap: 55px; }
    .faq-intro { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
    :root { --header-height: 68px; --ticker-height: 38px; }
    html { scroll-padding-top: 76px; }
    body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); background: var(--forest-1000); }
    main { overflow: clip; border-radius: 0 0 28px 28px; background: var(--cream); }
    .container { width: min(100% - 28px, 1180px); }
    .section { padding: 78px 0; }
    .site-header, .site-header.scrolled { height: 68px; border-bottom: 1px solid rgba(229,198,137,.15); background: rgba(4,25,20,.94); box-shadow: 0 8px 25px rgba(0,0,0,.16); backdrop-filter: blur(18px); }
    .nav-actions .button-small { display: none; }
    .brand-copy strong { font-size: 11px; }
    .brand-copy small { display: block; margin-top: 3px; font-size: 8.5px; letter-spacing: .035em; }
    .brand-mark { width: 37px; height: 37px; }
    .menu-toggle { width: 41px; height: 41px; }
    .mobile-menu, .site-header.scrolled + .mobile-menu { top: 68px; padding: 20px 24px calc(30px + env(safe-area-inset-bottom)); }
    .mobile-menu-footer { align-items: stretch; flex-direction: column; }
    .hero { min-height: calc(100svh - var(--header-height) - var(--ticker-height)); border-radius: 0 0 30px 30px; }
    .hero-inner { align-items: flex-end; min-height: calc(100svh - var(--header-height) - var(--ticker-height)); padding-top: 60px; padding-bottom: 56px; }
    .hero-media img { object-position: 68% center; }
    .hero-overlay { background: linear-gradient(180deg, rgba(3,20,15,.12) 0%, rgba(3,20,15,.38) 31%, rgba(3,20,15,.9) 62%, rgba(3,20,15,.99) 86%); }
    .hero-copy { width: 100%; }
    .eyebrow { margin-bottom: 13px; font-size: 8px; }
    .hero h1 { max-width: 520px; margin-bottom: 16px; font-size: clamp(2.42rem, 11.7vw, 3.65rem); }
    .hero-lead { display: -webkit-box; margin-bottom: 22px; overflow: hidden; font-size: .9rem; line-height: 1.6; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
    .hero-actions { display: grid; }
    .hero-actions .button { width: 100%; }
    .hero-socials { position: absolute; top: 89px; right: 0; flex-direction: column; margin: 0; }
    .hero-socials a, .hero-socials .social-icon-disabled { width: 43px; height: 43px; background: rgba(4,25,20,.58); backdrop-filter: blur(12px); }
    .hero-badges { display: flex; flex-wrap: nowrap; gap: 8px; margin-top: 20px; overflow-x: auto; scrollbar-width: none; }
    .hero-badges::-webkit-scrollbar { display: none; }
    .hero-badges li { flex: 0 0 auto; padding: 7px 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(255,255,255,.05); font-size: 9px; }
    .scroll-indicator { display: none; }
    .trust-strip { margin-top: 0; }
    .trust-track { justify-content: flex-start; padding-block: 0; animation: trustScroll 18s linear infinite; }
    @keyframes trustScroll { to { transform: translateX(-45%); } }
    .section-heading { margin-bottom: 38px; }
    .section-heading h2, .about-copy h2, .faq-intro h2, .social-inner h2 { font-size: clamp(2.1rem, 10vw, 3.1rem); }
    .why-section, .services-section, .gallery-section, .faq-section { border-radius: 28px; }
    .benefit-grid { display: flex; gap: 13px; margin-right: -14px; padding: 2px 14px 18px 1px; overflow-x: auto; border: 0; scroll-padding-left: 1px; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .benefit-grid::-webkit-scrollbar, .services-grid::-webkit-scrollbar, .gallery-grid::-webkit-scrollbar { display: none; }
    .benefit-card { flex: 0 0 78%; min-height: 250px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.58); box-shadow: var(--shadow-sm); scroll-snap-align: start; }
    .services-grid { display: flex; gap: 14px; margin-right: -14px; padding: 3px 14px 20px 1px; overflow-x: auto; scroll-padding-left: 1px; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .service-card { display: block; flex: 0 0 87%; min-height: 0; scroll-snap-align: start; }
    .service-image { min-height: 250px; aspect-ratio: 4 / 3; }
    .service-content { min-height: 310px; padding: 25px 22px; }
    .service-content h3 { font-size: 1.2rem; }
    .service-content > p { font-size: .84rem; }
    .service-meta { grid-template-columns: 1fr 1.15fr; gap: 8px; }
    .config-note { align-items: flex-start; }
    .process-list { grid-template-columns: 1fr; gap: 35px; }
    .process-item:last-child { grid-column: auto; }
    .about-visual { width: calc(100% - 25px); }
    .about-visual > img { min-height: 450px; }
    .about-seal { right: -15px; width: 105px; height: 105px; }
    .vertical-copy { display: none; }
    .gallery-filters { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
    .gallery-filters::-webkit-scrollbar { display: none; }
    .gallery-filters button { flex: 0 0 auto; }
    .gallery-grid { display: flex; gap: 13px; margin-right: -14px; padding-right: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(6) { flex: 0 0 84%; height: 330px; grid-column: auto; grid-row: auto; scroll-snap-align: start; }
    .testimonial-card { flex-basis: 86%; }
    .testimonial-viewport::after { width: 68px; }
    .testimonial-edge-next { right: 7px; min-height: 45px; padding: 5px; }
    .testimonial-edge-next span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
    .video-grid, .video-placeholder { grid-template-columns: 1fr; }
    .placeholder-art { min-height: 230px; }
    .video-placeholder > div:last-child { padding: 27px; }
    .social-section { padding: 68px 0 74px; border-radius: 28px 28px 0 0; }
    .social-links-large { grid-template-columns: repeat(3, 1fr); border: 0; gap: 9px; }
    .social-links-large > a, .social-links-large > .social-link-disabled { flex-direction: column-reverse; justify-content: center; gap: 7px; min-height: 83px; padding: 10px 4px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.04); }
    .social-links-large span { font-size: 7px; letter-spacing: .04em; }
    .social-links-large i { width: 39px; height: 39px; border: 0; font-size: 22px; }
    .faq-item.open .faq-answer > p { padding-right: 10px; }
    .cta-section { min-height: 580px; }
    .cta-actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
    .cta-actions .button-xl { grid-column: 1 / -1; width: 100%; }
    .cta-actions .social-icon-button { width: 100%; height: 54px; border-radius: 999px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .site-footer { padding-bottom: 25px; }
    .floating-whatsapp { display: none; }
    .wa-icon { width: 42px; height: 42px; }
    .wa-label { display: none; }
    .mobile-app-nav { position: fixed; z-index: 120; right: 10px; bottom: max(8px, env(safe-area-inset-bottom)); left: 10px; display: grid; grid-template-columns: repeat(5, 1fr); min-height: 68px; padding: 7px 6px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; color: rgba(255,255,255,.62); background: rgba(4,25,20,.94); box-shadow: 0 18px 45px rgba(0,0,0,.32); backdrop-filter: blur(20px); transition: opacity .25s, transform .25s, visibility .25s; }
    body.menu-open .mobile-app-nav, body.modal-open .mobile-app-nav { visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(18px); }
    .mobile-app-nav a { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 4px; min-width: 0; min-height: 52px; border-radius: 16px; font-size: 18px; transition: color .2s, background .2s; }
    .mobile-app-nav a span { font-size: 7px; font-weight: 700; letter-spacing: .03em; }
    .mobile-app-nav a.active { color: var(--champagne); background: rgba(229,198,137,.08); }
    .mobile-app-nav .app-booking { position: relative; margin-top: -29px; color: var(--forest-950); }
    .mobile-app-nav .app-booking i { display: grid; place-items: center; width: 53px; height: 53px; border: 5px solid var(--forest-1000); border-radius: 50%; color: var(--forest-950); background: var(--champagne); box-shadow: 0 8px 22px rgba(0,0,0,.3); }
    .mobile-app-nav .app-booking span { margin-top: 2px; color: var(--champagne); }
    .lightbox { grid-template-columns: 40px minmax(0, 1fr) 40px; padding-inline: 8px; }
    .lightbox-nav { width: 37px; height: 37px; }
}

@media (max-width: 1120px) and (max-height: 700px) {
    .mobile-menu { padding-top: 12px; padding-bottom: calc(22px + env(safe-area-inset-bottom)); }
    .mobile-menu nav a { min-height: 42px; padding-block: 8px; font-size: 1rem; }
    .mobile-menu-footer { gap: 12px; margin-top: 16px; }
    .mobile-menu-footer p { font-size: .78rem; }
    .mobile-menu-footer .button { min-height: 46px; }
}

@media (max-width: 470px) {
    .service-card { grid-template-columns: 1fr; }
    .service-image { min-height: 230px; }
    .about-values { grid-template-columns: 1fr; }
    .gallery-grid { grid-auto-rows: 245px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
