/* ============================================================
   Vía Panamá Advisory — Shared stylesheet
   v2.0 — contrast-fixed, typography corrected, real pages
   ============================================================ */

:root{
  --ivory:#F6F2EA;
  --ivory-2:#FBF8F1;
  --stone:#E8E2D5;
  --stone-2:#DDD5C2;
  --teal:#0B2428;          /* deepened from #0F2A2E for contrast */
  --teal-soft:#183638;
  --charcoal:#141416;      /* deepened for body text */
  --slate:#4A535C;         /* darkened from #5C6670 for WCAG AA */
  --gold:#8F6E3A;          /* darkened from #B89968 — passes AA on ivory */
  --gold-light:#B89968;    /* reserved for dark backgrounds only */
  --olive:#5A6543;
  --white:#ffffff;
  --border:rgba(11,36,40,0.14);
  --border-strong:rgba(11,36,40,0.22);
  --serif:'Fraunces','Canela Text','GT Sectra',Georgia,serif;
  --sans:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --radius:2px;
  --maxw:1280px;
  --prose:680px;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
body{
  font-family:var(--sans);
  background:var(--ivory);
  color:var(--charcoal);
  font-size:17px;
  line-height:1.65;
  font-weight:400;
}
@media(max-width:680px){body{font-size:16px}}

img{max-width:100%;display:block;height:auto;background-color:var(--stone);color:transparent;font-size:0}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 40px}
.prose{max-width:var(--prose)}
@media(max-width:680px){.wrap{padding:0 24px}}

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5{
  font-family:var(--serif);
  font-weight:400;
  letter-spacing:-0.015em;
  line-height:1.12;
  color:var(--teal);
  font-optical-sizing:auto;
}
h1{font-size:clamp(36px,5.2vw,62px);font-weight:300}
h2{font-size:clamp(28px,3.6vw,44px);font-weight:400}
h3{font-size:clamp(22px,2.2vw,30px);font-weight:500}
h4{font-size:20px;font-weight:500}
h5{font-size:16px;font-weight:500;font-family:var(--sans);letter-spacing:0.02em}
p{color:var(--charcoal);margin-bottom:1em}
p.lead{font-size:clamp(17px,1.5vw,20px);line-height:1.6;color:var(--slate);max-width:640px}

.eyebrow{
  font-family:var(--sans);
  font-size:12px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:500;
  margin-bottom:20px;
  display:inline-block;
}

.rule{
  width:40px;height:1px;background:var(--gold);
  display:block;margin:28px 0;
}
.rule-center{margin-left:auto;margin-right:auto}

/* ---------- Navigation ---------- */
nav.top{
  position:sticky;top:0;z-index:60;
  background:rgba(246,242,234,0.94);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
}
nav.top .wrap{
  display:flex;align-items:center;justify-content:space-between;
  padding-top:22px;padding-bottom:22px;
}
.logo{
  font-family:var(--serif);
  font-size:22px;
  color:var(--teal);
  font-weight:500;
  display:flex;align-items:baseline;gap:6px;
}
.logo-mark{
  display:inline-block;
  width:8px;height:8px;
  background:var(--gold);
  border-radius:50%;
  margin:0 2px 2px;
}
.nav-links{display:flex;gap:36px;align-items:center}
.nav-links a{
  font-size:14px;color:var(--charcoal);
  transition:color .2s ease;
  position:relative;
}
.nav-links a:hover{color:var(--gold)}
.nav-links a.active{color:var(--teal)}
.nav-links a.active::after{
  content:"";position:absolute;bottom:-6px;left:0;right:0;
  height:1px;background:var(--gold);
}
.nav-cta{
  font-size:13px;
  padding:11px 22px;
  border:1px solid var(--teal)!important;
  color:var(--teal)!important;
  border-radius:var(--radius);
  transition:all .2s ease;
}
.nav-cta:hover{background:var(--teal);color:var(--ivory)!important}
.nav-lang{
  font-size:12px;
  letter-spacing:0.08em;
  color:var(--slate);
  text-transform:uppercase;
}
.nav-lang .on{color:var(--teal);font-weight:500}
.nav-toggle{display:none}
@media(max-width:960px){
  .nav-links{display:none}
  .nav-toggle{display:flex;flex-direction:column;gap:4px;padding:8px}
  .nav-toggle span{width:22px;height:1.5px;background:var(--teal)}
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;
  padding:18px 32px;
  font-family:var(--sans);
  font-size:14px;
  font-weight:500;
  letter-spacing:0.02em;
  border-radius:var(--radius);
  transition:all .25s ease;
  border:1px solid transparent;
  cursor:pointer;
  text-align:center;
}
.btn-primary{background:var(--teal);color:var(--ivory)}
.btn-primary:hover{background:var(--charcoal)}
.btn-secondary{background:transparent;color:var(--teal);border-color:var(--teal)}
.btn-secondary:hover{background:rgba(11,36,40,0.05)}
.btn-ivory{background:var(--ivory);color:var(--teal)}
.btn-ivory:hover{background:var(--gold-light);color:var(--teal)}
.btn-link{
  color:var(--teal);
  font-size:14px;
  font-weight:500;
  border-bottom:1px solid var(--gold);
  padding-bottom:3px;
  transition:color .2s;
  display:inline-block;
}
.btn-link:hover{color:var(--gold)}
.btn-arrow::after{content:"  →";margin-left:4px;font-family:var(--sans)}

