/* =========================================================
   POA UAE — Design System
   Aesthetic: refined editorial / legal-modern
   Palette: deep emerald + warm parchment + signal gold
   Type: Fraunces (display, optical-size aware) + Inter Tight (body)
   ========================================================= */

:root {
  /* Brand colors */
  --c-ink:        #0f1d18;       /* near-black with green undertone */
  --c-emerald:    #0a3a2e;       /* primary brand */
  --c-emerald-2:  #0f4d3d;       /* lighter emerald */
  --c-emerald-3:  #d7e7e1;       /* pale emerald wash */
  --c-cream:      #f6f1e7;       /* warm parchment background */
  --c-cream-2:    #ece4d3;       /* deeper parchment for cards */
  --c-gold:       #b8893a;       /* signal accent */
  --c-gold-soft:  #e9d6a8;
  --c-wa:         #25d366;       /* whatsapp green */
  --c-wa-dark:    #128c7e;
  --c-line:       rgba(15, 29, 24, 0.12);
  --c-muted:      #5a6b64;
  --c-white:      #fffdf8;

  /* Type */
  --f-display: 'Fraunces', 'Iowan Old Style', 'Apple Garamond', Georgia, serif;
  --f-body:    'Inter Tight', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Spacing scale */
  --sp-1: .25rem; --sp-2: .5rem; --sp-3: .75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem; --sp-7: 3rem; --sp-8: 4rem; --sp-9: 6rem;

  /* Radius */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(15,29,24,.06), 0 1px 1px rgba(15,29,24,.04);
  --sh-md: 0 8px 24px rgba(15,29,24,.08), 0 2px 6px rgba(15,29,24,.05);
  --sh-lg: 0 30px 60px -20px rgba(15,29,24,.25);

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--c-emerald); text-decoration-color: rgba(10,58,46,.3); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--c-emerald); }

h1,h2,h3,h4 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 0 0 var(--sp-4);
  color: var(--c-ink);
  font-variation-settings: 'opsz' 60;
}
h1 { font-size: clamp(2.2rem, 4.5vw + .5rem, 4rem); font-variation-settings: 'opsz' 144; }
h2 { font-size: clamp(1.6rem, 2.6vw + .4rem, 2.4rem); }
h3 { font-size: clamp(1.25rem, 1.4vw + .4rem, 1.55rem); }
h4 { font-size: 1.1rem; letter-spacing: 0; }

p { margin: 0 0 var(--sp-4); }
.eyebrow {
  font-family: var(--f-body); font-weight: 600; text-transform: uppercase;
  letter-spacing: .14em; font-size: .78rem; color: var(--c-gold);
  margin: 0 0 var(--sp-3);
}

/* ---------- Layout ---------- */
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.container-narrow { width: min(100% - 2rem, var(--container-narrow)); margin-inline: auto; }
section { padding: var(--sp-8) 0; }
@media (min-width: 900px) { section { padding: var(--sp-9) 0; } }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--c-ink); color: var(--c-cream);
  padding: var(--sp-3) var(--sp-4); z-index: 100;
}
.skip-link:focus { left: var(--sp-3); top: var(--sp-3); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,241,231,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--c-line);
}
.header-inner {
  display: flex; align-items: center; gap: var(--sp-5);
  min-height: 70px;
}
.brand {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  text-decoration: none; color: var(--c-emerald); font-weight: 600;
  font-family: var(--f-display); font-size: 1.2rem; letter-spacing: -.01em;
}
.brand-mark { display: inline-flex; align-items: center; }
.brand--light { color: var(--c-cream); }

.primary-nav { margin-left: auto; }
.primary-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: var(--sp-5); align-items: center;
}
.primary-nav > ul > li > a {
  font-weight: 500; text-decoration: none; color: var(--c-ink);
  padding: var(--sp-2) 0; font-size: .98rem;
  position: relative;
}
.primary-nav > ul > li > a:hover { color: var(--c-emerald); }
.primary-nav > ul > li > a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--c-gold); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.primary-nav > ul > li > a:hover::after { transform: scaleX(1); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--r-md);
  min-width: 270px; padding: var(--sp-2); box-shadow: var(--sh-md);
  opacity: 0; visibility: hidden; transform: translateY(-4px); transition: all .18s ease;
  display: block !important;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li { display: block; }
