:root{
  --bg:#040913;
  --bg-deep:#07111f;
  --panel:rgba(7,14,25,.82);
  --panel-strong:rgba(5,10,18,.94);
  --panel-soft:rgba(255,255,255,.04);
  --line:rgba(216,177,106,.18);
  --line-strong:rgba(216,177,106,.34);
  --gold:#d8b16a;
  --gold-strong:#f2cf94;
  --text:#f7f0e5;
  --muted:#c8baa6;
  --muted-strong:#9f937f;
  --shadow:0 24px 60px rgba(0,0,0,.38);
  --radius:28px;
  --radius-sm:18px;
  --container:1180px;
  --safe-bottom:calc(env(safe-area-inset-bottom, 0px) + 18px);
  --ease-out:cubic-bezier(.22,1,.36,1);
  --ease-smooth:cubic-bezier(.2,.75,.2,1);
  --duration-fast:.24s;
  --duration-mid:.5s;
  --duration-slow:.85s;
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  scroll-padding-top:110px;
}
body{
  margin:0;
  font-family:"Manrope",system-ui,sans-serif;
  color:var(--text);
  overflow-x:hidden;
  background:
    radial-gradient(circle at top left, rgba(20,40,70,.36), transparent 26%),
    radial-gradient(circle at bottom right, rgba(216,177,106,.08), transparent 22%),
    linear-gradient(180deg, #03070e 0%, #07111f 54%, #03070e 100%);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font:inherit}

.bg-orbs,
.bg-grid{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
}
.bg-orbs{
  background:
    radial-gradient(circle at 78% 14%, rgba(216,177,106,.08), transparent 18%),
    radial-gradient(circle at 12% 26%, rgba(38,66,110,.18), transparent 24%);
  animation:orbDrift 18s ease-in-out infinite alternate;
}
.bg-grid{
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size:48px 48px;
  opacity:.14;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.6), transparent 92%);
}

.skip-link{
  position:absolute;
  top:-64px;
  left:16px;
  z-index:120;
  padding:12px 16px;
  border-radius:12px;
  background:var(--gold-strong);
  color:#07111f;
  font-weight:800;
  transition:top .2s ease;
}
.skip-link:focus{top:16px}

.container{
  width:min(calc(100% - 32px), var(--container));
  margin:0 auto;
}

.header{
  position:sticky;
  top:0;
  z-index:80;
  backdrop-filter:blur(14px);
  background:rgba(3,7,14,.86);
  border-bottom:1px solid rgba(255,255,255,.05);
  box-shadow:0 14px 34px rgba(0,0,0,.18);
  transition:background var(--duration-fast) var(--ease-smooth), box-shadow var(--duration-fast) var(--ease-smooth), border-color var(--duration-fast) var(--ease-smooth);
}
.header.header-scrolled{
  background:rgba(3,7,14,.94);
  box-shadow:0 20px 44px rgba(0,0,0,.28);
  border-bottom-color:rgba(216,177,106,.12);
}
.nav{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:18px;
  align-items:center;
  min-height:88px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand img{
  width:52px;
  height:52px;
  border-radius:15px;
  object-fit:cover;
  border:1px solid rgba(216,177,106,.26);
  box-shadow:var(--shadow);
  transition:transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-smooth);
}
.brand:hover img{
  transform:translateY(-2px) scale(1.02);
  border-color:rgba(242,207,148,.42);
}
.brand-copy{
  display:flex;
  flex-direction:column;
  gap:4px;
  line-height:1;
  min-width:0;
}
.brand-copy strong{
  font-family:"Cormorant Garamond",serif;
  font-size:1.22rem;
  letter-spacing:.08em;
  white-space:nowrap;
}
.brand-copy span{
  color:var(--gold);
  font-size:.72rem;
  letter-spacing:.34em;
  white-space:nowrap;
}

