:root {
  --ink: #0a202a;
  --ink-2: #14343f;
  --paper: #f5f8f7;
  --white: #fff;
  --mint: #78d3a5;
  --mint-bright: #94e4bb;
  --green: #247d59;
  --gold: #e9b872;
  --coral: #cf735f;
  --ice: #e4edef;
  --line: #d2dddd;
  --muted: #52666d;
  --danger: #9b3d36;
  --shadow: 0 18px 52px rgba(5, 27, 35, .13);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--paper); color: var(--ink); }
body.nav-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #f2bd4f; outline-offset: 3px; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip { position: fixed; top: 10px; left: 10px; z-index: 200; transform: translateY(-150%); padding: 10px 14px; background: var(--white); border-radius: 4px; }
.skip:focus { transform: translateY(0); }
.eyebrow { margin: 0 0 14px; color: var(--green); font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: 0; }
h1 { max-width: 840px; margin-bottom: 22px; font-size: clamp(2.7rem, 6vw, 5.8rem); line-height: .98; font-weight: 780; }
h2 { margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3.65rem); line-height: 1.04; }
h3 { font-size: 1.17rem; line-height: 1.28; }
p { font-size: 1rem; line-height: 1.65; }
.lead { max-width: 700px; color: #d7e2e4; font-size: clamp(1.06rem, 1.7vw, 1.25rem); }
.muted { color: var(--muted); }
.small { font-size: .84rem; }
.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; }

header { position: absolute; inset: 0 0 auto; z-index: 30; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.15); transition: background .25s ease, box-shadow .25s ease, transform .25s ease; }
header.scrolled { position: fixed; background: rgba(7,24,32,.94); border-color: rgba(255,255,255,.08); box-shadow: 0 10px 35px rgba(0,0,0,.16); backdrop-filter: blur(14px); animation: header-in .3s ease both; }
nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 800; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; color: var(--mint); border: 1px solid rgba(255,255,255,.32); border-radius: 6px; }
.brand-mark img { width: 100%; height: 100%; border-radius: 5px; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy small { margin-top: 3px; color: #b7c9cc; font-size: .67rem; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links a { color: #e9f0f0; text-decoration: none; font-size: .92rem; }
.nav-links a:hover { color: var(--mint); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 15px; border: 1px solid rgba(255,255,255,.38); border-radius: 6px; font-weight: 760; }
.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.3); background: transparent; color: var(--white); border-radius: 6px; font-size: 1.25rem; }