/* ---------- Section framework ---------- */
section{padding:120px 0}
section.tight{padding:88px 0}
section.dense{padding:72px 0}
@media(max-width:860px){
  section{padding:72px 0}
  section.tight{padding:56px 0}
  section.dense{padding:48px 0}
}
.section-head{max-width:720px;margin-bottom:72px}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center}
.section-head h2{margin-top:14px}
.section-head p.lead{margin-top:20px}

/* ---------- Backgrounds ---------- */
.bg-stone{background:var(--stone)}
.bg-ivory{background:var(--ivory)}
.bg-teal{background:var(--teal);color:var(--ivory)}
.bg-teal h1,.bg-teal h2,.bg-teal h3,.bg-teal h4{color:var(--ivory)}
.bg-teal .eyebrow{color:var(--gold-light)}
.bg-teal p{color:rgba(246,242,234,0.82)}

/* ---------- Hero ---------- */
.hero{padding:88px 0 120px;position:relative}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:80px;
  align-items:center;
}
.hero h1{margin-bottom:28px}
.hero .lead{margin-bottom:40px}
.hero-ctas{display:flex;gap:16px;flex-wrap:wrap}
.hero-img{
  aspect-ratio:4/5;
  background:var(--stone);
  border-radius:var(--radius);
  overflow:hidden;
  position:relative;
}
.hero-img img{width:100%;height:100%;object-fit:cover}
.hero-caption{
  font-size:11px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--slate);
  margin-top:16px;
}
@media(max-width:860px){
  .hero{padding:48px 0 72px}
  .hero-grid{grid-template-columns:1fr;gap:48px}
  .hero-img{max-width:520px}
}

/* Secondary hero for interior pages */
.page-hero{
  padding:72px 0 56px;
  border-bottom:1px solid var(--border);
}
.page-hero .eyebrow{margin-bottom:16px}
.page-hero h1{max-width:820px;margin-bottom:24px;font-size:clamp(32px,4.4vw,52px)}
.page-hero p.lead{max-width:680px}

/* ---------- Trust strip ---------- */
.trust{
  padding:22px 0;
  background:var(--ivory-2);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.trust-inner{
  display:flex;justify-content:center;align-items:center;
  gap:40px;flex-wrap:wrap;
  font-size:11px;letter-spacing:0.14em;text-transform:uppercase;
  color:var(--slate);
}
.trust-dot{width:4px;height:4px;background:var(--gold);border-radius:50%;flex-shrink:0}

/* ---------- Two-column editorial ---------- */
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:96px;
  align-items:center;
}
.two-col.narrow{gap:72px}
.two-col .text-col p{color:var(--slate);font-size:17px;margin-bottom:20px}
.two-col .text-col p:last-of-type{margin-bottom:32px}
.two-col .img-col{
  aspect-ratio:5/6;
  background:var(--stone);
  border-radius:var(--radius);
  overflow:hidden;
}
.two-col .img-col img{width:100%;height:100%;object-fit:cover}
.two-col.reverse{grid-template-columns:1fr 1.05fr}
.two-col.reverse .text-col{order:2}
.two-col.reverse .img-col{order:1}
@media(max-width:860px){
  .two-col,.two-col.narrow,.two-col.reverse{grid-template-columns:1fr;gap:48px}
  .two-col.reverse .text-col,.two-col.reverse .img-col{order:initial}
}
.inline-list{list-style:none;padding:0;margin:8px 0 0;display:flex;flex-direction:column;gap:10px}
.inline-list li{position:relative;padding-left:22px;font-size:15px;color:var(--slate);line-height:1.55}
.inline-list li::before{content:"";position:absolute;left:0;top:10px;width:10px;height:1px;background:var(--gold)}