.menu{
  display:flex;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
}
.menu a{
  display:inline-flex;
  align-items:center;
  min-height:44px;
  color:rgba(255,255,255,.88);
  font-size:.96rem;
  transition:color var(--duration-fast) var(--ease-smooth), transform var(--duration-fast) var(--ease-out);
}
.menu a:hover{
  color:var(--gold-strong);
  transform:translateY(-1px);
}
.menu-cta{display:none}
.menu-toggle{
  display:none;
  min-width:46px;
  height:46px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  color:var(--gold);
  align-items:center;
  gap:10px;
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-smooth),
    background var(--duration-fast) var(--ease-smooth),
    box-shadow var(--duration-fast) var(--ease-smooth),
    color var(--duration-fast) var(--ease-smooth);
  justify-content:center;
}
.menu-toggle:hover{
  transform:translateY(-1px);
  border-color:rgba(242,207,148,.34);
  background:rgba(255,255,255,.05);
  box-shadow:0 16px 34px rgba(0,0,0,.18);
}
.menu-toggle-text{
  min-width:6.7ch;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  white-space:nowrap;
  text-align:center;
  transition:letter-spacing var(--duration-fast) var(--ease-smooth), color var(--duration-fast) var(--ease-smooth);
}
.menu-toggle-box{
  display:grid;
  gap:5px;
}
.menu-toggle-line{
  width:20px;
  height:2px;
  border-radius:999px;
  background:currentColor;
  transition:transform .2s ease, opacity .2s ease;
}
body.menu-open .menu-toggle-line:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}
body.menu-open .menu-toggle-line:nth-child(2){
  opacity:0;
}
body.menu-open .menu-toggle-line:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}
body.menu-open .menu-toggle{
  background:linear-gradient(180deg, rgba(216,177,106,.18), rgba(216,177,106,.08));
  border-color:rgba(242,207,148,.44);
  color:var(--gold-strong);
  box-shadow:0 18px 40px rgba(0,0,0,.22);
}
body.menu-open .menu-toggle-text{
  letter-spacing:.14em;
}
.menu-backdrop{
  position:fixed;
  inset:0;
  border:0;
  padding:0;
  background:rgba(3,7,14,.58);
  backdrop-filter:blur(6px);
  opacity:0;
  pointer-events:none;
  transition:opacity .22s ease;
  z-index:70;
}
body.menu-open{
  overflow:hidden;
}
body.menu-open .menu-backdrop{
  opacity:1;
  pointer-events:auto;
}
body.menu-open .whatsapp-float{
  opacity:0;
  pointer-events:none;
  transform:translateY(12px) scale(.92);
}
body.menu-open .header{
  z-index:90;
}

.menu-toggle:focus-visible,
.menu a:focus-visible,
.btn:focus-visible,
.footer a:focus-visible,
.service-card:focus-visible,
.whatsapp-float:focus-visible{
  outline:2px solid var(--gold-strong);
  outline-offset:3px;
}

.btn{
  min-height:52px;
  padding:0 22px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid transparent;
  font-weight:800;
  position:relative;
  overflow:hidden;
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
  box-shadow:var(--shadow);
}
.btn::after{
  content:"";
  position:absolute;
  inset:-120% auto auto -30%;
  width:58%;
  height:300%;
  transform:rotate(18deg);
  background:linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.2), rgba(255,255,255,0));
  opacity:0;
  transition:transform var(--duration-mid) var(--ease-out), opacity var(--duration-fast) var(--ease-smooth);
}
.btn:hover{transform:translateY(-2px)}
.btn:hover::after{
  opacity:1;
  transform:translate(165%, 0) rotate(18deg);
}
.btn:active{
  transform:translateY(0) scale(.985);
}
.btn-gold{
  background:linear-gradient(180deg, var(--gold-strong), var(--gold));
  color:#07111f;
}
.btn-outline{
  color:var(--gold-strong);
  border-color:rgba(216,177,106,.44);
  background:rgba(255,255,255,.02);
}

