/* ==========================================================================
   Fortifend Legal — stylesheet
   Palette: deep navy + brass/gold accent + warm cream ground
   Type: Fraunces (display) + Public Sans (body)
   ========================================================================== */

:root {
  --navy: #0f1f3a;
  --navy-2: #16294c;
  --navy-3: #1e3459;
  --gold: #b9873f;
  --gold-light: #d8ae6e;
  --cream: #f7f3ec;
  --paper: #fffdf9;
  --ink: #1b2130;
  --slate: #5c6472;
  --line: #e6ddc9;
  --white: #ffffff;
  --good: #2f7d5e;
  --shadow: 0 20px 50px -25px rgba(15, 31, 58, 0.35);
  --radius: 4px;
  --maxw: 1180px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --cream: #0c1424;
    --paper: #101a2c;
    --ink: #eee9de;
    --slate: #a9b0bd;
    --line: #26324a;
    --navy: #0a1526;
    --navy-2: #0e1c33;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.brand-font { font-family: "Michroma", "Public Sans", sans-serif; letter-spacing: 0.01em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
  text-wrap: balance;
  margin: 0;
  color: var(--navy);
}
@media (prefers-color-scheme: dark) { h1, h2, h3, h4 { color: var(--ink); } }

p { margin: 0; }
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: 24px;
}

section { padding-block: 88px; }
@media (max-width: 640px) { section { padding-block: 56px; } }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-dark { border-color: var(--navy); color: var(--navy); }
.btn-dark:hover { background: var(--navy); color: var(--white); }
@media (prefers-color-scheme: dark) {
  .btn-dark { border-color: var(--gold); color: var(--gold-light); }
  .btn-dark:hover { background: var(--gold); color: var(--navy); }
}

