/* ==========================================================================
   Vlera Consulting — stylesheet (v2 redesign)
   ONE shared stylesheet for both languages (sq + en). Never per-language.
   Mobile-first: base styles target phones; `min-width` queries layer up.
   All design values are CSS custom properties (single-edit brand swap).
   Self-hosted fonts, no CDN, no UI kit, no @import of a remote sheet (PERF).
   Design ported from the Claude Design mockup; Newsreader→Fraunces,
   Hanken Grotesk→Inter so the privacy promise (self-hosted fonts) holds.
   ========================================================================== */

/* ---------- @font-face (3 faces, self-hosted, swap) ----------------------- */
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design tokens (:root) ----------------------------------------- */
:root {
  /* Surfaces */
  --c-bg: #FBFCFD;            /* dominant off-white surface */
  --c-bg-alt: #F2F6F8;        /* faq / alt band */
  --c-card: #FFFFFF;          /* card surface */

  /* Navy family (structural chrome, dark sections) */
  --c-navy: #0E2B49;
  --c-navy-deep: #0A2138;
  --c-navy-ink: #10314F;      /* headings on light */
  --c-navy-ink-2: #13324E;

  /* Teal accent family */
  --c-teal: #0E8C7B;          /* primary accent — buttons, kickers */
  --c-teal-hover: #0C7A6B;
  --c-teal-bright: #16B8A6;   /* hero CTA / process badges */
  --c-teal-bright-2: #23C9B6;
  --c-teal-light: #48D3BF;    /* accent on navy */
  --c-teal-mist: #9FE6D8;
  --c-teal-wash: #E9F6F2;     /* icon tile bg on light */

  /* Text */
  --c-text: #3A4A5C;          /* body copy on light */
  --c-text-strong: #2B3A4B;
  --c-muted: #5A6A7A;         /* supporting copy */
  --c-meta: #9AA8B5;          /* labels / meta */
  --c-on-navy: #EAF1F6;       /* body on navy */
  --c-on-navy-soft: #BFD0DC;
  --c-on-navy-muted: #A9BECD;
  --c-on-navy-faint: #8DA1B2;

  /* Lines */
  --c-line: #E7EDF2;
  --c-line-2: #E2EAEF;
  --c-line-input: #D8E1E8;
  --c-line-navy: rgba(255,255,255,0.10);

  --c-danger: #B42318;        /* form validation */

  /* Spacing — 8-point grid */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;

  /* Layout */
  --header-h: 72px;
  --content-max: 1180px;
  --gutter: clamp(18px, 4vw, 40px);
  --section-y: clamp(64px, 9vw, 108px);

  /* Radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 20px;

  /* Type — families */
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Type — fluid sizes */
  --fs-body: 16px;
  --fs-display: clamp(2.3rem, 6.2vw, 4rem);
  --fs-h2: clamp(1.9rem, 4.4vw, 2.7rem);
  --fs-h3: 1.32rem;

  /* Shadows */
  --sh-card: 0 1px 2px rgba(16,49,79,0.04);
  --sh-card-hover: 0 22px 44px rgba(16,49,79,0.10);
  --sh-cta: 0 10px 24px rgba(14,140,123,0.26);
}

/* ---------- Minimal reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, picture, svg, video { max-width: 100%; height: auto; display: block; }
input, button, textarea, select { font: inherit; }
ul[class], ol[class] { list-style: none; padding: 0; }
a { color: var(--c-navy-ink); }
::selection { background: var(--c-teal); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-navy-ink);
  letter-spacing: -0.02em;
}

/* ---------- Scroll behavior ----------------------------------------------- */
html { scroll-padding-top: calc(var(--header-h) + 8px); }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* ---------- Reveal-on-load (respects reduced motion) ---------------------- */
@keyframes vlFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- Skip link ----------------------------------------------------- */
.skip-link {
  position: absolute;
  left: var(--space-xs);
  top: var(--space-xs);
  z-index: 100;
  padding: var(--space-xs) var(--space-sm);
  background: var(--c-navy);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 120ms ease;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--c-teal-light);
  outline-offset: 2px;
}

