/* =====================================================================
   COMPONENTS — buttons, pills, cards, header, footer, forms, marquee, hero decor
   ===================================================================== */

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2xs);
  font-family: var(--font-display);
  font-weight: 700; font-size: var(--fs-400); line-height: 1.5;
  letter-spacing: -0.02em;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  cursor: pointer; white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease),
              background-color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease),
              opacity var(--dur-fast) var(--ease);
}
.btn:hover { transform: translateY(-0.0625rem); }
.btn--primary { background: var(--accent); color: var(--btn-on-accent); }
.btn--primary:hover { background: var(--accent-hover); }
.btn--outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
/* Subtle: faint fill + a slightly firmer border, keeping the label colour. */
.btn--outline:hover { background: var(--input-bg); border-color: var(--text); }
.btn--dark { background: var(--text); color: var(--bg); }
.btn--dark:hover { opacity: 0.9; }
.btn--sm { font-size: var(--fs-300); padding: 0.5rem 0.875rem; }

/* Arrow is its own fixed-size box so the icon never reflows the label. */
.btn__arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 0.75rem; height: 0.75rem; flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease);
}
.btn__arrow svg { width: 100%; height: 100%; display: block; }
.btn:hover .btn__arrow { transform: translate(0.125rem, -0.125rem); }

/* ===== GLASS (opt-in) =====
   Add `class="… glass"` to any element to give it a frosted-glass surface.
   Purely additive — it sets only background/border/blur/shadow and leaves
   the element's own layout, radius, and colours untouched. */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
}

/* ===== PILLS / BADGES ===== */
.pill {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-xs);
  padding: 0.5rem 0.75rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
}
.pill--filled {
  background: var(--accent); border: none;
  padding: 0.25rem 0.5rem; border-radius: 1.5rem;
}
.pill--filled .t-label { color: var(--btn-on-accent); }

/* ===== TEXT LINK ===== */
.link {
  font-family: var(--font-display);
  font-weight: 700; font-size: var(--fs-300); letter-spacing: -0.02em;
  color: var(--text-sec); border-bottom: 1px solid var(--text);
  padding-bottom: 0.0625rem; transition: color var(--dur-fast) ease;
}
.link:hover { color: var(--text); }

/* ===== CARDS ===== */
.card {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: var(--space-lg);
  transition: background-color var(--dur-base) ease, transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.card:hover {
  background: var(--card-hover);
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-md);
}
/* Revealed cards: `html.js .reveal.is-visible { transform: none }` outranks
   `.card:hover` and kills the lift — re-assert it with higher specificity so
   every card (incl. service cards) lifts consistently on hover. */
html.js .card.reveal.is-visible:hover { transform: translateY(-0.125rem); }

/* ===== ICON BOX ===== */
.icon-box {
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); flex-shrink: 0;
}
.icon-box--accent { background: var(--accent); }
.icon-box--muted  { background: var(--bg); }
[data-palette="ember-dark"] .icon-box--muted { background: var(--bg-alt); }

/* ===== STAR RATING ===== */
.stars { display: flex; align-items: center; gap: var(--space-xs); }
.stars__icons { display: flex; }

/* ===== PLACEHOLDER (project imagery stand-in) ===== */
.placeholder {
  background: repeating-linear-gradient(135deg, var(--bg-alt), var(--bg-alt) 0.5rem, transparent 0.5rem, transparent 1rem);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); overflow: hidden; position: relative;
}
.placeholder span {
  font-family: var(--font-mono); font-size: var(--fs-300);
  color: var(--text-muted); text-transform: lowercase;
}

/* =====================================================================
   HEADER = full-width topbar + a FLOATING navbar card.
   A #header-spacer (height set by JS) pushes page content below the header,
   so the hero is never covered and the topbar can collapse without reflow.
   The navbar uses a 3-track grid (1fr | auto | 1fr) so the links sit dead-
   centre regardless of logo / actions widths.
   ===================================================================== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
}
#header-spacer { height: var(--header-height); }

/* --- Topbar (full-width accent strip; collapses on scroll via max-height) --- */
.topbar {
  background: var(--accent);
  color: var(--btn-on-accent);
  overflow: hidden;
  max-height: 3.5rem;
  transition: max-height var(--dur-base) var(--ease);
}
.header.scrolled .topbar { max-height: 0; }
.topbar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-xs);
  padding-block: 0.75rem;
}
.topbar__link { color: var(--btn-on-accent); text-decoration: underline; }