/* ---------- Hex diagram (services > property management) ---------- */
.hex-diagram{margin:0;padding:32px 16px 24px;background:var(--ivory);border:1px solid var(--border);position:relative}
.hex-diagram svg{display:block;width:100%;height:auto;max-width:460px;margin:0 auto}
.hex-diagram .hx-petal{fill:var(--ivory);stroke:var(--gold);stroke-width:1.2}
.hex-diagram .hx-center{fill:var(--teal);stroke:var(--gold);stroke-width:1.6}
.hex-diagram .hx-center-halo{fill:none;stroke:var(--gold);stroke-width:1;opacity:0.35}
.hex-diagram .hx-num{font-family:var(--serif);font-size:7px;font-weight:500;fill:var(--gold);letter-spacing:0.18em;text-transform:uppercase}
.hex-diagram .hx-label{font-family:var(--sans);font-size:6.4px;font-weight:500;fill:var(--teal);letter-spacing:0.01em}
.hex-diagram .hx-center-label{font-family:var(--serif);font-size:8px;font-weight:400;fill:var(--ivory);letter-spacing:0.04em;font-style:italic}
.hex-diagram .hx-center-eyebrow{font-family:var(--sans);font-size:5.2px;font-weight:500;fill:var(--gold);letter-spacing:0.22em;text-transform:uppercase}
.hex-diagram figcaption{margin-top:14px;text-align:center;font-family:var(--sans);font-size:12px;letter-spacing:0.08em;text-transform:uppercase;color:var(--slate)}
.hex-diagram .hx-petal{transition:fill .3s ease}
.hex-diagram .hx-petal-group:hover .hx-petal{fill:#fbf6ec}

/* ---------- Grid cards ---------- */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:32px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:56px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
@media(max-width:960px){.grid-3,.grid-4{grid-template-columns:repeat(2,1fr)}.grid-2{grid-template-columns:1fr;gap:48px}}
@media(max-width:680px){.grid-3,.grid-4{grid-template-columns:1fr}}

/* Numbered why cards */
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--border);
  border:1px solid var(--border);
}
.why-card{background:var(--ivory);padding:48px 36px;transition:background .3s ease}
.why-card:hover{background:var(--ivory-2)}
.why-num{
  font-family:var(--serif);
  font-size:14px;
  color:var(--gold);
  letter-spacing:0.08em;
  margin-bottom:24px;
  font-style:italic;
}
.why-card h3{font-size:22px;margin-bottom:14px;line-height:1.22}
.why-card p{font-size:15px;color:var(--slate);line-height:1.62;margin:0}
.why-card .src{
  display:block;margin-top:16px;
  font-size:11px;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--gold);
}
.why-card .src a{border-bottom:1px solid transparent;transition:border-color .2s}
.why-card .src a:hover{border-color:var(--gold)}
@media(max-width:860px){.why-grid{grid-template-columns:1fr}.why-card{padding:40px 28px}}

/* Who we help cards */
.who-card{
  border:1px solid var(--border);
  background:var(--ivory);
  transition:all .3s ease;
  display:flex;flex-direction:column;
}
.who-card:hover{border-color:var(--teal);transform:translateY(-2px)}
.who-img{aspect-ratio:4/3;background:var(--stone);overflow:hidden}
.who-img img{width:100%;height:100%;object-fit:cover}
.who-body{padding:32px;flex:1;display:flex;flex-direction:column}
.who-tag{
  font-size:11px;letter-spacing:0.14em;text-transform:uppercase;
  color:var(--gold);margin-bottom:14px;
}
.who-body h3{font-size:24px;margin-bottom:14px}
.who-body p{font-size:15px;color:var(--slate);margin-bottom:24px;flex:1}