/* ---------- Shared layout primitives -------------------------------------- */
.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--light { background: var(--c-bg); }

.hidden { display: none !important; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* Section header (kicker + heading + sub) */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--c-teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  display: block;
}
.kicker--center { justify-content: center; }
.kicker--center::before { display: none; }
.kicker--ondark { color: var(--c-teal-light); }

.section-head { max-width: 640px; }
.section-head__title {
  font-size: var(--fs-h2);
  line-height: 1.1;
  color: var(--c-navy-ink);
  margin-top: var(--space-sm);
}
.section-head__sub {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--c-muted);
  margin-top: var(--space-sm);
}

/* ---------- Buttons ------------------------------------------------------- */
.btn-primary,
.btn-secondary,
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 12px;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn-primary {
  background: var(--c-teal);
  color: #fff;
  padding: 13px 22px;
  font-size: 15px;
  box-shadow: 0 6px 16px rgba(14,140,123,0.22);
}
.btn-primary:hover { background: var(--c-teal-hover); }

.btn-secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--c-on-navy);
  padding: 14px 24px;
  font-size: 16px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }

.btn-wa {
  background: var(--c-teal);
  color: #fff;
  padding: 12px 16px;
  font-size: 14.5px;
  width: 100%;
}
.btn-wa:hover { background: var(--c-teal-hover); }
.btn-wa svg { width: 17px; height: 17px; fill: currentColor; flex: none; }

/* Big bright hero CTA */
.btn-hero {
  background: var(--c-teal-bright);
  color: #06231F;
  padding: 15px 26px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(22,184,166,0.32);
}
.btn-hero:hover { background: var(--c-teal-bright-2); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251,252,253,0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
  padding-inline: var(--gutter);
  max-width: var(--content-max);
  margin-inline: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex: none;
}
.brand__mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(150deg, #0F3052, var(--c-teal));
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(14,140,123,0.28);
}
.brand__name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  color: var(--c-navy-ink);
  letter-spacing: -0.01em;
}

.nav-menu { display: none; }
.nav-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0; padding: 0;
}
.nav-menu a {
  text-decoration: none;
  color: #48586A;
  font-size: 15px;
  font-weight: 500;
}
.nav-menu a:hover { color: var(--c-teal); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 600;
}
.lang-switch a {
  text-decoration: none;
  color: var(--c-meta);
  padding: 4px 6px;
  border-radius: 6px;
}
.lang-switch a[aria-current="true"] { color: var(--c-teal); }
.lang-switch span { color: #D3DBE2; }

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}
.header-cta { display: none; white-space: nowrap; }

.nav-toggle {
  border: 1px solid #DBE3EA;
  background: #fff;
  width: 42px; height: 42px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-navy-ink);
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before { position: absolute; top: -6px; }
.nav-toggle__bars::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { top: 0; transform: rotate(-45deg); }

/* Mobile drawer (nav-menu shown when JS removes [hidden]) */
@media (max-width: 919.98px) {
  .nav-menu:not([hidden]) {
    display: block;
    position: absolute;
    left: 0; right: 0;
    top: var(--header-h);
    background: var(--c-bg);
    border-top: 1px solid #EEF2F5;
    border-bottom: 1px solid var(--c-line);
    padding: 10px var(--gutter) 22px;
    box-shadow: 0 18px 40px rgba(10,33,56,0.10);
    animation: vlFade .2s ease;
  }
  .nav-menu:not([hidden]) ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-menu:not([hidden]) li a {
    display: block;
    font-size: 17px;
    color: var(--c-text-strong);
    padding: 13px 6px;
    border-bottom: 1px solid #F0F3F6;
  }
  .nav-menu:not([hidden]) .lang-switch {
    margin-top: 14px;
    font-size: 15px;
  }
}