.hero { position: relative; min-height: 790px; display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--ink); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; animation: hero-arrive 1.4s cubic-bezier(.2,.7,.2,1) both; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,22,30,.98) 0%, rgba(5,22,30,.89) 45%, rgba(5,22,30,.34) 77%, rgba(5,22,30,.16) 100%); }
.hero-inner { position: relative; z-index: 2; padding-top: 126px; padding-bottom: 82px; }
.hero-copy { width: min(760px, 68%); }
.hero .eyebrow { color: var(--mint); }
.eyebrow-dot { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(233,184,114,.13); vertical-align: 1px; animation: pulse-dot 2.4s ease-in-out infinite; }
.hero h1 span { color: var(--mint-bright); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 19px; border: 1px solid transparent; border-radius: 6px; text-decoration: none; font-weight: 780; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--mint); color: #072018; }
.btn-primary:hover { background: var(--mint-bright); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-secondary { color: var(--white); border-color: rgba(255,255,255,.42); background: rgba(5,22,30,.28); }
.btn-outline { color: var(--ink); border-color: #91a5aa; background: transparent; }
.hero-facts { max-width: 730px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 48px; background: rgba(255,255,255,.18); }
.hero-fact { min-height: 86px; padding: 18px 20px; background: rgba(6,25,33,.74); border-top: 2px solid transparent; backdrop-filter: blur(8px); transition: background .2s ease, border-color .2s ease; }
.hero-fact:hover { background: rgba(12,43,51,.9); border-color: var(--gold); }
.hero-fact strong { display: block; margin-bottom: 5px; font-size: 1rem; }
.hero-fact span { color: #b9cacc; font-size: .86rem; line-height: 1.4; }

.trustbar { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 22px 24px; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; }
.trust-item b { display: block; margin-bottom: 4px; font-size: .93rem; }
.trust-item span { color: var(--muted); font-size: .84rem; line-height: 1.45; }

section { padding: 108px 0; }
section[id] { scroll-margin-top: 74px; }
.section-head { display: grid; grid-template-columns: 1fr .72fr; gap: 60px; align-items: end; margin-bottom: 52px; }
.section-head p { margin-bottom: 0; color: var(--muted); }
.service-tabs { display: inline-flex; gap: 4px; margin-bottom: 28px; padding: 4px; background: #dfe8e8; border-radius: 7px; }
.tab-btn { min-height: 44px; padding: 9px 17px; border: 0; border-radius: 5px; background: transparent; color: var(--muted); font-weight: 760; cursor: pointer; }
.tab-btn[aria-selected="true"] { background: var(--white); color: var(--ink); box-shadow: 0 4px 14px rgba(8,34,42,.09); }
.service-panel[hidden] { display: none; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service { min-height: 276px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.62); transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.service:hover { position: relative; z-index: 2; transform: translateY(-5px); background: var(--white); box-shadow: 0 16px 38px rgba(5,27,35,.1); }
.service-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 42px; border: 1px solid #a9bdbc; border-radius: 6px; color: var(--green); font-weight: 850; }
.service p { margin-bottom: 0; color: var(--muted); }

.value { background: var(--ice); }
.value-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 72px; align-items: start; }
.value-list { border-top: 1px solid #b7c9cc; }
.value-item { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid #b7c9cc; }
.value-mark { width: 42px; height: 42px; display: grid; place-items: center; color: var(--green); border: 1px solid #88a4a8; border-radius: 50%; font-weight: 850; }
.value-item p { margin-bottom: 0; color: var(--muted); }

.finder { background: var(--white); }
.finder-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 60px; padding: 50px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.finder-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.finder-option { min-height: 82px; display: flex; align-items: center; gap: 12px; padding: 15px; border: 1px solid #b9c9cb; border-radius: 6px; background: #fbfcfc; text-align: left; color: var(--ink); cursor: pointer; }
.finder-option:hover, .finder-option.active { border-color: var(--green); background: #eef8f2; }
.finder-option span:first-child { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 34px; border-radius: 5px; background: var(--ice); color: var(--green); font-weight: 850; }
.finder-result { display: none; margin-top: 18px; padding: 18px; border-left: 3px solid var(--mint); background: #eef8f2; }
.finder-result.show { display: block; }
.finder-result p { margin-bottom: 12px; }

.process { background: var(--ink); color: var(--white); }
.process .eyebrow { color: var(--mint); }
.process .section-head p { color: #b9cacc; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.step { position: relative; padding-top: 25px; border-top: 2px solid #33515a; }
.step::before { content: ""; position: absolute; top: -6px; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--mint); }
.step span { display: block; margin-bottom: 26px; color: var(--mint); font-size: .83rem; font-weight: 800; }
.step p { margin-bottom: 0; color: #b9cacc; font-size: .9rem; }

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 80px; align-items: start; }
.about-panel { position: sticky; top: 98px; padding: 32px; color: var(--white); background: var(--ink); border-radius: var(--radius); overflow: hidden; }
.about-panel::after { content: "JG"; position: absolute; right: -12px; bottom: -34px; color: rgba(255,255,255,.035); font-size: 10rem; font-weight: 900; line-height: 1; pointer-events: none; }
.profile-top { position: relative; width: min(250px, 100%); margin-bottom: 28px; }
.about-photo { width: 100%; height: 250px; object-fit: cover; object-position: center 29%; border-radius: 6px; filter: saturate(.9) contrast(1.03); }
.profile-status { position: absolute; right: -42px; bottom: 14px; display: flex; align-items: center; gap: 7px; padding: 9px 12px; color: var(--ink); background: var(--gold); border-radius: 5px; box-shadow: 0 10px 25px rgba(0,0,0,.18); font-size: .75rem; font-weight: 800; }
.profile-status span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse-dot 2.4s ease-in-out infinite; }
.profile-links { display: grid; gap: 4px; margin: 22px 0; }
.profile-links a { position: relative; z-index: 1; color: #d7e2e4; text-decoration: none; font-size: .88rem; }
.about-panel p { color: #b9cacc; }
.about-copy > p { color: var(--muted); font-size: 1.08rem; }
.about-principles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.principle { padding: 20px; border: 1px solid var(--line); background: var(--white); border-radius: 6px; }
.principle b { display: block; margin-bottom: 7px; }
.principle span { color: var(--muted); font-size: .88rem; line-height: 1.5; }

.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.contact-copy { padding-top: 12px; }
.contact-points { display: grid; gap: 17px; margin-top: 32px; }
.contact-point { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.contact-point i { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--ink); font-style: normal; font-weight: 900; }
.contact-point p { margin: 0; color: var(--muted); }
.contact-direct { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.contact-direct a { display: block; margin: 7px 0; color: var(--ink); font-weight: 760; text-decoration: none; }
.form-shell { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); background: #fbfcfc; }
.form-shell h3 { margin-bottom: 8px; font-size: 1.45rem; }
.form-shell > p { color: var(--muted); }
form { display: grid; gap: 17px; margin-top: 24px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 7px; color: var(--ink-2); font-size: .91rem; font-weight: 700; }
input, textarea, select { width: 100%; padding: 13px 14px; color: var(--ink); background: var(--white); border: 1px solid #b9c7c9; border-radius: 5px; }
textarea { min-height: 108px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--green); outline: 2px solid rgba(36,125,89,.18); }
.check { grid-template-columns: 20px 1fr; align-items: start; gap: 10px; color: var(--muted); font-size: .82rem; font-weight: 500; line-height: 1.5; }
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); }
.form-note { margin: 0; color: var(--muted); font-size: .8rem; }
.form-disclosure { margin: 0; padding: 13px 14px; color: var(--ink-2); background: #edf4f3; border-left: 3px solid var(--green); font-size: .82rem; line-height: 1.55; }
.status { display: none; padding: 13px 14px; border-radius: 5px; background: #e0f5e9; color: #165e43; line-height: 1.5; }
.status.show { display: block; }
.status.error { background: #fbe8e5; color: var(--danger); }
.hp { position: absolute; left: -9999px; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 23px 44px 23px 0; cursor: pointer; list-style: none; font-weight: 780; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 8px; top: 20px; color: var(--green); font-size: 1.35rem; }
details[open] summary::after { content: "−"; }
details p { padding-right: 40px; color: var(--muted); }

.final-cta { padding: 84px 0; background: var(--mint); }
.final-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-inner h2 { max-width: 790px; margin: 0; }
.final-inner .btn { white-space: nowrap; }

footer { padding: 54px 0 30px; color: #d5e0e2; background: #071820; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 50px; }
footer .brand { display: inline-flex; }
footer p, footer a, footer span { color: #9fb4b8; }
footer a { text-decoration: none; }
footer a:hover { color: var(--mint); }
.footer-links { display: grid; align-content: start; gap: 11px; }
.legal { margin-top: 46px; padding-top: 24px; color: #849da2; border-top: 1px solid #294049; font-size: .78rem; line-height: 1.65; }

.cookie-banner { position: fixed; right: 18px; bottom: 18px; z-index: 100; width: min(470px, calc(100% - 36px)); padding: 22px; color: var(--white); background: #0d2933; border: 1px solid #3d5d67; border-radius: 8px; box-shadow: 0 18px 60px rgba(0,0,0,.34); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin-bottom: 14px; color: #c7d6d8; font-size: .88rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-actions button { min-height: 42px; padding: 9px 13px; border: 1px solid #6f8990; border-radius: 5px; color: var(--white); background: transparent; cursor: pointer; }
.cookie-actions .accept { color: #082219; background: var(--mint); border-color: var(--mint); font-weight: 760; }
.cookie-modal { position: fixed; inset: 0; z-index: 110; display: none; place-items: center; padding: 20px; background: rgba(2,14,19,.76); }
.cookie-modal.open { display: grid; }
.cookie-dialog { width: min(600px, 100%); max-height: 90vh; overflow: auto; padding: 28px; background: var(--white); border-radius: 8px; }
.cookie-setting { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 18px 0; border-top: 1px solid var(--line); }
.cookie-setting p { margin: 5px 0 0; color: var(--muted); font-size: .86rem; }
.switch { position: relative; width: 50px; height: 28px; }
.switch input { position: absolute; opacity: 0; }
.switch span { position: absolute; inset: 0; border-radius: 999px; background: #afbdc0; cursor: pointer; }
.switch span::after { content: ""; position: absolute; top: 4px; left: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--white); transition: transform .18s ease; }
.switch input:checked + span { background: var(--green); }
.switch input:checked + span::after { transform: translateX(22px); }
.switch input:disabled + span { opacity: .62; cursor: not-allowed; }
.modal-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 22px; }

.mobile-cta { position: fixed; inset: auto 12px 12px; z-index: 45; display: none; min-height: 52px; align-items: center; justify-content: center; color: #082219; background: var(--mint); border-radius: 6px; box-shadow: 0 12px 30px rgba(5,27,35,.3); text-decoration: none; font-weight: 800; }

.legal-page { min-height: 100vh; background: var(--paper); }
.legal-header { color: var(--white); background: var(--ink); }
.legal-header nav { min-height: 70px; }
.legal-main { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 84px 0 110px; }
.legal-main h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); }
.legal-main h2 { margin-top: 46px; font-size: 1.6rem; }
.legal-main p, .legal-main li { color: var(--muted); line-height: 1.75; }
.placeholder-note { padding: 16px 18px; color: #6d4c18; background: #fff2d7; border-left: 3px solid #dfaa41; }

.quick-contact { position: relative; padding: 92px 0; overflow: hidden; color: var(--white); background: var(--ink); }
.quick-contact::before { content: ""; position: absolute; inset: 0; opacity: .45; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(90deg, #000, transparent 72%); }
.quick-contact::after { content: ""; position: absolute; width: 420px; height: 420px; right: -230px; top: -220px; border: 1px solid rgba(233,184,114,.26); border-radius: 50%; box-shadow: 0 0 0 55px rgba(233,184,114,.025), 0 0 0 110px rgba(233,184,114,.018); }
.quick-contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .82fr 1.18fr; gap: 74px; align-items: center; }
.quick-contact .eyebrow { color: var(--gold); }
.quick-contact-copy > p:not(.eyebrow) { max-width: 590px; color: #bed0d3; font-size: 1.05rem; }
.quick-benefits { display: grid; gap: 0; margin-top: 32px; border-top: 1px solid #35505a; }
.quick-benefits span { display: flex; align-items: center; gap: 13px; padding: 14px 0; color: #e3ebec; border-bottom: 1px solid #35505a; font-size: .92rem; }
.quick-benefits i { color: var(--gold); font-style: normal; font-size: .73rem; font-weight: 850; }
.quick-direct { display: flex; align-items: baseline; gap: 12px; margin-top: 28px; }
.quick-direct span { color: #91a9ae; font-size: .82rem; }
.quick-direct a { color: var(--mint-bright); font-size: 1.08rem; font-weight: 800; text-decoration: none; }
.quick-form { padding: 38px; color: var(--ink); background: var(--white); border: 0; box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.form-heading { display: flex; align-items: center; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-heading h3, .form-heading p { margin: 0; }
.form-heading h3 { font-size: 1.5rem; }
.form-heading p { margin-top: 4px; color: var(--muted); font-size: .88rem; }
.form-step { width: 46px; height: 46px; display: grid; place-items: center; flex: 0 0 46px; color: var(--ink); background: var(--gold); border-radius: 50%; font-size: .8rem; font-weight: 850; }
.quick-form form { margin-top: 22px; }
.optional { color: #74868b; font-size: .72rem; font-weight: 500; }
.form-submit { width: 100%; background: var(--mint); }
.form-submit:hover { background: var(--mint-bright); }
.quick-form .form-note { padding-top: 4px; color: #718287; line-height: 1.5; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@keyframes hero-arrive { from { opacity: .45; transform: scale(1.055); } to { opacity: 1; transform: scale(1); } }
@keyframes header-in { from { transform: translateY(-100%); } to { transform: translateY(0); } }
@keyframes pulse-dot { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.72); opacity: .65; } }

@media (max-width: 1000px) {
  .quick-contact-grid { gap: 42px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .process-grid .step:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .wrap { width: min(100% - 28px, var(--max)); }
  .menu-btn { display: grid; place-items: center; }
  .nav-links { position: fixed; inset: 76px 0 auto; display: none; padding: 22px; background: var(--ink); border-bottom: 1px solid #34505a; align-items: stretch; flex-direction: column; }
  .nav-links.open { display: flex; }
  .nav-cta { justify-content: center; }
  .hero { min-height: 740px; }
  .hero-copy { width: 82%; }
  .hero::after { background: linear-gradient(90deg, rgba(5,22,30,.97), rgba(5,22,30,.78) 68%, rgba(5,22,30,.38)); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  section { padding: 82px 0; }
  .section-head, .value-grid, .finder-shell, .about-grid, .contact-grid, .faq-grid, .quick-contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .section-head { align-items: start; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .about-panel { position: static; }
  .quick-contact-copy { max-width: 720px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  h1 { font-size: clamp(2.5rem, 13vw, 4rem); }
  h2 { font-size: 2.15rem; }
  .brand-copy small { display: none; }
  .hero { min-height: 780px; align-items: end; }
  .hero-bg { object-position: 64% center; }
  .hero::after { background: linear-gradient(180deg, rgba(5,22,30,.55) 0%, rgba(5,22,30,.94) 44%, rgba(5,22,30,.99) 100%); }
  .hero-inner { padding-top: 132px; padding-bottom: 48px; }
  .hero-copy { width: 100%; }
  .hero-facts, .trust-grid, .service-grid, .finder-options, .process-grid, .field-row, .about-principles, .footer-grid { grid-template-columns: 1fr; }
  .hero-facts { margin-top: 34px; }
  .hero-fact { min-height: 0; }
  .trust-item, .trust-item:nth-child(3), .trust-item:nth-child(4) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: 0; }
  .service { min-height: 0; }
  .process-grid .step:last-child { grid-column: auto; }
  .finder-shell { padding: 25px 18px; }
  .form-shell, .quick-form { padding: 24px 18px; }
  .quick-contact { padding: 70px 0; }
  .profile-status { right: -24px; }
  .final-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid > div:first-child { grid-column: auto; }
  .mobile-cta { display: flex; }
  .cookie-banner { right: 12px; bottom: 76px; width: calc(100% - 24px); padding: 17px; }
  .cookie-banner p { margin-bottom: 11px; font-size: .8rem; line-height: 1.5; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions button:last-child { grid-column: 1 / -1; }
  footer { padding-bottom: 86px; }
  .modal-actions { align-items: stretch; flex-direction: column; }
}

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

/* Warm editorial redesign */
:root {
  --ink: #1b130f;
  --ink-2: #36241b;
  --paper: #f4eee6;
  --white: #fffdf9;
  --mint: #c8874e;
  --mint-bright: #e1ad78;
  --green: #8a4d2a;
  --ice: #e9ddd0;
  --line: #d8c7b7;
  --muted: #6e6058;
  --gold: #d69a60;
  --coral: #95563c;
  --shadow: 0 24px 70px rgba(41, 24, 15, .16);
}

body { background: var(--paper); }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 600; }
.eyebrow { color: var(--green); letter-spacing: .14em; }
.scroll-progress { position: fixed; inset: 0 auto auto 0; z-index: 150; width: 0; height: 3px; background: var(--gold); pointer-events: none; }

header.scrolled { background: rgba(24,17,13,.94); border-color: rgba(214,154,96,.22); box-shadow: 0 10px 35px rgba(20,12,8,.25); }
.brand-mark { border-color: rgba(214,154,96,.5); }
.brand-copy small { color: #c9ad99; }
.nav-links a { position: relative; color: #f1e6dc; }
.nav-links > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--gold); transition: right .25s ease; }
.nav-links > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { border-color: rgba(214,154,96,.55); }

.hero { min-height: 850px; background: #17100d; }
.hero-bg { object-position: center; will-change: transform; transform: scale(1.045) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0); animation: warm-hero-in 1.8s cubic-bezier(.16,.72,.25,1) both; transition: transform .35s ease-out; }
.hero::after { background: linear-gradient(90deg, rgba(20,13,10,.98) 0%, rgba(25,16,12,.92) 42%, rgba(35,22,15,.35) 72%, rgba(25,16,12,.12) 100%); }
.hero-copy { width: min(720px, 59%); }
.hero h1 { font-size: clamp(3.4rem, 6.4vw, 6.6rem); line-height: .94; }
.hero h1 span { color: var(--mint-bright); }
.hero .lead { color: #e0d2c6; }
.hero-copy > * { animation: copy-rise .8s cubic-bezier(.2,.7,.2,1) both; }
.hero-copy > :nth-child(2) { animation-delay: .08s; }
.hero-copy > :nth-child(3) { animation-delay: .16s; }
.hero-copy > :nth-child(4) { animation-delay: .24s; }
.hero-copy > :nth-child(5) { animation-delay: .32s; }
.btn-primary { color: #1d120b; background: var(--mint); }
.btn-primary:hover { background: var(--mint-bright); }
.btn-secondary { color: #fff7ef; border-color: rgba(225,173,120,.48); background: rgba(20,12,8,.28); }
.hero-facts { max-width: 720px; gap: 0; background: transparent; border-top: 1px solid rgba(225,173,120,.32); border-bottom: 1px solid rgba(225,173,120,.22); }
.hero-fact { min-height: 82px; padding: 18px 20px; background: transparent; border-top: 0; border-left: 1px solid rgba(225,173,120,.2); backdrop-filter: none; }
.hero-fact:first-child { border-left: 0; padding-left: 0; }
.hero-fact:hover { background: transparent; border-color: rgba(225,173,120,.2); }
.hero-fact span { color: #bda99b; }
.eyebrow-dot { background: var(--gold); box-shadow: 0 0 0 6px rgba(214,154,96,.13); }

.trustbar { background: #eadfd3; border-color: #cdbba9; }
.trust-item { border-color: #cdbba9; }
.trust-item b { color: #3a2418; }
.trust-item span { color: #76645a; }

.quick-contact { background: #211713; }
.quick-contact::before { opacity: .23; background-image: linear-gradient(rgba(214,154,96,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(214,154,96,.07) 1px, transparent 1px); }
.quick-contact::after { border-color: rgba(214,154,96,.32); box-shadow: 0 0 0 55px rgba(214,154,96,.025), 0 0 0 110px rgba(214,154,96,.018); }
.quick-contact-copy > p:not(.eyebrow) { color: #cdbcb0; }
.quick-benefits { border-color: #50382c; }
.quick-benefits span { color: #eee2d8; border-color: #50382c; }
.quick-direct span { color: #aa9486; }
.quick-direct a { color: var(--mint-bright); }
.quick-form { background: #fffaf4; box-shadow: 0 32px 90px rgba(8,4,2,.38); }
.form-step { background: var(--gold); }
input, textarea, select { color: var(--ink); background: #fffdf9; border-color: #cdb9a8; }
input:focus, textarea:focus, select:focus { border-color: var(--green); outline-color: rgba(138,77,42,.18); }

#oferta { background: #f8f3ed; }
.service-tabs { background: #e8dbce; }
.tab-btn[aria-selected="true"] { color: var(--ink); background: #fffaf4; box-shadow: 0 5px 18px rgba(55,31,18,.08); }
.service-grid { grid-template-columns: 1fr 1fr; column-gap: 68px; border: 0; }
.service { min-height: 0; display: grid; grid-template-columns: 54px 1fr; column-gap: 20px; padding: 28px 0; border: 0; border-top: 1px solid var(--line); background: transparent; }
.service:hover { transform: translateX(9px); background: transparent; box-shadow: none; }
.service-icon { grid-row: 1 / span 2; width: auto; height: auto; display: block; margin: 3px 0 0; color: var(--green); border: 0; border-radius: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; }
.service h3 { margin-bottom: 8px; font-size: 1.2rem; }
.service p { max-width: 470px; }

.editorial-band { position: relative; min-height: 610px; display: grid; align-items: end; padding: 0; overflow: hidden; color: #fffaf4; background: #241711; }
.editorial-band > img { position: absolute; inset: -7% 0; width: 100%; height: 114%; object-fit: cover; transform: translate3d(0, var(--band-y, 0), 0) scale(1.03); will-change: transform; }
.editorial-band-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,16,11,.9), rgba(29,17,11,.48) 56%, rgba(29,17,11,.12)); }
.editorial-band-copy { position: relative; z-index: 1; padding-top: 110px; padding-bottom: 92px; }
.editorial-band .eyebrow { color: #edb97e; }
.editorial-band h2 { max-width: 760px; font-size: clamp(2.7rem, 5vw, 5.2rem); }
.editorial-band p:last-child { max-width: 590px; color: #e4d5c7; font-size: 1.08rem; }

.value { background: #e7dacd; }
.value-list { border-color: #c7b09d; }
.value-item { grid-template-columns: 42px 1fr; border-color: #c7b09d; }
.value-mark { width: auto; height: auto; display: block; color: var(--green); border: 0; border-radius: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }

.finder { background: #fffaf4; }
.finder-shell { padding: 0; border: 0; border-radius: 0; box-shadow: none; }
.finder-options { gap: 0 28px; }
.finder-option { min-height: 74px; padding: 15px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
.finder-option:hover, .finder-option.active { padding-left: 9px; color: var(--green); border-color: var(--green); background: transparent; }
.finder-option span:first-child { color: var(--green); background: transparent; border-radius: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.1rem; }
.finder-result { background: #eee1d4; border-color: var(--green); }

.process { background: #1b120e; }
.process .section-head p, .step p { color: #bba89a; }
.step { border-color: #604438; }
.step::before { background: var(--gold); box-shadow: 0 0 0 6px rgba(214,154,96,.08); }
.step span { color: var(--mint-bright); }

.about { background: #f4eee6; }
.about-grid { grid-template-columns: .56fr 1.44fr; gap: 100px; }
.about-panel { position: sticky; top: 110px; padding: 0; color: var(--ink); background: transparent; border-radius: 0; overflow: visible; }
.about-panel::after { display: none; }
.profile-top { width: 178px; margin-bottom: 28px; }
.about-photo { height: 178px; border-radius: 4px; box-shadow: 18px 18px 0 #dcc5b1; }
.profile-status { right: -54px; bottom: -13px; color: #21140d; background: var(--gold); box-shadow: 0 10px 25px rgba(40,22,12,.16); }
.profile-status span { background: #5f321c; }
.about-panel p { color: var(--muted); }
.about-panel .eyebrow { color: var(--green); }
.profile-links a { color: var(--ink-2); }
.about-principles { grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); }
.principle { display: grid; grid-template-columns: 160px 1fr; gap: 22px; padding: 19px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }

.faq { background: #fffaf4; }
details, .faq-list { border-color: var(--line); }
summary::after { color: var(--green); }
.final-cta { color: #20130c; background: var(--gold); }
footer { background: #17100d; }
footer p, footer a, footer span { color: #bca99b; }
.legal { color: #8f7a6b; border-color: #3e2a20; }
.cookie-banner { background: #211713; border-color: #634536; }
.cookie-banner p { color: #d4c3b6; }
.cookie-actions .accept, .mobile-cta { color: #1e120b; background: var(--gold); border-color: var(--gold); }

.reveal-from-left { transform: translateX(-36px); }
.reveal-from-right { transform: translateX(36px); }
.reveal-zoom { transform: scale(.96); }
.reveal.is-visible { transform: none; }

@keyframes warm-hero-in { from { opacity: .4; transform: scale(1.12) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0); } to { opacity: 1; transform: scale(1.045) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0); } }
@keyframes copy-rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .hero { min-height: 780px; }
  .hero-copy { width: 76%; }
  .hero::after { background: linear-gradient(90deg, rgba(20,13,10,.97), rgba(25,16,12,.8) 70%, rgba(35,22,15,.32)); }
  .service-grid { grid-template-columns: 1fr; column-gap: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-panel { position: static; }
  .editorial-band { min-height: 540px; }
}

@media (max-width: 620px) {
  .hero { min-height: 810px; }
  .hero-bg { object-position: 62% center; }
  .hero::after { background: linear-gradient(180deg, rgba(19,12,9,.38) 0%, rgba(21,13,10,.82) 42%, rgba(20,12,9,.99) 100%); }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.3rem); }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-fact, .hero-fact:first-child { padding: 13px 0; border-left: 0; border-top: 1px solid rgba(225,173,120,.18); }
  .hero-fact:first-child { border-top: 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item, .trust-item:nth-child(3), .trust-item:nth-child(4) { padding: 17px 14px; border-top: 1px solid #cdbba9; border-left: 1px solid #cdbba9; }
  .trust-item:nth-child(odd) { border-left: 0; }
  .trust-item:nth-child(-n+2) { border-top: 0; }
  .service { grid-template-columns: 42px 1fr; column-gap: 12px; }
  .editorial-band { min-height: 520px; }
  .editorial-band-copy { padding-top: 80px; padding-bottom: 60px; }
  .editorial-band h2 { font-size: 2.7rem; }
  .finder-shell { padding: 0; }
  .principle { grid-template-columns: 1fr; gap: 7px; }
  .profile-top { width: 158px; }
  .about-photo { height: 158px; }
  .profile-status { right: -74px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg, .editorial-band > img { transform: none !important; }
}