/* Process steps */
.process-steps{
  display:grid;grid-template-columns:repeat(4,1fr);gap:0;position:relative;
}
.process-steps::before{
  content:"";position:absolute;top:24px;left:12%;right:12%;
  height:1px;background:var(--gold);opacity:0.45;
}
.step{text-align:center;padding:0 20px;background:var(--stone);position:relative}
.step-num{
  width:48px;height:48px;margin:0 auto 28px;
  border:1px solid var(--teal);background:var(--stone);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--serif);font-size:17px;font-style:italic;color:var(--teal);
  position:relative;z-index:1;
}
.step h4{font-size:18px;margin-bottom:12px;color:var(--teal)}
.step p{font-size:14px;color:var(--slate);line-height:1.6}
@media(max-width:860px){
  .process-steps{grid-template-columns:1fr;gap:48px}
  .process-steps::before{display:none}
}

/* Neighborhood cards */
.nbh-card{
  background:var(--ivory);border:1px solid var(--border);
  transition:all .3s ease;display:block;
}
.nbh-card:hover{border-color:var(--teal);transform:translateY(-2px)}
.nbh-img{aspect-ratio:5/3;background:var(--stone);overflow:hidden}
.nbh-img img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.nbh-card:hover .nbh-img img{transform:scale(1.03)}
.nbh-body{padding:28px 28px 32px}
.nbh-body h4{font-size:22px;margin-bottom:6px;font-family:var(--serif);font-weight:500}
.nbh-best{
  font-size:11px;letter-spacing:0.14em;text-transform:uppercase;
  color:var(--gold);margin-bottom:14px;
}
.nbh-body p{font-size:14px;color:var(--slate);margin:0}

/* Testimonial */
.testi{text-align:center;background:var(--ivory)}
.testi blockquote{
  font-family:var(--serif);
  font-size:clamp(24px,3.2vw,36px);
  line-height:1.38;
  color:var(--teal);
  max-width:880px;
  margin:0 auto 40px;
  font-weight:300;
  font-style:italic;
}
.testi blockquote::before{
  content:"";display:block;width:32px;height:1px;
  background:var(--gold);margin:0 auto 40px;
}
.testi-attr{
  font-size:12px;letter-spacing:0.14em;text-transform:uppercase;
  color:var(--slate);
}

/* Lead magnet */
.magnet-grid{
  display:grid;grid-template-columns:1.1fr 1fr;gap:80px;align-items:center;
}
.magnet-text h2{margin-bottom:24px}
.magnet-text p{color:var(--slate);font-size:17px;margin-bottom:32px;max-width:520px}
.magnet-form{display:flex;gap:12px;max-width:480px;flex-wrap:wrap}
.magnet-form input{
  flex:1;min-width:220px;
  padding:18px 20px;
  border:1px solid var(--border-strong);
  background:var(--ivory);
  font-family:var(--sans);font-size:15px;color:var(--charcoal);
  border-radius:var(--radius);outline:none;
  transition:border-color .2s;
}
.magnet-form input:focus{border-color:var(--teal)}
.magnet-note{font-size:13px;color:var(--slate);margin-top:18px}
.magnet-img{
  aspect-ratio:3/4;background:var(--stone);
  border-radius:var(--radius);overflow:hidden;
}
.magnet-img img{width:100%;height:100%;object-fit:cover}
@media(max-width:860px){
  .magnet-grid{grid-template-columns:1fr;gap:56px}
  .magnet-img{max-width:400px}
}

/* Hot CTA */
.hot{background:var(--teal);color:var(--ivory);text-align:center}
.hot .wrap{max-width:780px}
.hot h2{color:var(--ivory);margin-bottom:24px}
.hot p{color:rgba(246,242,234,0.8);font-size:18px;margin:0 auto 40px}
.hot .eyebrow{color:var(--gold-light)}
.hot-secondary{display:block;margin-top:28px;color:rgba(246,242,234,0.7);font-size:14px}
.hot-secondary a{color:var(--gold-light);border-bottom:1px solid rgba(184,153,104,0.45);padding-bottom:2px}