/* --- Navbar (floating rounded card, centred, capped at container width) --- */
.navbar {
  margin: 0.75rem auto 0;
  width: calc(100% - var(--space-lg) * 2);   /* side gaps → it floats */
  max-width: var(--container-max);
  background: var(--nav-bg);
  -webkit-backdrop-filter: blur(0.6rem);
  backdrop-filter: blur(0.6rem);
  border-radius: var(--radius-lg);
  /* Larger, layered shadow so the floating card separates from same-tone
     content scrolling behind it. */
  box-shadow: 0 0.5rem 2rem var(--nav-shadow), 0 0.125rem 0.5rem var(--nav-shadow);
  transition: box-shadow var(--dur-base) var(--ease), margin var(--dur-base) var(--ease);
}
.header.scrolled .navbar { box-shadow: 0 0.75rem 2.75rem var(--nav-shadow), 0 0.25rem 0.75rem var(--nav-shadow); }
.navbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-md);
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
}

.navbar__logo {
  grid-column: 1; justify-self: start;
  display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.375rem; letter-spacing: -0.07em;
  color: var(--text);
}
.navbar__logo img { width: 1.625rem; height: auto; }
/* Two marks, one per theme: the default (dark-outline) mark vanishes on the
   dark nav, so the cream mark takes over under [data-palette="ember-dark"]. */
.logo-mark--dark { display: none; }
[data-palette="ember-dark"] .logo-mark--light { display: none; }
[data-palette="ember-dark"] .logo-mark--dark { display: block; }
.navbar__logo .dot { color: var(--accent); }

.navbar__links {
  grid-column: 2; justify-self: center;
  display: flex; align-items: center; gap: var(--space-2xs);
}
.navbar__links a {
  font-family: var(--font-display);
  padding: 0.5rem 0.875rem; border-radius: var(--radius-sm);
  font-size: var(--fs-300); font-weight: 700; letter-spacing: -0.02em;
  color: var(--text-sec); white-space: nowrap;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
}
.navbar__links a:hover { background: var(--input-bg); color: var(--text); }
.navbar__links a[aria-current="page"] { color: var(--accent); }

.navbar__actions {
  grid-column: 3; justify-self: end;
  display: flex; align-items: center; gap: var(--space-sm); flex-shrink: 0;
}

/* --- Language toggle --- */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-family: var(--font-display); font-weight: 700; font-size: var(--fs-200);
  letter-spacing: 0.02em; color: var(--text-sec);
  padding: 0.25rem 0.5rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border); white-space: nowrap;
  transition: color var(--dur-fast) ease, border-color var(--dur-fast) ease;
}
.lang-toggle:hover { color: var(--accent); border-color: var(--accent); }
.lang-toggle .lang-cur { color: var(--accent); }
.lang-toggle .lang-sep { opacity: 0.4; }

.hamburger {
  display: none;
  position: relative;
  width: 2.5rem; height: 2.5rem;
  align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 50%;
  transition: background var(--dur-fast) ease, border-color var(--dur-fast) ease;
}
.hamburger:hover { background: var(--input-bg); border-color: var(--accent); }
/* Bars ⇄ X morph in place — the cross sits exactly where the user tapped. */
.hamburger__icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity var(--dur-fast) var(--ease);
}
.hamburger__x { opacity: 0; }
.hamburger.is-open .hamburger__bars { opacity: 0; }
.hamburger.is-open .hamburger__x { opacity: 1; }

/* --- Inline accordion menu (≤999px): unfolds inside the navbar card.
   Height animates via grid-rows 0fr→1fr (no JS measurement). On phones
   (≤767px) it becomes full-height and the page scroll is locked (JS). --- */
.nav-drop {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-base) var(--ease);
}
.navbar.nav-open .nav-drop { grid-template-rows: 1fr; }
/* Clip layer ONLY — no padding/border here, or it would show a sliver while
   collapsed (overflow:hidden zeroes child content, not the element's own box). */