.dropdown a {
  display: block; padding: var(--sp-2) var(--sp-3); border-radius: var(--r-sm);
  text-decoration: none; color: var(--c-ink); font-size: .94rem;
}
.dropdown a:hover { background: var(--c-emerald-3); color: var(--c-emerald); }

.header-cta { margin-left: var(--sp-3); }

.nav-toggle {
  display: none; background: transparent; border: 0; cursor: pointer;
  padding: var(--sp-2); margin-left: auto;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: var(--c-ink); margin: 6px 0;
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 920px) {
  .site-header .header-inner {
    min-height: 64px;
    padding: 10px 0;
    flex-wrap: nowrap;
    gap: 12px;
  }
  .brand {
    font-size: 1rem;
    min-width: 0;
    flex-shrink: 1;
    overflow: hidden;
  }
  .brand-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .brand-mark svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  .nav-toggle {
    display: block;
    flex-shrink: 0;
    margin-left: auto;
  }
  .header-cta { display: none !important; }
  .primary-nav {
    position: fixed; inset: 64px 0 0 0; background: var(--c-cream);
    transform: translateY(-110%); transition: transform .3s ease;
    overflow-y: auto; padding: var(--sp-5);
  }
  .primary-nav.is-open { transform: translateY(0); }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav > ul > li { border-bottom: 1px solid var(--c-line); }
  .primary-nav > ul > li > a { display: block; padding: var(--sp-4) 0; font-size: 1.1rem; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding-left: var(--sp-3); background: transparent;
  }
}

@media (max-width: 420px) {
  .site-header .header-inner { min-height: 58px; }
  .brand { font-size: 0.95rem; }
  .primary-nav { inset: 58px 0 0 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-2); justify-content: center;
  padding: 0.75rem 1.35rem; border-radius: var(--r-pill); font-weight: 600; font-size: .96rem;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--c-wa); color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,.35); }
.btn-primary:hover { background: var(--c-wa-dark); box-shadow: 0 10px 26px rgba(37,211,102,.45); }
.btn-secondary {
  background: var(--c-emerald); color: var(--c-cream);
}
.btn-secondary:hover { background: var(--c-emerald-2); }
.btn-outline {
  background: transparent; color: var(--c-emerald); border-color: var(--c-emerald);
}
.btn-outline:hover { background: var(--c-emerald); color: var(--c-cream); }
.btn-ghost {
  background: transparent; color: var(--c-ink); border-color: var(--c-line);
}
.btn-ghost:hover { background: var(--c-cream-2); }
.btn-lg { padding: 1rem 1.75rem; font-size: 1.05rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: var(--sp-9) 0 var(--sp-8);
  background:
    radial-gradient(800px 500px at 90% -10%, rgba(184,137,58,.15), transparent 60%),
    radial-gradient(700px 500px at -10% 30%, rgba(10,58,46,.12), transparent 60%),
    var(--c-cream);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,29,24,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,29,24,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid; gap: var(--sp-6); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .hero-inner { grid-template-columns: 1.15fr .85fr; gap: var(--sp-8); }
}
.hero h1 { margin-bottom: var(--sp-5); }
.hero .hero-sub {
  font-size: clamp(1.05rem, 1vw + .8rem, 1.25rem); color: var(--c-muted);
  max-width: 56ch; margin-bottom: var(--sp-6);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hero-trust {
  margin-top: var(--sp-7);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-5);
  padding-top: var(--sp-5); border-top: 1px dashed var(--c-line);
}
.hero-trust .stat {
  font-family: var(--f-display); font-size: 1.75rem; font-weight: 600; color: var(--c-emerald);
  line-height: 1; margin-bottom: .25rem;
}
.hero-trust .stat-label { font-size: .85rem; color: var(--c-muted); }