/* ---------- Long-form article styles ---------- */
article.longform{
  max-width:720px;margin:0 auto;padding:80px 0 120px;
}
article.longform .kicker{
  font-size:12px;letter-spacing:0.16em;text-transform:uppercase;
  color:var(--gold);margin-bottom:20px;
}
article.longform h1{
  font-size:clamp(32px,4.4vw,48px);
  margin-bottom:24px;line-height:1.18;
}
article.longform .standfirst{
  font-family:var(--serif);
  font-size:22px;line-height:1.5;color:var(--slate);
  font-style:italic;font-weight:400;
  margin-bottom:40px;
  padding-bottom:32px;border-bottom:1px solid var(--border);
}
article.longform .meta{
  display:flex;gap:24px;font-size:13px;color:var(--slate);
  margin-bottom:56px;
}
article.longform p{
  font-size:18px;line-height:1.72;color:var(--charcoal);
  margin-bottom:1.4em;
}
article.longform h2{
  font-size:28px;margin:56px 0 20px;
}
article.longform h3{
  font-size:22px;margin:40px 0 16px;
}
article.longform ul,article.longform ol{
  margin:0 0 1.4em 20px;
}
article.longform li{font-size:17px;line-height:1.7;margin-bottom:10px}
article.longform a{
  color:var(--teal);
  border-bottom:1px solid var(--gold);
  padding-bottom:1px;
  transition:color .2s;
}
article.longform a:hover{color:var(--gold)}
article.longform blockquote{
  font-family:var(--serif);font-style:italic;
  font-size:24px;line-height:1.45;color:var(--teal);
  border-left:2px solid var(--gold);
  padding:8px 0 8px 28px;
  margin:40px 0;
}
article.longform figure{margin:40px 0}
article.longform figure img{width:100%;border-radius:var(--radius)}
article.longform figcaption{
  font-size:13px;color:var(--slate);margin-top:12px;
  letter-spacing:0.02em;
}
article.longform .sources{
  margin-top:72px;padding-top:32px;
  border-top:1px solid var(--border);
  font-size:14px;color:var(--slate);
}
article.longform .sources h4{
  font-size:12px;letter-spacing:0.16em;text-transform:uppercase;
  color:var(--gold);margin-bottom:20px;font-family:var(--sans);
}
article.longform .sources ol{margin-left:18px}
article.longform .sources li{font-size:13px;line-height:1.6;color:var(--slate);margin-bottom:10px}

/* Blog index */
.post-list{display:grid;gap:48px}
.post-card{
  display:grid;grid-template-columns:1.2fr 2fr;gap:40px;
  padding-bottom:48px;border-bottom:1px solid var(--border);
  align-items:center;
}
.post-card:last-child{border-bottom:none}
.post-card-img{aspect-ratio:4/3;background:var(--stone);overflow:hidden}
.post-card-img img{width:100%;height:100%;object-fit:cover}
.post-card-meta{
  font-size:11px;letter-spacing:0.14em;text-transform:uppercase;
  color:var(--gold);margin-bottom:14px;
}
.post-card h3{
  font-size:26px;margin-bottom:14px;line-height:1.2;
}
.post-card h3 a{color:var(--teal);transition:color .2s}
.post-card h3 a:hover{color:var(--gold)}
.post-card p{font-size:16px;color:var(--slate);margin-bottom:20px}
@media(max-width:760px){.post-card{grid-template-columns:1fr;gap:24px}}

/* Comparison table (cost of living) */
.compare-table{
  width:100%;border-collapse:collapse;
  margin:32px 0;
  font-size:15px;
}
.compare-table th,.compare-table td{
  padding:16px 20px;text-align:left;
  border-bottom:1px solid var(--border);
}
.compare-table th{
  font-family:var(--sans);font-weight:500;
  font-size:12px;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--slate);
}
.compare-table td:first-child{font-weight:500;color:var(--teal)}
.compare-table tbody tr:hover{background:var(--ivory-2)}
.compare-table .pn{color:var(--olive);font-weight:500}

/* FAQ accordion */
.faq-item{
  border-bottom:1px solid var(--border);
  padding:28px 0;
}
.faq-q{
  font-family:var(--serif);
  font-size:22px;
  color:var(--teal);
  font-weight:500;
  margin-bottom:14px;
  cursor:pointer;
  display:flex;justify-content:space-between;align-items:center;
  line-height:1.3;
}
.faq-q::after{content:"+";color:var(--gold);font-size:24px;font-weight:300;margin-left:16px}
.faq-item.open .faq-q::after{content:"–"}
.faq-a{color:var(--slate);font-size:16px;line-height:1.7;padding-right:40px}
.faq-a p{margin-bottom:12px}