h1,h2,h3{
  margin:0;
  font-family:"Cormorant Garamond",serif;
  line-height:.96;
  text-wrap:balance;
}
h1{font-size:clamp(3.2rem, 5.8vw, 5.7rem)}
h2{font-size:clamp(2.25rem, 4vw, 3.5rem)}
h3{font-size:clamp(1.5rem, 2vw, 2rem)}
p{
  margin:0;
  line-height:1.74;
  text-wrap:pretty;
}

.section{padding:34px 0}
.section[id]{
  scroll-margin-top:124px;
}
.eyebrow{
  margin:0 0 16px;
  color:var(--gold);
  letter-spacing:.2em;
  font-size:.8rem;
  font-weight:800;
}
.section-title.centered{
  text-align:center;
  max-width:820px;
  margin:0 auto 28px;
}
.section-title.centered h2,
.cta-copy h2,
.spotlight-copy h2,
.spotlight-panel h2,
.page-hero h1{
  max-width:12ch;
  margin-inline:auto;
}
.section-title.centered .section-lead{
  max-width:64ch;
  margin-inline:auto;
}
.section-lead{
  margin-top:18px;
  color:var(--muted);
}

.shell-card,
.glass-card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.shell-card::before,
.glass-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(242,207,148,.08), transparent 32%, transparent 68%, rgba(78,112,168,.08));
  opacity:.55;
  pointer-events:none;
}
.shell-card::after,
.glass-card::after{
  content:"";
  position:absolute;
  inset:auto -14% -58% auto;
  width:180px;
  height:180px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(216,177,106,.14), transparent 72%);
  pointer-events:none;
  filter:blur(2px);
}

.hero{padding-top:40px}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(0, .95fr);
  gap:34px;
  padding:42px;
  align-items:center;
  overflow:hidden;
}
.hero-copy{display:grid;gap:24px}
.hero-copy h1{max-width:11ch}
.lead{
  color:var(--muted);
  font-size:1.06rem;
  max-width:62ch;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.hero-points{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}
.hero-points li{
  position:relative;
  padding-left:18px;
  color:var(--muted);
}
.hero-points li::before{
  content:"";
  position:absolute;
  left:0;
  top:.7em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(180deg, var(--gold-strong), var(--gold));
  box-shadow:0 0 0 5px rgba(216,177,106,.12);
}
.mini-highlights{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}
.mini-highlights article{
  padding:18px;
  background:var(--panel-soft);
  border:1px solid var(--line);
  border-radius:22px;
}
.mini-highlights strong{
  display:block;
  margin-bottom:8px;
  color:var(--gold-strong);
}
.mini-highlights span{
  color:var(--muted);
  font-size:.93rem;
}

.hero-visual{
  display:grid;
  grid-template-columns:minmax(0,1fr) 220px;
  gap:18px;
  align-items:end;
}
.hero-photo-card{
  overflow:hidden;
  padding:18px;
}
.hero-person{
  width:100%;
  aspect-ratio:5/6;
  object-fit:cover;
  object-position:center top;
  border-radius:22px;
  border:1px solid rgba(216,177,106,.16);
  transition:transform var(--duration-slow) var(--ease-out), filter var(--duration-mid) var(--ease-smooth);
}
.hero-photo-card:hover .hero-person{
  transform:scale(1.03);
  filter:saturate(1.05);
}
.hero-photo-caption{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:end;
  padding-top:16px;
}
.hero-photo-caption strong{
  color:var(--gold-strong);
  font-size:1rem;
}
.hero-photo-caption span{
  max-width:220px;
  color:var(--muted);
  font-size:.92rem;
  text-align:right;
}
.hero-side-stack{
  display:grid;
  gap:18px;
}
.hero-note{
  padding:18px;
  display:grid;
  gap:14px;
  transition:transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-smooth), background var(--duration-fast) var(--ease-smooth);
}
.hero-note:hover{
  transform:translateY(-3px);
  border-color:rgba(242,207,148,.28);
}
.hero-note img{
  width:72px;
  height:72px;
  border-radius:20px;
  object-fit:cover;
}
.hero-note strong{
  color:var(--gold-strong);
}
.hero-note h2{
  font-size:1.8rem;
}
.hero-note p{
  color:var(--muted);
  font-size:.94rem;
}
.pill{
  width:fit-content;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--gold-strong);
  background:rgba(255,255,255,.02);
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.trust-bar{padding-top:8px}
.trust-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}
.trust-item{
  padding:22px;
  border-radius:24px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  transition:transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-smooth), background var(--duration-fast) var(--ease-smooth);
}
.trust-item:hover{
  transform:translateY(-3px);
  border-color:rgba(242,207,148,.26);
  background:rgba(255,255,255,.05);
}
.trust-item strong{
  display:block;
  margin-bottom:10px;
  color:var(--gold-strong);
}
.trust-item span{color:var(--muted)}