/* Visual side panel of the hero — stylized "document" */
.hero-doc {
  position: relative; aspect-ratio: 4/5;
  background: var(--c-white); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: var(--sp-6);
  transform: rotate(2deg);
  border: 1px solid var(--c-line);
}
.hero-doc::before {
  content:''; position:absolute; inset:-16px -16px auto auto; width: 64px; height: 64px;
  background: var(--c-gold); border-radius: 50%; opacity: .2;
}
.hero-doc-stamp {
  position: absolute; bottom: 20px; right: 20px; width: 110px; height: 110px;
  border: 2px solid var(--c-gold); border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  color: var(--c-gold); font-family: var(--f-display); font-size: .8rem;
  transform: rotate(-12deg); letter-spacing: .08em;
  background: rgba(232,214,168,.18);
}
.hero-doc-stamp strong { display:block; font-size:1rem; }
.hero-doc h3 { font-size: 1.15rem; margin-bottom: var(--sp-4); border-bottom: 1px solid var(--c-line); padding-bottom: var(--sp-3); }
.hero-doc .doc-line {
  height: 10px; background: var(--c-cream-2); border-radius: var(--r-sm); margin-bottom: var(--sp-3);
}
.hero-doc .doc-line.short { width: 60%; }
.hero-doc .doc-line.medium { width: 85%; }
.hero-doc .doc-sig {
  margin-top: var(--sp-5); font-family: 'Fraunces', serif; font-style: italic;
  color: var(--c-emerald); font-size: 1.4rem;
}

/* ---------- Sections / Cards ---------- */
.section-head { max-width: 720px; margin-bottom: var(--sp-7); }
.section-head h2 { margin-bottom: var(--sp-3); }
.section-head p { color: var(--c-muted); font-size: 1.05rem; margin: 0; }
.section-alt { background: var(--c-cream-2); }
.section-dark { background: var(--c-ink); color: var(--c-cream); }
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4 { color: var(--c-cream); }
.section-dark .section-head p { color: rgba(246,241,231,.7); }

.card-grid {
  display: grid; gap: var(--sp-5);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  background: var(--c-white); border-radius: var(--r-md); border: 1px solid var(--c-line);
  padding: var(--sp-6); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: rgba(10,58,46,.25); }
.card h3 { font-size: 1.2rem; margin-bottom: var(--sp-2); }
.card p { color: var(--c-muted); margin-bottom: var(--sp-4); }
.card .card-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--c-emerald-3); color: var(--c-emerald);
  display: grid; place-items: center; margin-bottom: var(--sp-4);
}
.card .card-link {
  margin-top: auto; font-weight: 600; text-decoration: none; color: var(--c-emerald);
  display: inline-flex; align-items: center; gap: var(--sp-2);
}
.card .card-link::after { content: '→'; transition: transform .2s; }
.card .card-link:hover::after { transform: translateX(4px); }

/* ---------- City Tile ---------- */
.city-grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.city-tile {
  position: relative; padding: var(--sp-7) var(--sp-6);
  border-radius: var(--r-lg); overflow: hidden; color: var(--c-cream);
  background: linear-gradient(135deg, var(--c-emerald) 0%, var(--c-emerald-2) 100%);
  text-decoration: none; min-height: 220px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .3s ease;
}
.city-tile::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(400px 200px at 80% 0%, rgba(184,137,58,.3), transparent 60%),
    radial-gradient(300px 200px at 20% 100%, rgba(255,255,255,.07), transparent);
  pointer-events: none;
}
.city-tile:hover { transform: translateY(-5px); }
.city-tile .city-eyebrow {
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--c-gold-soft); margin-bottom: var(--sp-3); position: relative;
}
.city-tile h3 { color: var(--c-cream); font-size: 1.7rem; margin-bottom: var(--sp-2); position: relative; }
.city-tile p { color: rgba(246,241,231,.78); margin: 0; position: relative; font-size: .95rem; }