/* Contact form */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px}
@media(max-width:860px){.contact-grid{grid-template-columns:1fr;gap:56px}}
.contact-info h3{margin-bottom:24px}
.contact-info p{color:var(--slate);margin-bottom:16px}
.contact-info .detail{
  display:block;padding:14px 0;border-bottom:1px solid var(--border);
  font-size:15px;
}
.contact-info .detail span{
  display:block;font-size:11px;letter-spacing:0.14em;text-transform:uppercase;
  color:var(--gold);margin-bottom:4px;
}
form.contact-form{display:flex;flex-direction:column;gap:20px}
form.contact-form label{
  display:block;font-size:12px;letter-spacing:0.08em;text-transform:uppercase;
  color:var(--slate);margin-bottom:8px;
}
form.contact-form input,form.contact-form textarea,form.contact-form select{
  width:100%;padding:16px 18px;
  border:1px solid var(--border-strong);background:var(--ivory);
  font-family:var(--sans);font-size:15px;color:var(--charcoal);
  border-radius:var(--radius);outline:none;
  transition:border-color .2s;
}
form.contact-form input:focus,form.contact-form textarea:focus{border-color:var(--teal)}
form.contact-form textarea{min-height:140px;resize:vertical}

/* ---------- Footer ---------- */
footer{
  background:var(--charcoal);
  color:rgba(246,242,234,0.7);
  padding:96px 0 40px;
}
.foot-grid{
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:48px;
  margin-bottom:72px;
}
.foot-brand .logo{color:var(--ivory);margin-bottom:24px;display:inline-flex}
.foot-brand p{
  font-size:14px;color:rgba(246,242,234,0.55);
  line-height:1.7;max-width:340px;
}
.foot-col h5{
  font-family:var(--sans);font-size:11px;letter-spacing:0.16em;
  text-transform:uppercase;color:var(--gold-light);
  margin-bottom:24px;font-weight:500;
}
.foot-col a{
  display:block;font-size:14px;
  color:rgba(246,242,234,0.65);
  margin-bottom:14px;transition:color .2s;
}
.foot-col a:hover{color:var(--ivory)}
.foot-bottom{
  border-top:1px solid rgba(246,242,234,0.12);
  padding-top:32px;display:flex;
  justify-content:space-between;flex-wrap:wrap;gap:16px;
  font-size:12px;color:rgba(246,242,234,0.5);
}
@media(max-width:860px){
  .foot-grid{grid-template-columns:1fr 1fr;gap:40px}
  .foot-brand{grid-column:1/-1}
}

/* ---------- Floating WhatsApp ---------- */
.wa{
  position:fixed;bottom:28px;right:28px;
  width:56px;height:56px;
  background:var(--teal);
  border:1px solid var(--gold-light);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:var(--ivory);z-index:100;
  box-shadow:0 14px 36px -10px rgba(0,0,0,0.35);
  transition:all .25s ease;
}
.wa:hover{background:var(--gold-light);color:var(--teal);transform:translateY(-2px)}
.wa svg{width:24px;height:24px}

/* Mobile sticky bar */
.mobile-bar{
  display:none;position:fixed;bottom:0;left:0;right:0;
  background:var(--ivory);border-top:1px solid var(--border);
  padding:12px 16px;gap:10px;z-index:90;
}
.mobile-bar .btn{flex:1;text-align:center;padding:14px;font-size:13px}
@media(max-width:680px){
  .mobile-bar{display:flex}
  body{padding-bottom:84px}
  .wa{bottom:96px;right:20px}
}

/* ---------- Motion ---------- */
.reveal{opacity:0;transform:translateY(16px);transition:opacity .8s ease,transform .8s ease}
.reveal.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
  *{animation:none!important;transition:none!important}
}

/* ---------- Utility ---------- */
.text-center{text-align:center}
.mt-0{margin-top:0}
.mt-s{margin-top:16px}
.mt-m{margin-top:32px}
.mt-l{margin-top:56px}