.split-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(300px, .95fr);
  gap:24px;
  align-items:start;
}
.section-copy{
  display:grid;
  gap:18px;
}
.feature-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
  margin-top:8px;
}
.feature-card{
  padding:18px;
  transition:transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-smooth), background var(--duration-fast) var(--ease-smooth);
}
.feature-card:hover{
  transform:translateY(-3px);
  border-color:rgba(242,207,148,.26);
}
.feature-card strong{
  display:block;
  margin-bottom:8px;
  color:var(--gold-strong);
}
.feature-card span{color:var(--muted)}
.office-aside{
  display:grid;
  gap:18px;
}
.about-photo{overflow:hidden}
.about-photo img{
  width:100%;
  min-height:360px;
  object-fit:cover;
  transition:transform var(--duration-slow) var(--ease-out);
}
.about-photo:hover img{
  transform:scale(1.03);
}
.office-summary{
  padding:24px;
  display:grid;
  gap:16px;
}
.office-summary h2{font-size:2rem}

.list-clean{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
  color:var(--muted);
}
.list-clean a,
.footer-links a,
.related-pages a{
  overflow-wrap:anywhere;
}

.areas-section .section-title{margin-bottom:34px}
.service-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.service-card{
  padding:22px;
  display:grid;
  gap:14px;
  align-content:start;
  min-height:230px;
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}
.service-card:hover{
  transform:translateY(-4px);
  border-color:var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    rgba(9,16,29,.92);
}
.service-card:active{
  transform:translateY(-1px) scale(.99);
}
.service-card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
.service-icon{
  font-size:1.7rem;
  color:var(--gold-strong);
}
.service-link{
  color:var(--gold);
  font-weight:800;
  font-size:.9rem;
}
.service-card p{color:var(--muted)}
.featured-service{
  border-color:rgba(242,207,148,.44);
  box-shadow:0 0 0 1px rgba(242,207,148,.16), var(--shadow);
}

.spotlight-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.1fr) minmax(0, .9fr);
  gap:24px;
  padding:32px;
}
.spotlight-copy,
.spotlight-panel{
  display:grid;
  gap:18px;
}
.spotlight-panel{
  padding:28px;
}

.check-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}
.check-list li{
  position:relative;
  padding-left:22px;
  color:var(--muted);
}
.check-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--gold-strong);
  font-weight:800;
}

.local-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, .95fr);
  gap:24px;
  align-items:start;
}
.local-cards{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
}
.local-card{
  min-height:150px;
  padding:22px;
  display:grid;
  gap:12px;
  transition:transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-smooth), background var(--duration-fast) var(--ease-smooth);
}
.local-card:hover{
  transform:translateY(-3px);
  border-color:rgba(242,207,148,.26);
}
.local-card strong{
  color:var(--gold-strong);
  font-size:1.1rem;
}
.local-card span{color:var(--muted)}