/* ---------- Process steps ---------- */
.process-grid {
  display: grid; gap: var(--sp-5);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step;
}
.process-step {
  position: relative; padding: var(--sp-6) var(--sp-5) var(--sp-5);
  background: var(--c-white); border-radius: var(--r-md); border: 1px solid var(--c-line);
}
.process-step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: -16px; left: var(--sp-5);
  background: var(--c-ink); color: var(--c-cream);
  padding: var(--sp-1) var(--sp-3); border-radius: var(--r-pill);
  font-family: var(--f-display); font-size: .85rem; letter-spacing: .05em;
}
.process-step h4 { margin: var(--sp-3) 0 var(--sp-2); font-family: var(--f-display); font-size: 1.15rem; }
.process-step p { color: var(--c-muted); font-size: .95rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 880px; }
.faq-item {
  border-bottom: 1px solid var(--c-line); padding: var(--sp-5) 0;
}
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--f-display); font-size: 1.2rem; font-weight: 600; color: var(--c-ink);
  gap: var(--sp-4);
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after {
  content: '+'; flex-shrink: 0; width: 32px; height: 32px;
  display: grid; place-items: center; border: 1px solid var(--c-line);
  border-radius: 50%; font-weight: 400; transition: transform .25s ease, background .2s;
}
.faq-item[open] summary::after { content: '–'; background: var(--c-emerald); color: var(--c-cream); border-color: var(--c-emerald); }
.faq-item .faq-answer { margin-top: var(--sp-3); color: var(--c-muted); }
.faq-item .faq-answer p { margin-bottom: var(--sp-3); }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid; gap: var(--sp-5);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testimonial {
  padding: var(--sp-6); background: var(--c-white); border-radius: var(--r-md); border: 1px solid var(--c-line);
}
.testimonial-quote {
  font-family: var(--f-display); font-size: 1.1rem; line-height: 1.5; margin-bottom: var(--sp-4);
}
.testimonial-quote::before { content: '"'; font-size: 3rem; color: var(--c-gold); line-height: 0; vertical-align: -.4em; margin-right: .15em; }
.testimonial-name { font-weight: 600; }
.testimonial-meta { font-size: .85rem; color: var(--c-muted); }
.stars { color: var(--c-gold); letter-spacing: 2px; margin-bottom: var(--sp-3); }

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--c-emerald) 0%, var(--c-emerald-2) 100%);
  color: var(--c-cream); position: relative; overflow: hidden;
  padding: var(--sp-8) 0;
}
.cta-band::before {
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(500px 300px at 90% 50%, rgba(184,137,58,.18), transparent 60%),
    radial-gradient(400px 300px at 10% 50%, rgba(255,255,255,.05), transparent 60%);
}
.cta-band-inner {
  position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--sp-6);
}
.cta-band h2 { color: var(--c-cream); margin-bottom: var(--sp-3); max-width: 24ch; }
.cta-band-sub { color: rgba(246,241,231,.78); max-width: 50ch; }
.cta-band .eyebrow { color: var(--c-gold-soft); }

/* ---------- Article / prose ---------- */
.prose {
  max-width: 760px; font-size: 1.075rem;
}
.prose h2 { margin-top: var(--sp-7); font-size: 1.7rem; }
.prose h3 { margin-top: var(--sp-6); font-size: 1.3rem; }
.prose h2::before {
  content: ''; display: block; width: 56px; height: 3px; background: var(--c-gold); margin-bottom: var(--sp-4);
}
.prose p { margin-bottom: var(--sp-4); }
.prose ul, .prose ol { padding-left: 1.4rem; margin: 0 0 var(--sp-5); }
.prose li { margin-bottom: var(--sp-2); }
.prose blockquote {
  border-left: 3px solid var(--c-gold); margin: var(--sp-5) 0; padding: var(--sp-3) var(--sp-5);
  font-family: var(--f-display); font-style: italic; font-size: 1.15rem; color: var(--c-emerald);
  background: var(--c-emerald-3);
}
.prose a { font-weight: 500; }
.prose table { width:100%; border-collapse: collapse; margin: var(--sp-5) 0; font-size: .95rem; }
.prose th, .prose td { padding: var(--sp-3); border: 1px solid var(--c-line); text-align: left; }
.prose th { background: var(--c-cream-2); font-family: var(--f-display); }

/* ---------- Sidebar CTA card ---------- */
.sidebar-cta {
  background: var(--c-ink); color: var(--c-cream); padding: var(--sp-6); border-radius: var(--r-md);
  position: sticky; top: 90px;
}
.sidebar-cta h3 { color: var(--c-cream); font-size: 1.35rem; margin-bottom: var(--sp-3); }
.sidebar-cta p { color: rgba(246,241,231,.72); font-size: .95rem; margin-bottom: var(--sp-4); }
.sidebar-cta .btn { width: 100%; }

/* ---------- Article layout ---------- */
.article-layout {
  display: grid; gap: var(--sp-7);
  grid-template-columns: 1fr;
}
@media (min-width: 1000px) {
  .article-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: var(--sp-8); }
}

/* ---------- Page breadcrumb ---------- */
.crumbs {
  font-size: .85rem; color: var(--c-muted); margin: var(--sp-5) 0 0;
}
.crumbs a { color: var(--c-muted); text-decoration: none; }
.crumbs a:hover { color: var(--c-emerald); }
.crumbs span[aria-current="page"] { color: var(--c-ink); }
.crumbs .sep { margin: 0 .4rem; opacity: .5; }