/* ---------- Disclaimer modal (Bar Council of India advisory) ---------- */
.disclaimer-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10, 16, 30, 0.86);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.disclaimer-card {
  background: var(--paper);
  max-width: 560px;
  width: 100%;
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  text-align: center;
}
.disclaimer-card .mark { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; font-family: "Michroma", "Public Sans", sans-serif; }
.disclaimer-card h2 { margin-top: 10px; font-size: 1.5rem; }
.disclaimer-card p { color: var(--slate); font-size: 0.92rem; margin-top: 16px; text-align: left; }
.disclaimer-card .actions { margin-top: 26px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ---------- Icon watermark ---------- */
.wm-host { position: relative; overflow: hidden; }
.wm-host > .wrap, .wm-host > .foot-grid, .wm-host > .foot-bottom { position: relative; z-index: 1; }
.wm-icon { position: absolute; z-index: 0; pointer-events: none; user-select: none; }
.wm-hero { width: 620px; max-width: 60vw; top: -12%; right: -8%; opacity: 0.09; transform: rotate(-6deg); }
.wm-about { width: 420px; max-width: 55vw; bottom: -14%; left: -9%; opacity: 0.05; transform: rotate(8deg); }
.wm-practice { width: 560px; max-width: 60vw; top: -18%; left: -10%; opacity: 0.06; transform: rotate(-10deg); }
.wm-contact { width: 500px; max-width: 55vw; bottom: -16%; right: -8%; opacity: 0.07; transform: rotate(7deg); }
.wm-footer { width: 300px; max-width: 40vw; bottom: -20%; left: 2%; opacity: 0.06; transform: rotate(-4deg); }
@media (max-width: 640px) {
  .wm-hero, .wm-practice { opacity: 0.06; }
  .wm-about, .wm-contact, .wm-footer { opacity: 0.04; }
}
/* On cream sections the watermark tint must flip with the theme (navy tint reads on
   light cream, but disappears once cream flips dark) — swap to the white-tint asset
   whenever the page is actually rendering in dark colors, covering both automatic
   OS dark mode and an explicit dark-theme override. */
.wm-icon-dark { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .wm-icon-light { display: none; }
  :root:not([data-theme="light"]) .wm-icon-dark { display: block; }
}
:root[data-theme="dark"] .wm-icon-light { display: none; }
:root[data-theme="dark"] .wm-icon-dark { display: block; }

/* ---------- Scroll reveal ----------
   Safe-by-default: content is fully visible unless JS confirms it can run the
   animation (html.js-anim, set at the very top of main.js) and the reveal
   observer is about to take over. This way a script error, a slow connection,
   or a script blocker can never leave real content invisible. */
html.js-anim .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s cubic-bezier(.16,.8,.24,1), transform 0.7s cubic-bezier(.16,.8,.24,1); }
html.js-anim .reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html.js-anim .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 40;
  background: rgba(15, 31, 58, 0.96);
  backdrop-filter: blur(6px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
header.site.scrolled { box-shadow: 0 12px 32px -18px rgba(0,0,0,0.55); background: rgba(15, 31, 58, 0.99); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
.brand .badge {
  width: 42px; height: 42px; border-radius: 10px;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  flex: none; padding: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.brand .badge img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand .name { font-family: "Michroma", "Fraunces", serif; font-size: 0.98rem; font-weight: 400; letter-spacing: 0.01em; }
.brand .name small { display: block; font-family: "Public Sans", sans-serif; font-size: 0.62rem; letter-spacing: 0.18em; color: var(--gold-light); font-weight: 600; text-transform: uppercase; }

nav.links { display: flex; gap: 30px; }
nav.links a { color: rgba(255,255,255,0.82); font-size: 0.92rem; font-weight: 500; transition: color .15s; }
nav.links a:hover { color: var(--gold-light); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-call { color: var(--white); font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.burger { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; padding: 4px; }

@media (max-width: 880px) {
  nav.links { position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 10px 24px 22px; gap: 4px; display: none; }
  nav.links.open { display: flex; }
  nav.links a { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-call span.txt { display: none; }
  .burger { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(ellipse at 20% -10%, var(--navy-3), var(--navy) 60%);
  color: var(--white);
  padding-block: 96px 80px;
}
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .hero .wrap { grid-template-columns: 1fr; } .hero { padding-block: 64px 48px; } }
.hero h1 { color: var(--white); font-size: clamp(2.1rem, 4.2vw, 3.35rem); }
.hero .lede { color: rgba(255,255,255,0.78); font-size: 1.08rem; margin-top: 20px; max-width: 46ch; }
.hero .cta-row { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero .badges { display: flex; gap: 26px; margin-top: 48px; flex-wrap: wrap; }
.hero .badges .b strong { display: block; font-family: "Fraunces", serif; font-size: 1.7rem; color: var(--gold-light); }
.hero .badges .b span { font-size: 0.78rem; color: rgba(255,255,255,0.65); letter-spacing: 0.03em; }

.hero-card {
  background: var(--paper);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.5);
  color: var(--ink);
  transition: transform 0.4s cubic-bezier(.16,.8,.24,1);
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card .row { display: flex; gap: 14px; padding-block: 14px; border-bottom: 1px solid var(--line); }
.hero-card .row:last-child { border-bottom: none; }
.hero-card .row .ico {
  width: 40px; height: 40px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center; flex: none; color: var(--gold);
  font-size: 1.1rem;
}
.hero-card .row .lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate); }
.hero-card .row .val { font-weight: 600; font-size: 0.95rem; margin-top: 2px; }

/* ---------- Section headers ---------- */
.sec-head { max-width: 640px; margin-bottom: 44px; }
.sec-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-top: 8px; }
.sec-head p { color: var(--slate); margin-top: 14px; font-size: 1.02rem; }
.sec-head.center { margin-inline: auto; text-align: center; }

/* ---------- About ---------- */
.about .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
@media (max-width: 880px) { .about .wrap { grid-template-columns: 1fr; } }
.about-copy p { color: var(--slate); margin-top: 16px; }
.about-copy p:first-of-type { margin-top: 0; }
.pillars { display: grid; gap: 18px; }
.pillar { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 20px 22px; display: flex; gap: 16px; transition: transform 0.3s cubic-bezier(.16,.8,.24,1), box-shadow 0.3s ease; }
.pillar:hover { transform: translateX(4px); box-shadow: 0 18px 40px -26px rgba(15,31,58,0.35); }
.pillar .num { font-family: "Fraunces", serif; color: var(--gold); font-size: 1.3rem; flex: none; }
.pillar h4 { font-size: 1rem; }
.pillar p { color: var(--slate); font-size: 0.92rem; margin-top: 6px; }

/* ---------- Practice areas ---------- */
.practice { background: var(--navy); color: var(--white); }
.practice .sec-head p { color: rgba(255,255,255,0.68); }
.practice .eyebrow { color: var(--gold-light); }
.practice .sec-head h2 { color: var(--white); }
.pcards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1080px) { .pcards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pcards { grid-template-columns: 1fr; } }
.pcard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 26px 24px;
  transition: transform 0.3s cubic-bezier(.16,.8,.24,1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pcard:hover { transform: translateY(-6px); background: rgba(255,255,255,0.07); border-color: rgba(216,174,110,0.45); box-shadow: 0 24px 48px -28px rgba(0,0,0,0.6); }
.pcard .icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: rgba(216,174,110,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); flex: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.pcard:hover .icon { background: var(--gold-light); color: var(--navy); transform: scale(1.06); }
.pcard h3 { color: var(--white); font-size: 1.06rem; margin-top: 16px; line-height: 1.25; }
.pcard p { color: rgba(255,255,255,0.68); font-size: 0.88rem; margin-top: 10px; line-height: 1.55; }
.pcard .chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.pcard .chips span { font-size: 0.7rem; padding: 4px 9px; border-radius: 20px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.7); }
.pcard-cta { display: inline-flex; margin-top: 16px; font-size: 0.85rem; font-weight: 700; color: var(--gold-light); border-bottom: 1px solid rgba(216,174,110,0.5); padding-bottom: 2px; transition: color 0.2s ease, border-color 0.2s ease; }
.pcard-cta:hover { color: var(--white); border-color: var(--white); }

/* ---------- Why us stat strip ---------- */
.stats { background: var(--paper); border-block: 1px solid var(--line); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; padding-block: 40px; }
@media (max-width: 780px) { .stats .wrap { grid-template-columns: repeat(2, 1fr); } }
.stats strong { display: block; font-family: "Fraunces", serif; font-size: 2rem; color: var(--navy); }
@media (prefers-color-scheme: dark) { .stats strong { color: var(--gold-light); } }
.stats span { font-size: 0.8rem; color: var(--slate); letter-spacing: 0.02em; }

/* ---------- Presence / Locations ---------- */
.presence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 780px) { .presence-grid { grid-template-columns: 1fr; } }
.presence-group { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 28px 30px; box-shadow: var(--shadow); }
.presence-group h4 { display: flex; align-items: center; gap: 10px; font-family: "Public Sans", sans-serif; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 700; margin: 0 0 18px; }
.presence-cities { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
@media (max-width: 420px) { .presence-cities { grid-template-columns: 1fr; } }
.pcity { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.98rem; padding: 10px 12px; border-radius: 8px; transition: background 0.25s ease, transform 0.25s ease; }
.pcity:hover { background: rgba(184,140,63,0.1); transform: translateX(3px); }
.pcity .pin { color: var(--gold); flex: none; display: flex; }
.pcity small { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); margin-top: 1px; }
.pcity.hq { background: rgba(184,140,63,0.08); }
.pcity.hq .pin { color: var(--gold); }
.pcity.hq small { color: var(--gold); }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (max-width: 780px) { .team-grid { grid-template-columns: 1fr; } }
.tcard { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.35s cubic-bezier(.16,.8,.24,1), box-shadow 0.35s ease; }
.tcard:hover { transform: translateY(-8px); box-shadow: 0 32px 60px -30px rgba(15,31,58,0.45); }
.tcard .photo { aspect-ratio: 4 / 5; overflow: hidden; background: var(--line); }
.tcard .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.tcard:hover .photo img { transform: scale(1.05); }
.tcard .body { padding: 24px 26px 28px; }
.tcard .role { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.tcard h3 { margin-top: 6px; font-size: 1.4rem; }
.tcard .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.tcard .tag { font-size: 0.74rem; background: var(--cream); border: 1px solid var(--line); padding: 4px 10px; border-radius: 20px; color: var(--slate); }
.tcard p.bio { color: var(--slate); margin-top: 14px; font-size: 0.95rem; }
.tcard .li-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
@media (prefers-color-scheme: dark) { .tcard .li-link { color: var(--gold-light); } }

/* ---------- Reviews ---------- */
.reviews { background: var(--cream); }
.review-panel {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 40px; display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center;
  box-shadow: var(--shadow);
}
@media (max-width: 780px) { .review-panel { grid-template-columns: 1fr; text-align: center; } }
.review-panel .stars { color: var(--gold); font-size: 1.5rem; letter-spacing: 3px; }
.review-panel .g-mark { display: flex; align-items: center; gap: 10px; font-family: "Fraunces", serif; font-size: 1.3rem; color: var(--navy); }
@media (prefers-color-scheme: dark) { .review-panel .g-mark { color: var(--ink); } }
.review-panel .copy h3 { font-size: 1.25rem; }
.review-panel .copy p { color: var(--slate); margin-top: 8px; font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  padding: 4px 24px; transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 0; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 1rem;
}
@media (prefers-color-scheme: dark) { .faq-item summary { color: var(--ink); } }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-ic {
  flex: none; width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--line);
  color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: transform .25s ease;
}
.faq-item[open] .faq-ic { transform: rotate(45deg); }
.faq-item p { color: var(--slate); font-size: 0.95rem; padding-bottom: 22px; margin-top: -6px; }

/* ---------- Contact ---------- */
.contact { background: var(--navy); color: var(--white); }
.contact .sec-head h2 { color: var(--white); }
.contact .sec-head p { color: rgba(255,255,255,0.68); }
.contact .eyebrow { color: var(--gold-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.c-info { display: grid; gap: 20px; align-content: start; }
.c-info .item { display: flex; gap: 14px; }
.c-info .ico { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; flex: none; color: var(--gold-light); }
.c-info .lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); }
.c-info .val { font-weight: 600; margin-top: 3px; }
.c-info .val a:hover { color: var(--gold-light); }
.social-row { display: flex; gap: 12px; margin-top: 8px; }
.social-row a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; }
.social-row a:hover { border-color: var(--gold-light); color: var(--gold-light); }

.form-card { background: var(--paper); color: var(--ink); border-radius: 12px; padding: 32px; box-shadow: var(--shadow); }
.trademark-cta { background: rgba(184,140,63,0.1); border: 1px solid rgba(184,140,63,0.35); border-radius: 8px; padding: 12px 16px; font-size: 0.86rem; margin-bottom: 22px; color: var(--ink); }
.trademark-cta a { font-weight: 700; color: var(--gold); }
.trademark-cta a:hover { color: var(--navy); }
@media (prefers-color-scheme: dark) { .trademark-cta a:hover { color: var(--gold-light); } }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; color: var(--slate); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border-radius: 6px; border: 1px solid var(--line);
  background: var(--cream); color: var(--ink); font: inherit;
}
.field textarea { min-height: 110px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.consent-line { display: flex; gap: 10px; align-items: flex-start; font-size: 0.82rem; color: var(--slate); margin-bottom: 18px; }
.consent-line input { margin-top: 3px; }
.form-note { font-size: 0.78rem; color: var(--slate); margin-top: 12px; }

/* ---------- Footer ---------- */
footer.site { background: var(--navy-2); color: rgba(255,255,255,0.65); padding-block: 44px 28px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
@media (max-width: 780px) { .foot-grid { grid-template-columns: 1fr; gap: 28px; } }
.foot-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 14px; font-family: "Public Sans", sans-serif; letter-spacing: 0.03em; }
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: 0.9rem; }
.foot-grid ul a:hover { color: var(--gold-light); }
.foot-logo-card {
  display: inline-block; background: #ffffff; border-radius: 12px;
  padding: 14px 20px 12px; margin-bottom: 16px;
}
.foot-logo-card img { display: block; height: 56px; width: auto; }
.foot-brand p { font-size: 0.9rem; margin-top: 10px; max-width: 34ch; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 36px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; }
.foot-bottom a:hover { color: var(--gold-light); }