.step-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}
.step-card{
  padding:24px;
  display:grid;
  gap:14px;
  min-height:220px;
  transition:transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-smooth), background var(--duration-fast) var(--ease-smooth);
}
.step-card:hover{
  transform:translateY(-3px);
  border-color:rgba(242,207,148,.26);
}
.step-card span{
  color:var(--gold);
  font-weight:800;
  font-size:1.4rem;
}
.step-card p{color:var(--muted)}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
}
.faq-card{
  padding:24px;
  display:grid;
  gap:14px;
  min-height:210px;
  transition:transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-smooth), background var(--duration-fast) var(--ease-smooth);
}
.faq-card:hover{
  transform:translateY(-3px);
  border-color:rgba(242,207,148,.24);
}
.faq-card p{color:var(--muted)}

.cta-box{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(320px, .85fr);
  gap:24px;
  align-items:center;
  padding:36px;
}
.cta-copy{
  display:grid;
  gap:18px;
}
.contact-card{
  padding:24px;
  display:grid;
  gap:14px;
  transition:transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-smooth);
}
.contact-card .btn{
  width:100%;
}
.contact-card:hover{
  transform:translateY(-2px);
  border-color:rgba(242,207,148,.24);
}

.footer{
  margin-top:10px;
  background:rgba(4,7,13,.9);
  border-top:1px solid rgba(255,255,255,.06);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .8fr 1fr;
  gap:24px;
  padding:42px 0 24px;
}
.footer-brand-block p,
.footer-links{color:var(--muted)}
.footer h3{
  margin:0 0 14px;
  color:var(--gold-strong);
  font-size:1rem;
  font-family:"Manrope",system-ui,sans-serif;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.footer-links a:hover{color:var(--gold-strong)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.05);
}
.footer-bottom-inner{
  min-height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color:var(--muted-strong);
  font-size:.92rem;
}

.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:var(--safe-bottom);
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,#24d366,#10a74d);
  color:#fff;
  font-size:1.5rem;
  box-shadow:var(--shadow);
  z-index:45;
  transition:transform .2s ease, opacity .2s ease;
}
.whatsapp-float:hover{transform:translateY(-2px)}

.page-detail .hero{
  padding-top:32px;
}
.page-hero{
  padding:34px;
  display:grid;
  gap:18px;
}
.breadcrumb{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:.92rem;
}
.breadcrumb a{color:var(--gold)}
.page-hero-meta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.page-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(300px, .82fr);
  gap:24px;
}
.page-content{
  display:grid;
  gap:24px;
}
.content-block{
  padding:28px;
  display:grid;
  gap:16px;
  transition:transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-smooth);
}
.content-block:hover{
  transform:translateY(-3px);
  border-color:rgba(242,207,148,.24);
}
.content-block p{color:var(--muted)}
.bullet-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}
.bullet-card{
  padding:18px;
  border-radius:22px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  transition:transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-smooth), background var(--duration-fast) var(--ease-smooth);
}
.bullet-card:hover{
  transform:translateY(-2px);
  border-color:rgba(242,207,148,.24);
  background:rgba(255,255,255,.05);
}
.bullet-card strong{
  display:block;
  margin-bottom:8px;
  color:var(--gold-strong);
}
.bullet-card span{color:var(--muted)}
.page-sidebar{
  display:grid;
  gap:18px;
  align-self:start;
  position:sticky;
  top:110px;
}
.info-panel{
  padding:24px;
  display:grid;
  gap:14px;
  transition:transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-smooth);
}
.info-panel p{color:var(--muted)}
.info-panel:hover{
  transform:translateY(-2px);
  border-color:rgba(242,207,148,.24);
}
.sidebar-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.sidebar-links a{
  color:var(--gold-strong);
  font-weight:700;
}
.related-pages{
  display:grid;
  gap:14px;
}
.related-pages a{
  padding:16px 18px;
  border-radius:20px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  transition:transform .18s ease, border-color .18s ease, background var(--duration-fast) var(--ease-smooth), color var(--duration-fast) var(--ease-smooth);
}
.related-pages a:hover{
  transform:translateY(-2px);
  border-color:var(--line-strong);
  color:var(--text);
}