/* ---------- Blog list ---------- */
.post-card {
  background: var(--c-white); border-radius: var(--r-md); border: 1px solid var(--c-line);
  overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit;
  transition: transform .25s ease, box-shadow .2s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.post-card .post-thumb {
  aspect-ratio: 16/10; background: linear-gradient(135deg, var(--c-emerald-3), var(--c-cream-2));
  display: grid; place-items: center; color: var(--c-emerald);
  font-family: var(--f-display); font-size: 2rem;
}
.post-card .post-body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: 1.2rem; margin: var(--sp-2) 0; }
.post-card .post-meta { font-size: .8rem; color: var(--c-muted); margin-top: auto; }
.post-card .post-cat {
  display: inline-block; padding: 2px 10px; background: var(--c-emerald-3);
  color: var(--c-emerald); border-radius: var(--r-pill); font-size: .75rem; font-weight: 600;
  letter-spacing: .03em;
}

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: var(--sp-4); max-width: 560px; }
.form-row label {
  display: block; font-weight: 500; margin-bottom: var(--sp-2); font-size: .92rem;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--c-line); border-radius: var(--r-sm);
  font-family: inherit; font-size: 1rem; background: var(--c-white);
  transition: border .2s, box-shadow .2s;
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none; border-color: var(--c-emerald); box-shadow: 0 0 0 3px rgba(10,58,46,.12);
}
.form-feedback {
  padding: var(--sp-3) var(--sp-4); border-radius: var(--r-sm); margin-bottom: var(--sp-4);
}
.form-feedback.success { background: #e7f4ec; color: #0a5a35; border: 1px solid #b6e0c4; }
.form-feedback.error   { background: #fdecec; color: #8a1f1f; border: 1px solid #f4c0c0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-ink); color: rgba(246,241,231,.78); padding: var(--sp-8) 0 var(--sp-5);
}
.footer-grid {
  display: grid; gap: var(--sp-6);
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  margin-bottom: var(--sp-7);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col h4 { color: var(--c-cream); font-family: var(--f-body); font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: var(--sp-4); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: var(--sp-2); }
.footer-col a { color: rgba(246,241,231,.7); text-decoration: none; font-size: .95rem; }
.footer-col a:hover { color: var(--c-gold-soft); }
.footer-tagline { font-family: var(--f-display); font-size: 1.05rem; color: var(--c-cream); margin: var(--sp-3) 0 var(--sp-4); font-style: italic; }
.footer-contact a { color: rgba(246,241,231,.78); }
.footer-disclaimer {
  border-top: 1px solid rgba(246,241,231,.12);
  padding-top: var(--sp-5); font-size: .82rem; line-height: 1.6; color: rgba(246,241,231,.55);
}
.footer-bottom { margin-top: var(--sp-4); font-size: .8rem; color: rgba(246,241,231,.45); }

/* ---------- WhatsApp Float ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--c-wa); color: #fff;
  display: grid; place-items: center; text-decoration: none;
  box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 4px 10px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float-pulse {
  position: absolute; inset: 0; border-radius: 50%; background: var(--c-wa); opacity: .4;
  animation: waPulse 2.2s ease-out infinite; z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1);    opacity: .4; }
  100% { transform: scale(1.6);  opacity: 0;  }
}
.wa-float-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--c-ink); color: var(--c-cream); padding: 6px 12px; border-radius: var(--r-sm);
  font-size: .85rem; white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; transform: translateY(-50%) translateX(-4px); }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: var(--sp-2); justify-content: center; margin-top: var(--sp-7); list-style: none; padding: 0; }
.pagination a, .pagination span {
  padding: .5rem .9rem; border: 1px solid var(--c-line); border-radius: var(--r-sm);
  text-decoration: none; color: var(--c-ink); font-weight: 500;
}
.pagination .current { background: var(--c-emerald); color: var(--c-cream); border-color: var(--c-emerald); }
.pagination a:hover { background: var(--c-emerald-3); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-7 { margin-top: var(--sp-7); }
.mb-5 { margin-bottom: var(--sp-5); }
.muted { color: var(--c-muted); }

/* ---------- Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.is-visible { opacity: 1; transform: none; }
  .hero h1, .hero .hero-sub, .hero-ctas { animation: heroFade .8s ease both; }
  .hero .hero-sub { animation-delay: .12s; }
  .hero-ctas { animation-delay: .24s; }
  @keyframes heroFade {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
  }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .wa-float, .cta-band, .nav-toggle { display: none; }
}