@media (min-width: 920px) {
  .nav-menu {
    display: flex !important;
    align-items: center;
    gap: 28px;
  }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: radial-gradient(120% 120% at 85% 0%, #14406B 0%, var(--c-navy) 46%, var(--c-navy-deep) 100%);
  color: var(--c-on-navy);
  overflow: hidden;
}
.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  top: -120px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,182,166,0.22), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: var(--content-max);
  margin-inline: auto;
  padding: clamp(48px,8vw,92px) var(--gutter) clamp(40px,6vw,76px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px,5vw,60px);
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-teal-mist);
  font-weight: 600;
  background: rgba(255,255,255,0.04);
}
.hero__eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-teal-bright);
  box-shadow: 0 0 0 4px rgba(22,184,166,0.22);
  flex: none;
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-display);
  line-height: 1.04;
  color: #fff;
  margin-top: 22px;
}
.hero__title-accent {
  color: var(--c-teal-light);
  font-style: italic;
  font-weight: 600;
}
.hero__lead {
  font-size: clamp(1.05rem, 2.3vw, 1.22rem);
  line-height: 1.65;
  color: var(--c-on-navy-soft);
  margin-top: 22px;
  max-width: 34em;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}
.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  list-style: none;
  padding: 0;
}
.hero__points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: #CDDAE4;
  font-weight: 500;
}
.hero__points svg { width: 17px; height: 17px; stroke: var(--c-teal-light); flex: none; }

.hero__media { position: relative; }
.hero__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 540px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}
.hero__card {
  position: absolute;
  left: -6px; bottom: 22px;
  background: rgba(251,252,253,0.97);
  color: var(--c-navy-ink);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 235px;
}
.hero__card-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--c-teal-wash);
  display: grid;
  place-items: center;
  flex: none;
}
.hero__card-icon svg { width: 22px; height: 22px; stroke: var(--c-teal); }
.hero__card-title { font-size: 13.5px; font-weight: 700; line-height: 1.25; }
.hero__card-sub { font-size: 12.5px; color: #6B7B8A; margin-top: 2px; }

.hero__disclaimer {
  margin-top: clamp(38px,5vw,60px);
  padding-top: 26px;
  border-top: 1px solid var(--c-line-navy);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--c-on-navy-faint);
  max-width: 62em;
}

@media (min-width: 780px) {
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services { background: var(--c-bg); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 20px;
  margin-top: clamp(36px,5vw,52px);
}
.service-card {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-card);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-card-hover);
  border-color: #CFE9E2;
}
.service-card__icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--c-teal-wash);
  display: grid;
  place-items: center;
  color: var(--c-teal);
  margin-bottom: 20px;
}
.service-card__icon svg { width: 25px; height: 25px; }
.service-card h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-h3);
  line-height: 1.2;
  color: var(--c-navy-ink-2);
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--c-muted);
  margin-top: 11px;
  flex: 1;
}
.service-card .btn-wa { margin-top: 22px; }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process {
  background: var(--c-navy);
  color: var(--c-on-navy);
  position: relative;
  overflow: hidden;
}
.process__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.process .container { position: relative; }
.process__title {
  color: #fff;
  font-size: var(--fs-h2);
  line-height: 1.1;
  margin: var(--space-sm) 0 clamp(40px,5vw,56px);
  max-width: 14em;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  list-style: none;
  padding: 0;
  counter-reset: step;
}
.process-step { position: relative; }
.process-step__top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.process-step__num {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: linear-gradient(150deg, var(--c-teal-bright), var(--c-teal));
  color: #06231F;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 21px;
  flex: none;
  box-shadow: 0 8px 20px rgba(22,184,166,0.28);
}
.process-step__line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(72,211,191,0.4), transparent);
}
.process-step h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  color: #fff;
  margin-top: 20px;
}
.process-step p {
  font-size: 0.97rem;
  line-height: 1.62;
  color: var(--c-on-navy-muted);
  margin-top: 9px;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { background: var(--c-bg); }
.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(36px,6vw,72px);
  align-items: center;
}
.owner-photo {
  position: relative;
  max-width: 440px;
  margin: 0;
}
.owner-photo__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 54px rgba(16,49,79,0.16);
}
.owner-photo__badge {
  position: absolute;
  right: -10px; bottom: -14px;
  background: var(--c-teal);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--r-md);
  box-shadow: 0 14px 32px rgba(14,140,123,0.32);
}
.owner-photo__name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
}
.owner-photo__role { font-size: 12.5px; opacity: 0.85; margin-top: 2px; }