[data-reveal]{
  opacity:0;
  transform:translateY(26px) scale(.985);
  filter:blur(10px);
  transition:
    opacity var(--duration-mid) var(--ease-out),
    transform var(--duration-mid) var(--ease-out),
    filter var(--duration-mid) var(--ease-smooth);
  transition-delay:var(--reveal-delay, 0ms);
}
[data-reveal].is-visible{
  opacity:1;
  transform:translateY(0) scale(1);
  filter:blur(0);
}

@keyframes orbDrift{
  from{transform:translate3d(0,0,0) scale(1)}
  to{transform:translate3d(0,-18px,0) scale(1.05)}
}

@media (max-width:1100px){
  .hero-grid,
  .split-layout,
  .spotlight-grid,
  .local-grid,
  .cta-box,
  .page-layout,
  .footer-grid{
    grid-template-columns:1fr;
  }
  .trust-grid,
  .step-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
  .service-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
  .page-sidebar{position:static}
}

@media (max-width:860px){
  .header{
    background:rgba(3,7,14,.94);
    overflow:visible;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }
  .nav{
    grid-template-columns:minmax(0,1fr) auto;
    gap:10px;
    min-height:78px;
    position:relative;
  }
  .brand{
    gap:10px;
  }
  .brand-copy strong{
    font-size:1.06rem;
    letter-spacing:.06em;
  }
  .brand-copy span{
    font-size:.66rem;
    letter-spacing:.18em;
  }
  .menu-toggle{
    display:inline-grid;
    justify-self:end;
    place-items:center;
    position:relative;
    z-index:92;
    grid-auto-flow:column;
    min-width:124px;
  }
  .menu{
    display:none;
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    right:0;
    z-index:91;
    justify-content:stretch;
    gap:10px;
    max-height:calc(100dvh - var(--header-height, 78px) - 24px);
    overflow:auto;
    overscroll-behavior:contain;
    background:rgba(2,6,13,.98);
    padding:14px;
    border-radius:24px;
    border:1px solid var(--line);
    box-shadow:0 30px 70px rgba(0,0,0,.45);
    transform:translateY(14px) scale(.985);
    opacity:0;
    transform-origin:top right;
    transition:opacity var(--duration-fast) var(--ease-smooth), transform var(--duration-fast) var(--ease-out);
  }
  .menu.open{
    display:grid;
    transform:translateY(0) scale(1);
    opacity:1;
  }
  .menu a{
    width:100%;
    min-height:52px;
    padding:0 16px;
    border-radius:16px;
    justify-content:flex-start;
    background:rgba(255,255,255,.03);
    border:1px solid transparent;
  }
  .menu a:hover{
    border-color:var(--line-strong);
    background:rgba(255,255,255,.05);
  }
  .menu a:active{
    transform:scale(.99);
  }
  .menu-cta{
    display:inline-flex;
    margin-top:6px;
  }
  .header-cta{display:none}
  .hero-grid{padding:24px}
  .hero-copy h1,
  .section-title.centered h2,
  .cta-copy h2,
  .spotlight-copy h2,
  .spotlight-panel h2,
  .page-hero h1{
    max-width:none;
  }
  .hero-visual{
    grid-template-columns:1fr;
    max-width:360px;
    margin:0 auto;
    gap:14px;
  }
  .hero-side-stack{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
  .hero-photo-card{
    padding:14px;
  }
  .hero-person{
    aspect-ratio:4/5;
    max-height:430px;
    object-position:center 14%;
  }
  .about-photo{
    max-width:420px;
    margin:0 auto;
  }
  .about-photo img{
    min-height:auto;
    aspect-ratio:16/10;
    max-height:300px;
    object-position:center 32%;
  }
  .mini-highlights,
  .feature-list,
  .local-cards,
  .faq-grid,
  .bullet-grid{
    grid-template-columns:1fr;
  }
  .service-grid,
  .trust-grid,
  .step-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:620px){
  .container{width:min(calc(100% - 20px), var(--container))}
  .section{padding:26px 0}
  .section-title.centered{margin-bottom:24px}
  h1{font-size:clamp(2.45rem, 11vw, 3.2rem)}
  h2{font-size:clamp(1.95rem, 8vw, 2.55rem)}
  h3{font-size:clamp(1.35rem, 6vw, 1.8rem)}
  p{line-height:1.66}
  .brand img{
    width:42px;
    height:42px;
  }
  .brand{
    gap:8px;
  }
  .brand-copy{
    max-width:168px;
  }
  .brand-copy strong{
    font-size:.9rem;
    letter-spacing:.04em;
  }
  .brand-copy span{
    font-size:.58rem;
    letter-spacing:.14em;
  }
  .menu-toggle{
    min-width:112px;
    height:42px;
    padding:0 10px;
    gap:8px;
  }
  .menu-toggle-text{
    min-width:6.1ch;
    font-size:.68rem;
    letter-spacing:.12em;
  }
  .hero-copy,
  .section-copy,
  .cta-copy{
    gap:16px;
  }
  .hero-actions,
  .page-hero-meta{
    flex-direction:column;
  }
  .btn{width:100%}
  .eyebrow{
    margin-bottom:12px;
    letter-spacing:.18em;
  }
  .hero-photo-caption{
    display:grid;
  }
  .hero-photo-caption span{
    max-width:none;
    text-align:left;
  }
  .hero-visual{
    max-width:290px;
    gap:12px;
  }
  .hero-photo-card{
    padding:10px;
    border-radius:24px;
  }
  .hero-person{
    aspect-ratio:4/5;
    max-height:330px;
    border-radius:18px;
    object-position:center 12%;
  }
  .hero-photo-caption{
    gap:8px;
    padding-top:12px;
  }
  .hero-photo-caption strong{
    font-size:.95rem;
  }
  .hero-photo-caption span{
    font-size:.88rem;
  }
  .hero-side-stack{
    grid-template-columns:1fr;
  }
  .hero-note{
    padding:14px;
    gap:10px;
  }
  .hero-note img{
    width:54px;
    height:54px;
    border-radius:16px;
  }
  .about-photo{
    max-width:300px;
  }
  .about-photo img{
    aspect-ratio:16/11;
    max-height:220px;
    border-radius:18px;
    object-position:center 34%;
  }
  .hero-note h2{font-size:1.5rem}
  .cta-box,
  .content-block,
  .spotlight-grid,
  .page-hero{
    padding:22px;
  }
  .service-card,
  .trust-item,
  .local-card,
  .step-card,
  .faq-card,
  .contact-card,
  .office-summary,
  .info-panel{
    padding:20px;
    min-height:auto;
  }
  [data-reveal]{
    transform:translateY(18px) scale(.992);
    filter:blur(6px);
  }
  .hero-grid{
    padding:20px;
    gap:22px;
  }
  .whatsapp-float{
    right:12px;
    width:52px;
    height:52px;
    box-shadow:0 18px 42px rgba(0,0,0,.3);
  }
  .footer-bottom-inner{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    padding:14px 0;
  }
}

@media (max-width:420px){
  .nav{
    gap:8px;
    min-height:72px;
  }
  .brand-copy{
    max-width:132px;
  }
  .brand-copy strong{
    font-size:.82rem;
  }
  .brand-copy span{
    font-size:.54rem;
    letter-spacing:.12em;
  }
  .menu-toggle{
    min-width:46px;
    width:46px;
    height:46px;
    padding:0;
    border-radius:16px;
    gap:0;
  }
  .menu-toggle-text{
    display:none;
  }
}

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