.nav-drop__inner { overflow: hidden; min-height: 0; }
.nav-drop__content {
  display: flex; flex-direction: column; gap: var(--space-2xs);
  margin: 0 0.75rem;
  padding: var(--space-xs) 0 var(--space-sm);
  border-top: 1px solid var(--border-light);
}
.nav-drop a {
  font-family: var(--font-display);
  font-weight: 700; font-size: var(--fs-400); letter-spacing: -0.02em;
  color: var(--text-sec);
  padding: 0.625rem 0.75rem; border-radius: var(--radius-sm);
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
}
.nav-drop a:hover { background: var(--input-bg); color: var(--text); }
.nav-drop a[aria-current="page"] { color: var(--accent); }
.nav-drop__lang {
  display: flex; align-items: center; gap: var(--space-sm);
  padding: var(--space-xs) 0.75rem 0;
}
/* CTA inside the menu — only surfaces at ≤30rem, where the in-bar CTA hides.
   Re-assert white label + accent hover: .nav-drop a (and :hover) out-specify
   .btn--primary and would otherwise grey the text. */
.nav-drop__cta { display: none; margin: 0; }
.nav-drop__cta .btn { width: 100%; justify-content: center; color: var(--btn-on-accent); }
.nav-drop__cta .btn:hover { background: var(--accent-hover); color: var(--btn-on-accent); }

/* --- Theme (dark-mode) toggle — small round icon button --- */
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.125rem; height: 2.125rem; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 50%;
  color: var(--text-sec);
  transition: color var(--dur-fast) ease, border-color var(--dur-fast) ease, background var(--dur-fast) ease;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); background: var(--input-bg); }
.theme-icon { display: block; }
.theme-toggle .icon-sun { display: none; }
[data-palette="ember-dark"] .theme-toggle .icon-moon { display: none; }
[data-palette="ember-dark"] .theme-toggle .icon-sun { display: block; }

/* ===== MARQUEE ===== */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee { overflow: hidden; position: relative; }
.marquee__track {
  display: flex; align-items: center; gap: var(--space-xl);
  width: max-content;
  animation: marquee var(--marquee-speed, 40s) linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__edge {
  position: absolute; top: 0; bottom: 0; width: 5rem; z-index: 1; pointer-events: none;
}
.marquee__edge--l { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee__edge--r { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

/* ===== FORMS ===== */
.field { display: flex; flex-direction: column; gap: var(--space-2xs); }
.field__label {
  font-family: var(--font-display);
  font-size: var(--fs-300); font-weight: 700; letter-spacing: -0.01em; color: var(--text);
}
.field__control,
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: var(--input-bg);
  color: var(--text);
  font-size: var(--fs-300);
  outline: none;
  transition: border-color var(--dur-fast) ease, background var(--dur-fast) ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
/* Hover lives on the fields themselves — a quiet border hint before focus. */
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--border); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 7.5rem; }
.field--error input, .field--error textarea, .field--error .field__control { border-color: #d23a2a; }
.field__error {
  font-size: var(--fs-200); color: #d23a2a; min-height: 1rem;
}

/* ----- Custom form select (mirrors .nav-drop, styled like a field input) ----- */
.form-select { position: relative; }
.form-select__trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-xs);
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: var(--input-bg);
  color: var(--text);
  font-size: var(--fs-300);
  text-align: left; cursor: pointer; outline: none;
  transition: border-color var(--dur-fast) ease, background var(--dur-fast) ease;
}
.form-select__trigger:hover { border-color: var(--border); }
.form-select__trigger[aria-expanded="true"] { border-color: var(--accent); }
.form-select__value--placeholder { color: var(--text-muted); }
.form-select__chevron {
  flex-shrink: 0; color: var(--text-muted);
  transition: transform var(--dur-base) var(--ease);
}
.form-select__trigger[aria-expanded="true"] .form-select__chevron { transform: rotate(180deg); }
.form-select__menu {
  position: absolute; top: calc(100% + 0.375rem); left: 0; right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  list-style: none; margin: 0; padding: var(--space-2xs);
  z-index: 200;
  visibility: hidden; opacity: 0; pointer-events: none;
  transform: translateY(-0.375rem);
  transition: opacity var(--dur-base) ease, transform var(--dur-base) ease, visibility 0s linear var(--dur-base);
}
.form-select__menu.open {
  visibility: visible; opacity: 1; pointer-events: auto;
  transform: translateY(0);
  transition: opacity var(--dur-base) ease, transform var(--dur-base) ease, visibility 0s linear 0s;
}
.form-select__option {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700; font-size: var(--fs-300); letter-spacing: -0.01em;
  color: var(--text-sec); cursor: pointer;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
}
.form-select__option:hover,
.form-select__option[aria-selected="true"] { background: var(--input-bg); color: var(--text); }