/* ---------- Cookie consent ---------- */
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  max-width: 780px; margin-inline: auto;
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 20px 22px;
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
.cookie-bar p { font-size: 0.86rem; color: var(--slate); flex: 1 1 320px; }
.cookie-bar a { text-decoration: underline; color: var(--navy); }
@media (prefers-color-scheme: dark) { .cookie-bar a { color: var(--gold-light); } }
.cookie-actions { display: flex; gap: 10px; flex: none; }
.cookie-actions button { font: inherit; }

/* ---------- Technological cursor + touch trail ---------- */
#trailCanvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9998;
}
#techCursor {
  position: fixed; top: 0; left: 0;
  width: 30px; height: 30px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.05s linear;
  filter: drop-shadow(0 0 5px rgba(184,140,63,0.6)) drop-shadow(0 0 12px rgba(71,155,245,0.4));
}
#techCursor.active { opacity: 1; }
#techCursor img { width: 100%; height: 100%; display: block; }
#techCursor .tc-ring {
  position: absolute; inset: -11px;
  border: 1px solid rgba(216,174,110,0.55);
  border-top-color: rgba(71,155,245,0.75);
  border-radius: 50%;
  animation: tc-spin 2.6s linear infinite;
}
#techCursor .tc-cross {
  position: absolute; inset: -20px;
  background:
    linear-gradient(rgba(216,174,110,0.35), rgba(216,174,110,0.35)) center / 1px 10px no-repeat,
    linear-gradient(90deg, rgba(216,174,110,0.35), rgba(216,174,110,0.35)) center / 10px 1px no-repeat;
  opacity: 0.7;
}
#techCursor.pressed { transform: translate(-50%, -50%) scale(0.82); }
#techCursor.pressed .tc-ring { border-color: rgba(184,140,63,0.9); }
@keyframes tc-spin { to { transform: rotate(360deg); } }

@media (hover: hover) and (pointer: fine) {
  body.tech-cursor-on, body.tech-cursor-on a, body.tech-cursor-on button,
  body.tech-cursor-on input, body.tech-cursor-on textarea, body.tech-cursor-on select,
  body.tech-cursor-on .btn { cursor: none; }
}
@media (prefers-reduced-motion: reduce) {
  #techCursor, #trailCanvas { display: none; }
}

/* ---------- WhatsApp click-to-chat ---------- */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 100px; z-index: 92;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px -10px rgba(0,0,0,0.5);
  transition: transform 0.25s cubic-bezier(.16,.8,.24,1), box-shadow 0.25s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 20px 40px -12px rgba(0,0,0,0.55); }
@media (max-width: 640px) { .whatsapp-float { right: 16px; bottom: 90px; width: 50px; height: 50px; } }

/* ---------- Skip link / focus ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}