.about__text-title {
  font-size: var(--fs-h2);
  line-height: 1.12;
  color: var(--c-navy-ink);
  margin-top: var(--space-sm);
}
.about__quote {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  line-height: 1.55;
  color: #33475A;
  margin-top: 24px;
  font-style: italic;
  letter-spacing: -0.01em;
}
.about__story {
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--c-muted);
  margin-top: 20px;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery {
  background: linear-gradient(180deg, var(--c-navy-deep), var(--c-navy));
  color: var(--c-on-navy);
}
.gallery__title { color: #fff; margin-top: var(--space-sm); }
.gallery__sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-on-navy-muted);
  margin: 14px 0 clamp(34px,4vw,48px);
  max-width: 40em;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
}
.gallery-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--r-md);
}
.gallery-tile__name {
  display: block;
  font-size: 13px;
  color: #9FB3C2;
  margin-top: 9px;
  font-weight: 500;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  background: var(--c-bg);
  padding-block: clamp(54px,7vw,84px);
  text-align: center;
}
.testimonials .container { max-width: 760px; }
.testimonials__icon { margin: 0 auto; fill: #CFE9E2; width: 40px; height: 40px; }
.testimonials .kicker { margin-top: 22px; }
.testimonials__title {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  line-height: 1.18;
  color: var(--c-navy-ink);
  margin-top: 14px;
}
.testimonial-placeholder {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--c-muted);
  margin-top: 18px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--c-bg-alt); }
.faq .container { max-width: 820px; }
.faq__head { text-align: center; }
.faq__title {
  font-size: var(--fs-h2);
  line-height: 1.1;
  color: var(--c-navy-ink);
  margin: 14px 0 clamp(34px,4vw,48px);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--c-line-2);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-card);
}
.faq-item details { width: 100%; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.12rem;
  color: #16324C;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 30px; height: 30px;
  border-radius: 8px;
  background: #EAF1F1;
  flex: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230E8C7B' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .28s ease, background-color .2s ease;
}
.faq-item details[open] summary::after {
  transform: rotate(180deg);
  background-color: var(--c-teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}
.faq-item__answer p {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 1rem;
  line-height: 1.68;
  color: #566876;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { background: var(--c-bg); }
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px,5vw,64px);
}
.contact__sub {
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--c-muted);
  margin: 16px 0 32px;
  max-width: 30em;
}
.contact-nap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-nap__item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-decoration: none;
}
.contact-nap__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-teal-wash);
  color: var(--c-teal);
  display: grid;
  place-items: center;
  flex: none;
}
.contact-nap__icon svg { width: 21px; height: 21px; }
.contact-nap__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-meta);
}
.contact-nap__value {
  display: block;
  font-size: 15.5px;
  color: var(--c-text-strong);
  font-weight: 500;
  margin-top: 3px;
  line-height: 1.45;
}
.contact-nap__value span { display: block; }