/* =====================================================================
   FOOTER
   ===================================================================== */
/* The footer wrapper carries the muted-ember gradient (see --gradient-footer);
   it spans the "Ready when you are" CTA + the footer so they share one flow. */
.footer-wrap { background: var(--gradient-footer); }

.footer-cta {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-lg);
  text-align: center;
  padding-block: var(--space-5xl) var(--space-2xl);
  background: transparent;   /* let the footer-wrap ember gradient show through */
}
.footer-cta__title { max-width: 43.75rem; }

.footer { padding: 0 0 var(--space-2xl); }
.footer__inner {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}
.footer__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: var(--space-lg); margin-bottom: var(--space-md);
}
.footer__wordmark {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 800; letter-spacing: -0.07em;
  color: var(--text); opacity: 0.1;
}
.footer__wordmark .dot { color: var(--accent); }
.footer__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl); align-items: start;
}
.footer__col { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer__col a { font-size: var(--fs-300); color: var(--text-muted); transition: color var(--dur-fast) ease; }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--space-sm);
}
.footer__bottom .footer__legal { display: flex; gap: var(--space-md); }

/* =====================================================================
   SUBPAGE HERO (services / work / contact)
   ===================================================================== */
.subhero {
  position: relative;
  padding-block: var(--space-3xl);     /* #header-spacer already clears the fixed header */
  background: var(--gradient-hero-img);
  overflow: hidden;
}
.subhero__inner {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-md);
  text-align: center; max-width: 46rem; margin-inline: auto;
}
.subhero__lead { color: var(--text); max-width: 38rem; }

/* =====================================================================
   HERO DECOR (parallax-driven layers)
   ===================================================================== */
.hero-decor { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero-grid {
  position: absolute; inset: -10%;
  background-image: radial-gradient(var(--border) 1.1px, transparent 1.1px);
  background-size: 2.125rem 2.125rem; opacity: 0.4;
  -webkit-mask-image: radial-gradient(ellipse 68% 56% at 50% 40%, #000 0%, transparent 74%);
          mask-image: radial-gradient(ellipse 68% 56% at 50% 40%, #000 0%, transparent 74%);
}
.hero-glow {
  position: absolute; left: 50%; top: 36%; transform: translate(-50%, -50%);
  width: 45rem; height: 30rem; border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 60%, transparent), transparent 72%);
  filter: blur(2.875rem); opacity: 0.55;
}
.hero-cursor { position: absolute; display: flex; align-items: flex-start; will-change: transform; }
.hero-cursor svg { filter: drop-shadow(0 0.1875rem 0.375rem rgba(0,0,0,0.18)); }
.hero-cursor__tag {
  margin-left: -0.0625rem; margin-top: 0.8125rem; padding: 0.25rem 0.5625rem;
  border-radius: 0.4375rem 0.4375rem 0.4375rem 0.125rem;
  font-family: var(--font-display);
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.02em; white-space: nowrap;
}
.hero-ring { position: absolute; border: 0.125rem solid var(--accent); border-radius: 50%; opacity: 0.7; }
.hero-diamond { position: absolute; background: var(--accent); border-radius: 0.1875rem; opacity: 0.85; }

@keyframes vm-float-a { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-0.875rem); } }
@keyframes vm-float-b { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(0.75rem); } }
@keyframes vm-spin { to { transform: rotate(360deg); } }
@keyframes vm-bob { 0%, 100% { transform: translateY(0) rotate(45deg); } 50% { transform: translateY(-0.625rem) rotate(45deg); } }

/* Hide busy decor on small screens / reduced motion */
@media (max-width: 64rem) {
  .hero-cursor, .hero-ring, .hero-diamond { display: none; }
}