.map-facade { margin-top: 32px; }
.map-facade iframe {
  width: 100%;
  height: 220px;
  display: block;
  border: 1px solid var(--c-line-2);
  border-radius: 16px;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: clamp(26px,3.5vw,38px);
  box-shadow: 0 18px 44px rgba(16,49,79,0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--c-navy-ink-2);
  margin-bottom: 6px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: #46586B;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--c-line-input);
  border-radius: var(--r-sm);
  background: var(--c-bg);
  color: #1F2F3E;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--c-teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(14,140,123,0.12);
}
.contact-form .btn-primary {
  margin-top: 4px;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: var(--sh-cta);
}
.field-error {
  font-size: 12.5px;
  color: var(--c-danger);
}
.field-error:empty { display: none; }
.form-note {
  font-size: 12.5px;
  color: var(--c-meta);
  text-align: center;
  margin: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--c-navy-deep);
  color: var(--c-on-navy-muted);
  padding: clamp(48px,6vw,72px) var(--gutter) 36px;
}
.site-footer__inner {
  max-width: var(--content-max);
  margin-inline: auto;
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand__row {
  display: flex;
  align-items: center;
  gap: 11px;
}
.footer-brand__row .brand__name { color: #fff; font-size: 19px; }
.footer-brand__tagline {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 24em;
  color: var(--c-on-navy-faint);
}
.footer-meta { font-size: 13.5px; margin-top: 18px; color: #7E93A4; }
.footer-meta + .footer-meta { margin-top: 6px; }

.footer-col__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5E7384;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 18px;
}
.footer-links a {
  text-decoration: none;
  color: var(--c-on-navy-muted);
  font-size: 14.5px;
}
.footer-links a:hover { color: var(--c-teal-light); }
.footer-col__body {
  font-size: 14.5px;
  line-height: 1.7;
  margin-top: 18px;
  color: var(--c-on-navy-muted);
  max-width: 24em;
}
.footer-col__body a { color: var(--c-on-navy-muted); text-decoration: none; display: block; margin-top: 10px; }

.footer-disclaimer {
  font-size: 13px;
  line-height: 1.6;
  color: #7E93A4;
  margin-top: 28px;
  max-width: 64em;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
  font-size: 13px;
  color: #6E8395;
}
.footer-bottom a { color: #6E8395; text-decoration: none; }
.footer-bottom a:hover { color: var(--c-teal-light); }

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  z-index: 80;
  width: min(680px, calc(100% - 28px));
  background: #fff;
  border: 1px solid var(--c-line-2);
  border-radius: var(--r-md);
  box-shadow: 0 18px 50px rgba(10,33,56,0.22);
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__text {
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-size: 13px;
  line-height: 1.55;
  color: #566876;
}
.cookie-banner__text a { color: var(--c-teal); }
.cookie-banner__dismiss {
  border: none;
  cursor: pointer;
  background: var(--c-teal);
  color: #fff;
  padding: 11px 20px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  flex: none;
}
.cookie-banner__dismiss:hover { background: var(--c-teal-hover); }

/* ==========================================================================
   STICKY WHATSAPP FLOAT
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(37,211,102,0.4);
  transition: transform .2s ease, opacity .25s ease, visibility .25s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.wa-float__icon { width: 30px; height: 30px; }

/* ==========================================================================
   PRIVACY PAGE
   ========================================================================== */
.privacy {
  padding-block: clamp(48px, 7vw, 88px);
}
.privacy .container { max-width: 760px; }
.privacy__title {
  font-size: var(--fs-h2);
  color: var(--c-navy-ink);
}
.privacy__updated {
  font-size: 13px;
  color: var(--c-meta);
  margin-top: var(--space-xs);
}
.privacy__intro {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--c-muted);
  margin-top: var(--space-md);
}
.privacy h2 {
  font-size: 1.4rem;
  color: var(--c-navy-ink-2);
  margin-top: var(--space-xl);
}
.privacy p { line-height: 1.7; color: var(--c-muted); margin-top: var(--space-sm); }
.privacy a { color: var(--c-teal); }
.privacy__contact { margin-top: var(--space-xl); }
.privacy__back { margin-top: var(--space-md); }

/* ==========================================================================
   FOCUS / MOTION
   ========================================================================== */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--c-teal);
  outline-offset: 2px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