/* =====================================================================
   RESPONSIVE — named tiers (CLAUDE.md). Scale progressively.
   ===================================================================== */

/* Tablet landscape ≤64rem — tighten gaps */
@media (max-width: 64rem) {
  .navbar__inner { gap: var(--space-md); }
  .navbar__links { gap: 0; }
  .navbar__links a { padding-inline: 0.75rem; }
  .footer__grid { gap: var(--space-xl); }
}

/* ≤999px — desktop nav collapses into the hamburger, which opens the inline
   accordion (.nav-drop) inside the navbar card. CTA stays in the bar. */
@media (max-width: 62.4375rem) {
  .navbar__links { display: none; }
  .hamburger { display: flex; }
  .navbar__inner { gap: var(--space-sm); }
  /* Once the nav collapses, the floating card hugs the edges symmetrically:
     side gap (0.75rem each) matches its 0.75rem top gap below the topbar. */
  .navbar { width: calc(100% - 1.5rem); }
  /* Language + theme toggles move into the accordion panel (.nav-drop__lang). */
  .navbar__actions .lang-toggle,
  .navbar__actions .theme-toggle { display: none; }
}

/* ≤767px — the accordion goes full-height (page scroll is locked via JS).
   min-height/justify-content sit on the base (not `.nav-open`-gated) rule:
   gating them behind `.nav-open` made the content's box snap to its open
   size/alignment the instant the class toggled — decoupled from (and faster
   than) the `.nav-drop` grid-rows transition, so items jumped to the top
   (and the border "caught up" after) on close. Keeping the box geometry
   constant means only the clip window animates. */
@media (max-width: 47.9375rem) {
  .nav-drop__content {
    min-height: calc(100dvh - var(--header-height) - 0.75rem);
    justify-content: center;
  }
  /* Scrolled = topbar collapsed: the header is shorter by the topbar's height,
     so add it back or the menu stops short of the viewport bottom. */
  .header.scrolled .nav-drop__content {
    min-height: calc(100dvh - var(--header-height) + var(--topbar-height, 3.5rem) - 0.75rem);
  }
  .nav-drop a { font-size: var(--fs-700); padding-block: 0.5rem; }
  .nav-drop__lang { justify-content: center; margin-top: var(--space-sm); }
  .footer__top { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
}

/* Phone ≤37.5rem — hamburger rightmost; CTA shrinks. Logo + wordmark always
   stay visible (intentional override of the icon-crop rule). */
@media (max-width: 37.5rem) {
  .navbar__actions { gap: var(--space-xs); }
  .navbar__actions .btn-cta { order: 1; font-size: var(--fs-300); padding: 0.5rem 0.875rem; }
  .hamburger { order: 2; }
  .footer__inner { padding: var(--space-lg); }
}

/* Small phone ≤30rem — topbar text hidden (link only). The in-bar CTA hides
   so the always-visible logo + wordmark and the hamburger fit without overflow;
   the CTA still lives in the popup menu the hamburger opens. */
@media (max-width: 30rem) {
  .topbar .topbar__text { display: none; }
  .navbar__actions .btn-cta { display: none; }
  /* CTA relocates into the popup menu the hamburger opens. */
  .nav-drop__cta { display: block; }
}

/* =====================================================================
   CONTACT ACTIONS — low-commitment "call / WhatsApp" buttons.
   The hrefs + visible numbers are filled by JS from one config in main.js
   (data-contact="call|whatsapp"), so numbers live in a single place.
   ===================================================================== */
.contact-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-sm);
}
.btn--whatsapp { background: #25D366; color: #0b3d1f; }
.btn--whatsapp:hover { background: #1ebe5b; }
.btn__ico { display: inline-flex; width: 1.125rem; height: 1.125rem; flex-shrink: 0; }
.btn__ico svg { width: 100%; height: 100%; display: block; }

/* Reassurance microcopy under a CTA cluster (risk reversal) */
.cta-reassure {
  display: flex; align-items: center; gap: var(--space-2xs);
  color: var(--text-muted); font-size: var(--fs-200);
}
.cta-reassure svg { flex-shrink: 0; color: var(--accent); }
