/* ==========================================================================
   BLESSING SEFAH CURTAINS & BLINDS DECO
   Premium curtains, blinds & interior decor - Takoradi, Ghana
   --------------------------------------------------------------------------
   Stylesheet map
   01. Design tokens (CSS custom properties)
   02. Reset & base
   03. Typography
   04. Layout primitives (container, section, grid helpers)
   05. Buttons & links
   06. Eyebrow / section heading system
   07. Header & navigation
   08. Hero
   09. Brand story
   10. Statistics
   11. Services
   12. Signature services marquee (horizontal scroll)
   13. Portfolio
   14. Why choose us
   15. Process
   16. Before / after comparison
   17. Gallery & lightbox
   18. Testimonials
   19. FAQ
   20. Contact & forms
   21. Call-to-action band
   22. Footer
   23. Floating UI (WhatsApp, back-to-top, scroll progress, cursor)
   24. Inner pages (page hero, breadcrumb, blog, article, legal, 404)
   25. Animation utilities
   26. Responsive refinements
   27. Reduced motion, print, forced colors
   ========================================================================== */

/* ==========================================================================
   01. DESIGN TOKENS
   ========================================================================== */

:root {
  /* Brand palette */
  --primary: #171717;          /* deep charcoal / near-black */
  --secondary: #f5f1ea;        /* warm ivory */
  --accent: #b99a63;           /* muted gold / champagne */
  --text: #222222;
  --muted: #777777;
  --white: #ffffff;

  /* Extended neutrals derived from the core palette */
  --primary-soft: #232323;
  --primary-deep: #101010;
  --beige: #e9e2d6;
  --champagne: #d8c7a6;
  --warm-gray: #8d867c;
  --line: #e3ddd3;             /* hairline on light surfaces */
  --line-dark: rgba(255, 255, 255, 0.14);
  --overlay: rgba(15, 15, 15, 0.55);

  /* Typography */
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --fs-eyebrow: 0.75rem;
  --fs-body: 1.0625rem;
  --fs-lead: clamp(1.0625rem, 0.35vw + 1rem, 1.25rem);
  --fs-h6: clamp(1rem, 0.2vw + 0.95rem, 1.125rem);
  --fs-h5: clamp(1.2rem, 0.4vw + 1.05rem, 1.45rem);
  --fs-h4: clamp(1.45rem, 0.9vw + 1.2rem, 2rem);
  --fs-h3: clamp(1.75rem, 1.6vw + 1.3rem, 2.6rem);
  --fs-h2: clamp(2.1rem, 3vw + 1.2rem, 3.9rem);
  --fs-h1: clamp(2.6rem, 5vw + 1rem, 5.6rem);
  --fs-display: clamp(3rem, 7.2vw + 0.5rem, 8rem);

  --lh-tight: 1.04;
  --lh-snug: 1.16;
  --lh-body: 1.75;
  --ls-eyebrow: 0.22em;
  --ls-tight: -0.02em;

  /* Spacing scale (8px base) */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 5.5rem;
  --sp-8: 7.5rem;
  --section-y: clamp(4.5rem, 8vw, 9.5rem);
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --container: 1360px;
  --container-narrow: 940px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 0.28s;
  --dur: 0.55s;
  --dur-slow: 0.9s;

  /* Elevation & radii - kept deliberately restrained */
  --radius: 2px;
  --radius-lg: 4px;
  --shadow-sm: 0 1px 2px rgba(23, 23, 23, 0.06);
  --shadow: 0 18px 45px -28px rgba(23, 23, 23, 0.35);

  /* Chrome */
  --header-h: 92px;
  --header-h-sm: 68px;
  --z-progress: 1080;
  --z-header: 1040;
  --z-float: 1030;
  --z-lightbox: 1090;
  --z-cursor: 1100;
}

/* ==========================================================================
   02. RESET & BASE
   ========================================================================== */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background-color: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Prevent background scroll while a modal surface is open */
body.is-locked { overflow: hidden; }

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

button { font: inherit; color: inherit; }

/* Accessible focus ring - visible on every interactive surface */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius);
}

::selection {
  background: var(--accent);
  color: var(--white);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-2);
  z-index: 1200;
  padding: 0.75rem 1.25rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: var(--sp-2); }

/* Screen-reader-only text */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   03. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6, .display {
  margin: 0 0 var(--sp-2);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  color: var(--primary);
  text-wrap: balance;
}

h1, .h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); }
h2, .h2 { font-size: var(--fs-h2); line-height: var(--lh-tight); }
h3, .h3 { font-size: var(--fs-h3); }
h4, .h4 { font-size: var(--fs-h4); }
h5, .h5 { font-size: var(--fs-h5); }
h6, .h6 { font-size: var(--fs-h6); }

.display {
  font-size: var(--fs-display);
  line-height: 0.98;
}

p { margin: 0 0 var(--sp-2); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.7;
  color: #4a4a4a;
}

.text-muted-warm { color: var(--muted); }
.text-accent { color: var(--accent); }
.italic-accent {
  font-style: italic;
  color: var(--accent);
}

/* Small caps utility used for labels, categories, meta rows */
.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--muted);
}

.rich-text > * + * { margin-top: var(--sp-2); }
.rich-text h2 { margin-top: var(--sp-5); font-size: var(--fs-h3); }
.rich-text h3 { margin-top: var(--sp-4); font-size: var(--fs-h4); }
.rich-text ul,
.rich-text ol { margin: var(--sp-2) 0; padding-left: 1.25rem; }
.rich-text li {
  list-style: disc;
  margin-bottom: 0.5rem;
  padding-left: 0.35rem;
}
.rich-text ol li { list-style: decimal; }
.rich-text a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.rich-text a:hover { color: var(--accent); }
.rich-text blockquote {
  margin: var(--sp-4) 0;
  padding: var(--sp-3) 0 var(--sp-3) var(--sp-3);
  border-left: 2px solid var(--accent);
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-style: italic;
  line-height: 1.4;
  color: var(--primary);
}

/* ==========================================================================
   04. LAYOUT PRIMITIVES
   ========================================================================== */

.shell {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--narrow { max-width: var(--container-narrow); }
.shell--wide { max-width: 1680px; }

.section {
  position: relative;
  padding-block: var(--section-y);
}
.section--tight { padding-block: clamp(3rem, 5vw, 5.5rem); }
.section--flush-top { padding-top: 0; }
.section--flush-bottom { padding-bottom: 0; }

.surface-ivory { background: var(--secondary); }
.surface-beige { background: var(--beige); }
.surface-dark {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.78);
}
.surface-dark h1,
.surface-dark h2,
.surface-dark h3,
.surface-dark h4,
.surface-dark h5,
.surface-dark h6 { color: var(--white); }
.surface-dark .lead { color: rgba(255, 255, 255, 0.72); }
.surface-dark .label { color: var(--champagne); }

.rule {
  height: 1px;
  border: 0;
  margin: 0;
  background: var(--line);
}
.surface-dark .rule { background: var(--line-dark); }

/* Two-column editorial split */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split--sticky > :first-child {
    position: sticky;
    top: calc(var(--header-h) + var(--sp-4));
  }
  .split--40-60 { grid-template-columns: minmax(0, 4fr) minmax(0, 6fr); }
  .split--60-40 { grid-template-columns: minmax(0, 6fr) minmax(0, 4fr); }
}

/* Media frames -------------------------------------------------------------- */
.frame {
  position: relative;
  overflow: hidden;
  background: var(--beige);
}
.frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame--portrait { aspect-ratio: 3 / 4; }
.frame--square { aspect-ratio: 1 / 1; }
.frame--landscape { aspect-ratio: 4 / 3; }
.frame--wide { aspect-ratio: 16 / 9; }
.frame--tall { aspect-ratio: 2 / 3; }

/* Offset editorial image composition */
.compose {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.compose__main { grid-column: 1 / span 5; }
.compose__inset {
  grid-column: 4 / span 3;
  margin-top: -18%;
  border: 8px solid var(--white);
  z-index: 2;
}
.surface-ivory .compose__inset { border-color: var(--secondary); }

/* Thin gold detail line used as a decorative accent */
.accent-line {
  width: 56px;
  height: 1px;
  background: var(--accent);
  border: 0;
  margin: 0 0 var(--sp-3);
}

/* ==========================================================================
   05. BUTTONS & LINKS
   ========================================================================== */

.btn-bs {
  --btn-bg: var(--primary);
  --btn-fg: var(--white);
  --btn-bd: var(--primary);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 1.85rem;
  border: 1px solid var(--btn-bd);
  border-radius: 0;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out);
}

/* Sliding fill wipe */
.btn-bs::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform var(--dur) var(--ease-out);
}
.btn-bs:hover::before,
.btn-bs:focus-visible::before { transform: translateY(0); }
.btn-bs:hover,
.btn-bs:focus-visible {
  color: var(--white);
  border-color: var(--accent);
}

.btn-bs i,
.btn-bs .btn-bs__icon {
  font-size: 1rem;
  transition: transform var(--dur-fast) var(--ease-out);
}
.btn-bs:hover i,
.btn-bs:hover .btn-bs__icon { transform: translateX(4px); }

/* Variants */
.btn-bs--outline {
  --btn-bg: transparent;
  --btn-fg: var(--primary);
  --btn-bd: rgba(23, 23, 23, 0.25);
}
.btn-bs--light {
  --btn-bg: var(--white);
  --btn-fg: var(--primary);
  --btn-bd: var(--white);
}
.btn-bs--ghost-light {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  --btn-bd: rgba(255, 255, 255, 0.35);
}
.btn-bs--accent {
  --btn-bg: var(--accent);
  --btn-fg: var(--white);
  --btn-bd: var(--accent);
}
.btn-bs--accent::before { background: var(--primary); }
.btn-bs--accent:hover { border-color: var(--primary); }
.btn-bs--sm { padding: 0.8rem 1.35rem; font-size: 0.75rem; }
.btn-bs--block { width: 100%; justify-content: center; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  align-items: center;
}

/* Text link with animated underline */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--primary);
  padding-bottom: 0.35rem;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size var(--dur) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.link-arrow:hover,
.link-arrow:focus-visible {
  color: var(--accent);
  background-size: 100% 1px;
}
.link-arrow i { transition: transform var(--dur-fast) var(--ease-out); }
.link-arrow:hover i { transform: translateX(5px); }
.surface-dark .link-arrow { color: var(--white); }
.surface-dark .link-arrow:hover { color: var(--champagne); }

/* Circular arrow button used on cards */
.arrow-circle {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--primary);
  background: transparent;
  transition: background-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

/* ==========================================================================
   06. EYEBROW / SECTION HEADING SYSTEM
   Numbered editorial labels: "01 — WHO WE ARE"
   ========================================================================== */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: var(--sp-3);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow__num {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.eyebrow__dash {
  width: 34px;
  height: 1px;
  background: var(--accent);
  flex: 0 0 34px;
}
.surface-dark .eyebrow { color: rgba(255, 255, 255, 0.6); }
.surface-dark .eyebrow__num { color: var(--champagne); }

.section-head {
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
@media (min-width: 992px) {
  .section-head--split {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }
}
.section-head__title { margin-bottom: 0; }
.section-head__aside {
  max-width: 46ch;
  font-size: var(--fs-lead);
  line-height: 1.7;
  color: #4a4a4a;
}
.surface-dark .section-head__aside { color: rgba(255, 255, 255, 0.7); }
.section-head--center {
  justify-items: center;
  text-align: center;
}
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .section-head__aside { margin-inline: auto; }

/* ==========================================================================
   07. HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              backdrop-filter var(--dur) var(--ease-out);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  height: var(--header-h);
  transition: height var(--dur) var(--ease-out);
}

/* Scrolled state: compact, solid, blurred, hairline border */
.site-header.is-stuck {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(23, 23, 23, 0.5);
}
.site-header.is-stuck .nav-desktop__link { color: var(--primary); }
.site-header.is-stuck .brand { color: var(--primary); }
.site-header.is-stuck .site-header__inner { height: var(--header-h-sm); }

/* Pages with a light background need dark nav text from the start */
.site-header--solid {
  background: var(--white);
  border-bottom-color: var(--line);
}

/* Logo -------------------------------------------------------------------- */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--secondary);
  flex: 0 0 auto;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid currentColor;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand__tag {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.62;
  white-space: nowrap;
}

/* Desktop nav ------------------------------------------------------------- */
.nav-desktop { display: none; }
@media (min-width: 1200px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: clamp(1.1rem, 2vw, 2.2rem);
  }
}

.nav-desktop__link {
  position: relative;
  padding: 0.4rem 0;
  color: var(--secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-desktop__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}
.nav-desktop__link:hover::after,
.nav-desktop__link:focus-visible::after,
.nav-desktop__link[aria-current="page"]::after { transform: scaleX(1); }
.nav-desktop__link[aria-current="page"] { color: var(--accent); }

.nav-desktop__link
/* Dropdown for grouped service pages */
.nav-drop { position: relative; }
.nav-drop__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}
.nav-drop__toggle i {
  font-size: 0.7rem;
  transition: transform var(--dur-fast) var(--ease-out);
}
.nav-drop__panel {
  position: absolute;
  top: calc(100% + 1.15rem);
  left: -1.25rem;
  min-width: 232px;
  padding: 0.65rem 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              visibility var(--dur-fast) linear;
}
.nav-drop.is-open .nav-drop__panel,
.nav-drop:hover .nav-drop__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-drop.is-open .nav-drop__toggle i { transform: rotate(180deg); }
.nav-drop__panel a {
  display: block;
  padding: 0.65rem 1.25rem;
  color: var(--text);
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color var(--dur-fast), color var(--dur-fast), padding-left var(--dur-fast);
}
.nav-drop__panel a:hover,
.nav-drop__panel a:focus-visible {
  background: var(--secondary);
  color: var(--primary);
  padding-left: 1.5rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-actions .btn-bs { display: none; }
@media (min-width: 768px) {
  .header-actions .btn-bs { display: inline-flex; }
}

/* Hamburger --------------------------------------------------------------- */
.nav-toggle {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(23, 23, 23, 0.18);
  cursor: pointer;
  transition: background-color var(--dur-fast), border-color var(--dur-fast);
}
.nav-toggle:hover { border-color: var(--accent); }
@media (min-width: 1200px) { .nav-toggle { display: none; } }
.nav-toggle__bars {
  display: block;
  width: 20px;
  height: 10px;
  position: relative;
}
.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--primary);
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast);
}
.nav-toggle__bars span:first-child { top: 0; }
.nav-toggle__bars span:last-child { bottom: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Mobile slide-in panel --------------------------------------------------- */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-header) + 5);
  visibility: hidden;
  pointer-events: none;
}
.nav-mobile.is-open {
  visibility: visible;
  pointer-events: auto;
}
.nav-mobile__scrim {
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 16, 0.5);
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out);
}
.nav-mobile.is-open .nav-mobile__scrim { opacity: 1; }

.nav-mobile__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(440px, 100%);
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 5vw, 2.5rem);
  background: var(--primary);
  color: var(--white);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease-out);
}
.nav-mobile.is-open .nav-mobile__panel { transform: translateX(0); }

.nav-mobile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--line-dark);
}
.nav-mobile__top .brand { color: var(--white); }
.nav-mobile__close {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid var(--line-dark);
  color: var(--white);
  font-size: 1.15rem;
  cursor: pointer;
  transition: background-color var(--dur-fast), border-color var(--dur-fast);
}
.nav-mobile__close:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.nav-mobile__list {
  display: flex;
  flex-direction: column;
  padding-block: var(--sp-2);
}
.nav-mobile__list > li { border-bottom: 1px solid var(--line-dark); }
.nav-mobile__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  min-height: 60px;
  padding: 0.9rem 0.25rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.55rem;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out), padding-left var(--dur-fast) var(--ease-out);
}
.nav-mobile__link:hover,
.nav-mobile__link:focus-visible,
.nav-mobile__link[aria-current="page"] {
  color: var(--champagne);
  padding-left: 0.75rem;
}
.nav-mobile__link .nav-mobile__idx {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  opacity: 0.45;
}
.nav-mobile__foot {
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: var(--sp-2);
}
.nav-mobile__meta {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}
.nav-mobile__meta a {
  color: var(--champagne);
  text-decoration: none;
}
.nav-mobile__meta a:hover { text-decoration: underline; }

/* ==========================================================================
   08. HERO
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
  background: var(--primary-deep);
  color: var(--white);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: -6% 0 -6%;
  z-index: -2;
  will-change: transform;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(2.12);
  animation: heroZoom 15s var(--ease-in-out)  infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.9); } }

/* Layered scrim keeps the headline readable over photography */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.42) 45%, rgba(10, 10, 10, 0.28) 100%),
    linear-gradient(to right, rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0) 65%);
}

.hero__inner { width: 100%; }
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: var(--sp-3);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--champagne);
}
.hero__eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--champagne);
}
.hero__title {
  max-width: 18ch;
  margin-bottom: var(--sp-3);
  font-size: var(--fs-display);
  line-height: 0.96;
  color: var(--white);
}
.hero__title em {
  font-style: italic;
  color: var(--champagne);
}
.hero__copy {
  max-width: 56ch;
  margin-bottom: var(--sp-4);
  font-size: var(--fs-lead);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.hero__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-top: clamp(2.5rem, 6vw, 5rem);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.hero__fact {
  display: grid;
  gap: 0.2rem;
}
.hero__fact strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
}
.hero__fact span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* Scroll indicator */
.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--dur-fast);
}
.scroll-cue:hover { color: var(--champagne); }
.scroll-cue__track {
  position: relative;
  width: 1px;
  height: 54px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
}
.scroll-cue__track::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 22px;
  background: var(--champagne);
  animation: cueDrop 2.2s var(--ease-in-out) infinite;
}
@keyframes cueDrop {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(240%); }
  100% { transform: translateY(240%); }
}

/* Mouse-parallax layer on desktop only (driven by main.js) */
.hero__float {
  position: absolute;
  right: clamp(1.5rem, 5vw, 5rem);
  top: 26%;
  z-index: 1;
  display: none;
  width: clamp(180px, 18vw, 264px);
  border: 8px solid rgba(255, 255, 255, 0.9);
  will-change: transform;
}
@media (min-width: 1200px) {
  .hero__float { display: block; }
}

/* ==========================================================================
   09. BRAND STORY
   ========================================================================== */

.story__stack {
  display: grid;
  gap: var(--sp-3);
}
.story__pillars {
  display: grid;
  gap: 1px;
  margin-top: var(--sp-4);
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 576px) {
  .story__pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.story__pillar {
  padding: var(--sp-3);
  background: var(--white);
  transition: background-color var(--dur) var(--ease-out);
}
.story__pillar:hover { background: var(--secondary); }
.story__pillar i {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 1.5rem;
  color: var(--accent);
}
.story__pillar h3 {
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.story__pillar p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
}

/* Signature block quote */
.signature {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line);
}
.signature__mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  font-family: var(--font-display);
  color: var(--accent);
}
.signature__meta {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
}
.signature__meta strong {
  display: block;
  color: var(--primary);
  font-size: 0.9375rem;
}

/* ==========================================================================
   10. STATISTICS
   ========================================================================== */

.stats {
  display: grid;
  gap: 1px;
  background: var(--line-dark);
}
@media (min-width: 576px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.stat {
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2.25rem);
  background: var(--primary);
}
.stat__value {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.stat__value .stat__suffix { color: var(--accent); }
.stat__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.stat__note {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.38);
}

/* Placeholder marker for figures the business has not yet supplied */
.placeholder-token {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(185, 154, 99, 0.12);
  border: 1px dashed rgba(185, 154, 99, 0.5);
  padding: 0.15em 0.45em;
  white-space: nowrap;
}

/* ==========================================================================
   11. SERVICES
   ========================================================================== */

.services-grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
}
.service-card:hover,
.service-card:focus-visible {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--beige);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.service-card:hover .service-card__media img { transform: scale(1.07); }
.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.5), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out);
}
.service-card:hover .service-card__media::after { opacity: 1; }

.service-card__num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.3rem 0.6rem;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--primary);
}
.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
  padding: clamp(1.35rem, 2.5vw, 2rem);
}
.service-card__title {
  margin: 0;
  font-size: var(--fs-h4);
  transition: transform var(--dur) var(--ease-out), color var(--dur-fast);
}
.service-card:hover .service-card__title {
  transform: translateX(6px);
  color: var(--accent);
}
.service-card__copy {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.68;
  color: var(--muted);
}
.service-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  margin-top: auto;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--line);
}
.service-card__cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}
.service-card:hover .arrow-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(-45deg);
}

/* Compact list variant used on service detail pages */
.spec-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.spec-list__row {
  display: grid;
  gap: 0.35rem;
  padding: var(--sp-3);
  background: var(--white);
}
@media (min-width: 768px) {
  .spec-list__row {
    grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
    gap: var(--sp-3);
    align-items: baseline;
  }
}
.spec-list__row dt {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary);
}
.spec-list__row dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ==========================================================================
   12. SIGNATURE SERVICES MARQUEE (horizontal 
   
   
   )
   ========================================================================== */

.hscroll {
  position: relative;
  padding-bottom: var(--sp-2);
}
.hscroll__viewport {
  display: flex;
  gap: clamp(1rem, 2vw, 1.75rem);
  padding-inline: var(--gutter);
  padding-bottom: var(--sp-2);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.hscroll__viewport::-webkit-scrollbar { display: none; }
.hscroll__viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.hscroll__viewport.is-dragging a { pointer-events: none; }

.hcard {
  position: relative;
  flex: 0 0 clamp(240px, 74vw, 380px);
  scroll-snap-align: start;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  background: var(--primary);
}
.hcard__media { aspect-ratio: 3 / 4; }
.hcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.hcard:hover .hcard__media img { transform: scale(1.06); }
.hcard__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 12, 0.85) 0%, rgba(12, 12, 12, 0.15) 55%, rgba(12, 12, 12, 0.05) 100%);
}
.hcard__body {
  position: absolute;
  inset: auto 0 0;
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
}
.hcard__idx {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--champagne);
}
.hcard__title {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  color: var(--white);
}
.hcard__copy {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 32ch;
}

.hscroll__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  max-width: var(--container);
  margin: var(--sp-3) auto 0;
  padding-inline: var(--gutter);
}
.hscroll__hint {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.surface-dark .hscroll__hint { color: rgba(255, 255, 255, 0.45); }
.hscroll__buttons { display: flex; gap: 0.6rem; }
.hscroll__btn {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--primary);
  cursor: pointer;
  transition: background-color var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.hscroll__btn:hover:not(:disabled) {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.hscroll__btn:disabled { opacity: 0.32; cursor: not-allowed; }
.surface-dark .hscroll__btn {
  border-color: var(--line-dark);
  color: var(--white);
}
.surface-dark .hscroll__btn:hover:not(:disabled) {
  background: var(--accent);
  border-color: var(--accent);
}

/* Infinite text ribbon */
.ribbon {
  overflow: hidden;
  padding-block: clamp(1.25rem, 2.5vw, 2rem);
  border-block: 1px solid var(--line);
  background: var(--white);
}
.surface-dark .ribbon,
.ribbon--dark {
  background: var(--primary);
  border-color: var(--line-dark);
}
.ribbon__track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: ribbonSlide 38s linear infinite;
}
.ribbon:hover .ribbon__track { animation-play-state: paused; }
@keyframes ribbonSlide { to { transform: translateX(-50%); } }
.ribbon__item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  color: var(--primary);
  white-space: nowrap;
}
.ribbon--dark .ribbon__item { color: rgba(255, 255, 255, 0.85); }
.ribbon__item::after {
  content: "\2727";
  font-size: 0.6em;
  color: var(--accent);
}

/* ==========================================================================
   13. PORTFOLIO
   ========================================================================== */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}
.filter-btn {
  padding: 0.65rem 1.15rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--dur-fast), background-color var(--dur-fast), border-color var(--dur-fast);
}
.filter-btn:hover { color: var(--primary); border-color: var(--primary); }
.filter-btn[aria-pressed="true"] {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.75rem);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .portfolio-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); } }

/* Editorial rhythm on wide screens: alternating column spans */
@media (min-width: 1200px) {
  .portfolio-grid > .project-card:nth-child(6n+1) { grid-column: span 7; }
  .portfolio-grid > .project-card:nth-child(6n+2) { grid-column: span 5; }
  .portfolio-grid > .project-card:nth-child(6n+3) { grid-column: span 5; }
  .portfolio-grid > .project-card:nth-child(6n+4) { grid-column: span 7; }
  .portfolio-grid > .project-card:nth-child(6n+5) { grid-column: span 6; }
  .portfolio-grid > .project-card:nth-child(6n+6) { grid-column: span 6; }
}

.project-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--primary);
  text-decoration: none;
  color: var(--white);
}
.project-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.project-card--tall .project-card__media { aspect-ratio: 3 / 4; }
.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.project-card:hover .project-card__media img,
.project-card:focus-visible .project-card__media img { transform: scale(1.06); }

.project-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 12, 0.9) 0%, rgba(12, 12, 12, 0.35) 45%, rgba(12, 12, 12, 0) 78%);
  opacity: 0.85;
  transition: opacity var(--dur) var(--ease-out);
}
.project-card:hover .project-card__veil { opacity: 1; }

.project-card__body {
  position: absolute;
  inset: auto 0 0;
  padding: clamp(1.25rem, 2.6vw, 2.25rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-2);
}
.project-card__cat {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
}
.project-card__title {
  margin: 0 0 0.3rem;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  color: var(--white);
}
.project-card__loc {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.68);
}
.project-card__desc {
  max-width: 46ch;
  margin: 0.6rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out), margin-top var(--dur) var(--ease-out);
}
.project-card:hover .project-card__desc,
.project-card:focus-visible .project-card__desc {
  max-height: 6.5rem;
  opacity: 1;
}
.project-card__arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--white);
  transition: background-color var(--dur-fast), border-color var(--dur-fast), transform var(--dur) var(--ease-out);
}
.project-card:hover .project-card__arrow {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
  transform: rotate(-45deg);
}

/* Filter animation states */
.project-card.is-hidden { display: none; }
.project-card.is-filtering {
  opacity: 0;
  transform: translateY(14px);
}

/* ==========================================================================
   14. WHY CHOOSE US
   ========================================================================== */

.reasons {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 640px) { .reasons { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .reasons { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.surface-dark .reasons {
  background: var(--line-dark);
  border-color: var(--line-dark);
}

.reason {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  background: var(--white);
  overflow: hidden;
}
.surface-dark .reason { background: var(--primary); }
.reason::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}
.reason:hover::after { transform: scaleX(1); }
.reason__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: var(--sp-2);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.35rem;
  color: var(--accent);
  transition: background-color var(--dur) var(--ease-out),
              color var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out);
}
.surface-dark .reason__icon { border-color: var(--line-dark); }
.reason:hover .reason__icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-4px);
}
.reason h3 {
  margin-bottom: 0.45rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
}
.reason p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.68;
  color: var(--muted);
}
.surface-dark .reason p { color: rgba(255, 255, 255, 0.6); }

/* ==========================================================================
   15. PROCESS
   ========================================================================== */

.process {
  position: relative;
  display: grid;
  gap: 0;
  counter-reset: step;
}
.process__step {
  position: relative;
  display: grid;
  gap: var(--sp-2);
  padding-block: clamp(1.75rem, 3.5vw, 2.75rem);
  border-top: 1px solid var(--line);
  transition: background-color var(--dur) var(--ease-out);
}
.process__step:last-child { border-bottom: 1px solid var(--line); }
.surface-dark .process__step { border-color: var(--line-dark); }
@media (min-width: 768px) {
  .process__step {
    grid-template-columns: 6rem minmax(0, 4fr) minmax(0, 6fr) 3rem;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: start;
  }
  .process__step:hover { background: rgba(185, 154, 99, 0.05); }
}
.process__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.process__title { margin: 0; font-size: var(--fs-h4); }
.process__copy {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--muted);
}
.surface-dark .process__copy { color: rgba(255, 255, 255, 0.62); }
.process__mark {
  display: none;
  place-items: center;
  color: var(--line);
  font-size: 1.35rem;
  transition: color var(--dur-fast), transform var(--dur-fast);
}
@media (min-width: 768px) { .process__mark { display: grid; } }
.process__step:hover .process__mark {
  color: var(--accent);
  transform: translateX(6px);
}

/* ==========================================================================
   16. BEFORE / AFTER COMPARISON
   ========================================================================== */

.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--beige);
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}
@media (max-width: 575.98px) { .compare { aspect-ratio: 4 / 5; } }

.compare__img {
  position: absolute;
  inset: 0;
}
.compare__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
/* "After" layer is clipped by the handle position */
.compare__img--after {
  clip-path: inset(0 0 0 var(--compare-pos, 50%));
}

.compare__tag {
  position: absolute;
  bottom: 1rem;
  z-index: 3;
  padding: 0.42rem 0.85rem;
  background: rgba(15, 15, 15, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  pointer-events: none;
}
.compare__tag--before { left: 1rem; }
.compare__tag--after { right: 1rem; }

.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-pos, 50%);
  z-index: 4;
  width: 2px;
  margin-left: -1px;
  background: var(--white);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
  cursor: ew-resize;
  border: 0;
  padding: 0;
}
.compare__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}
.compare__handle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 0.15rem;
  color: var(--primary);
  font-size: 0.85rem;
  pointer-events: none;
}
.compare__handle:focus-visible { outline-offset: 6px; }

/* ==========================================================================
   17. GALLERY & LIGHTBOX
   ========================================================================== */

.masonry {
  columns: 1;
  column-gap: clamp(0.75rem, 1.6vw, 1.35rem);
}
@media (min-width: 576px) { .masonry { columns: 2; } }
@media (min-width: 992px) { .masonry { columns: 3; } }
@media (min-width: 1600px) { .masonry { columns: 4; } }

.masonry__item {
  margin-bottom: clamp(0.75rem, 1.6vw, 1.35rem);
  break-inside: avoid;
}
.masonry__item.is-hidden { display: none; }

.gallery-tile {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--beige);
  overflow: hidden;
  cursor: pointer;
}
.gallery-tile img {
  width: 100%;
  transition: transform var(--dur-slow) var(--ease-out), filter var(--dur) var(--ease-out);
}
.gallery-tile:hover img,
.gallery-tile:focus-visible img { transform: scale(1.05); }
.gallery-tile__veil {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(15, 15, 15, 0.42);
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out);
}
.gallery-tile:hover .gallery-tile__veil,
.gallery-tile:focus-visible .gallery-tile__veil { opacity: 1; }
.gallery-tile__zoom {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  transform: scale(0.8);
  transition: transform var(--dur) var(--ease-out);
}
.gallery-tile:hover .gallery-tile__zoom { transform: scale(1); }
.gallery-tile__caption {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(12, 12, 12, 0.82), transparent);
  color: var(--white);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-align: left;
  transform: translateY(100%);
  transition: transform var(--dur) var(--ease-out);
}
.gallery-tile:hover .gallery-tile__caption,
.gallery-tile:focus-visible .gallery-tile__caption { transform: translateY(0); }

/* Lightbox ---------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: rgba(10, 10, 10, 0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease-out), visibility var(--dur) linear;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding: clamp(0.85rem, 2vw, 1.5rem) var(--gutter);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.lightbox__stage {
  display: grid;
  place-items: center;
  padding-inline: clamp(0.5rem, 4vw, 4.5rem);
  min-height: 0;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: 74svh;
  width: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.lightbox__stage img.is-shown { opacity: 1; transform: scale(1); }
.lightbox__foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: clamp(0.85rem, 2vw, 1.5rem) var(--gutter);
}
.lightbox__caption {
  max-width: 60ch;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
}
.lightbox__btn {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color var(--dur-fast), border-color var(--dur-fast);
}
.lightbox__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.lightbox__nav--prev { left: clamp(0.5rem, 2vw, 1.75rem); }
.lightbox__nav--next { right: clamp(0.5rem, 2vw, 1.75rem); }

/* ==========================================================================
   18. TESTIMONIALS
   ========================================================================== */

.quotes { position: relative; }
.quotes__viewport { overflow: hidden; }
.quotes__track {
  display: flex;
  transition: transform var(--dur-slow) var(--ease-out);
  will-change: transform;
}
.quote {
  flex: 0 0 100%;
  padding-inline: 0.5rem;
}
@media (min-width: 768px) { .quote { flex-basis: 50%; } }
@media (min-width: 1200px) { .quote { flex-basis: 33.3333%; } }

.quote__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  height: 100%;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.quote__inner:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.quote__stars {
  display: flex;
  gap: 0.2rem;
  color: var(--accent);
  font-size: 0.85rem;
}
.quote__text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.4vw, 1.4rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--primary);
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 0.6;
  color: var(--beige);
}
.quote__person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--line);
}
.quote__avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.quote__meta { font-size: 0.8125rem; line-height: 1.5; color: var(--muted); }
.quote__meta strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.carousel-dots {
  display: flex;
  gap: 0.45rem;
}
.carousel-dots button {
  width: 26px;
  height: 3px;
  padding: 0;
  border: 0;
  background: var(--line);
  cursor: pointer;
  transition: background-color var(--dur-fast), width var(--dur-fast);
}
.carousel-dots button[aria-selected="true"] {
  background: var(--accent);
  width: 44px;
}

/* ==========================================================================
   19. FAQ
   ========================================================================== */

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-3);
  width: 100%;
  padding: clamp(1.25rem, 2.4vw, 1.85rem) 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  color: var(--primary);
  transition: color var(--dur-fast) var(--ease-out);
}
.faq__trigger:hover { color: var(--accent); }
.faq__q {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  line-height: 1.35;
}
.faq__sign {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  margin-top: 0.15rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background-color var(--dur-fast), border-color var(--dur-fast), transform var(--dur) var(--ease-out);
}
.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: opacity var(--dur-fast) var(--ease-out);
}
.faq__sign::before { width: 12px; height: 1.5px; }
.faq__sign::after { width: 1.5px; height: 12px; }
.faq__trigger[aria-expanded="true"] .faq__sign {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(90deg);
}
.faq__trigger[aria-expanded="true"] .faq__sign::after { opacity: 0; }

.faq__panel {
  height: 0;
  overflow: hidden;
  transition: height var(--dur) var(--ease-out);
}
.faq__panel-inner {
  padding: 0 clamp(0, 4vw, 4rem) clamp(1.35rem, 2.4vw, 2rem) 0;
  max-width: 78ch;
  color: var(--muted);
  line-height: 1.78;
}
.faq__panel-inner p + p { margin-top: 0.85rem; }
.faq__panel-inner a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

/* ==========================================================================
   20. CONTACT & FORMS
   ========================================================================== */

.contact-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
}
@media (min-width: 992px) {
  .contact-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); }
}

.form-grid {
  display: grid;
  gap: var(--sp-3);
}
@media (min-width: 576px) {
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-field--full { grid-column: 1 / -1; }
}

.form-field { position: relative; }
.form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field label .req { color: var(--accent); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1.05rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}
.form-field textarea {
  min-height: 148px;
  resize: vertical;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23777'%3E%3Cpath d='M8 11L3 5.5h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(185, 154, 99, 0.16);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #aaa; }

/* Validation feedback */
.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea { border-color: #b4443a; }
.form-field.is-valid input,
.form-field.is-valid select,
.form-field.is-valid textarea { border-color: #7d8f6f; }
.form-error {
  display: none;
  margin-top: 0.4rem;
  font-size: 0.8125rem;
  color: #b4443a;
}
.form-field.is-invalid .form-error { display: block; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}
.form-consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 0.15rem;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-consent a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: var(--accent);
}

.form-status {
  display: none;
  padding: 1rem 1.15rem;
  border-left: 2px solid var(--accent);
  background: var(--secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.form-status.is-shown { display: block; }
.form-status--error {
  border-left-color: #b4443a;
  background: #fbf1f0;
}

/* Contact info panel */
.contact-panel {
  display: grid;
  gap: var(--sp-3);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  background: var(--primary);
  color: rgba(255, 255, 255, 0.75);
}
.contact-panel h2,
.contact-panel h3 { color: var(--white); }
.contact-item {
  display: flex;
  gap: 1rem;
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--line-dark);
}
.contact-item:last-of-type { border-bottom: 0; padding-bottom: 0; }
.contact-item__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--champagne);
  font-size: 1.05rem;
}
.contact-item__label {
  margin-bottom: 0.3rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.contact-item__value {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--white);
}
.contact-item__value a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.contact-item__value a:hover {
  color: var(--champagne);
  border-color: var(--champagne);
}

.map-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--beige);
  border: 1px solid var(--line);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}
/* Fallback shown when no embed URL has been configured yet */
.map-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.75rem;
  padding: var(--sp-3);
  text-align: center;
  background: var(--secondary);
}
.map-placeholder i { font-size: 2rem; color: var(--accent); }
.map-placeholder p { margin: 0; font-size: 0.875rem; color: var(--muted); max-width: 40ch; }

/* ==========================================================================
   21. CALL-TO-ACTION BAND
   ========================================================================== */

.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--primary);
  color: var(--white);
}
.cta-band__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.cta-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}
.cta-band__inner {
  position: relative;
  display: grid;
  gap: var(--sp-4);
  align-items: center;
  padding-block: clamp(3.5rem, 8vw, 7rem);
}
@media (min-width: 992px) {
  .cta-band__inner { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); }
}
.cta-band h2 {
  max-width: 22ch;
  margin-bottom: var(--sp-2);
  font-size: var(--fs-h2);
  color: var(--white);
}
.cta-band p {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--fs-lead);
}
.cta-band .btn-row { justify-content: flex-start; }
@media (min-width: 992px) {
  .cta-band .btn-row { justify-content: flex-end; }
}

/* ==========================================================================
   22. FOOTER
   ========================================================================== */

.site-footer {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.65); text-decoration: none; }
.site-footer a:hover, .site-footer a:focus-visible { color: var(--champagne); }

.footer-top {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4rem);
  padding-block: clamp(3rem, 7vw, 6rem);
}
@media (min-width: 768px) {
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1200px) {
  .footer-top { grid-template-columns: minmax(0, 3fr) repeat(3, minmax(0, 2fr)); }
}

.footer-col h2,
.footer-col h3 {
  margin-bottom: var(--sp-2);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
}
.footer-col--brand .brand { color: var(--white); margin-bottom: var(--sp-2); }
.footer-col--brand p { max-width: 42ch; line-height: 1.75; }

.footer-list { display: grid; gap: 0.7rem; }
.footer-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform var(--dur-fast) var(--ease-out), color var(--dur-fast);
}
.footer-list a::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width var(--dur-fast) var(--ease-out);
}
.footer-list a:hover::before { width: 12px; }

.footer-contact { display: grid; gap: 0.9rem; }
.footer-contact li {
  display: flex;
  gap: 0.7rem;
  line-height: 1.6;
}
.footer-contact i {
  margin-top: 0.28rem;
  color: var(--accent);
  font-size: 0.95rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: var(--sp-2);
}
.social-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: background-color var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
}
.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding-block: var(--sp-3);
  border-top: 1px solid var(--line-dark);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* ==========================================================================
   23. FLOATING UI
   ========================================================================== */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-progress);
  height: 2px;
  background: transparent;
  pointer-events: none;
}
.scroll-progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--champagne));
  transform-origin: left;
}

/* Floating action stack */
.float-stack {
  position: fixed;
  right: clamp(0.85rem, 2vw, 1.75rem);
  bottom: calc(clamp(0.85rem, 2vw, 1.75rem) + env(safe-area-inset-bottom, 0px));
  z-index: var(--z-float);
  display: grid;
  gap: 0.65rem;
  justify-items: end;
}

.fab {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.35rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.45);
  transition: transform var(--dur-fast) var(--ease-out), background-color var(--dur-fast);
}
.fab:hover { transform: translateY(-3px) scale(1.04); }

.fab--whatsapp { background: #25d366; }
.fab--whatsapp:hover { background: #1eb355; }
/* Soft attention pulse, disabled under reduced-motion */
.fab--whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid #25d366;
  animation: fabPulse 2.6s var(--ease-out) infinite;
  pointer-events: none;
}
.fab-wrap { position: relative; }
@keyframes fabPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

.fab--top {
  background: var(--primary);
  width: 46px;
  height: 46px;
  font-size: 1.05rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), visibility var(--dur) linear;
}
.fab--top.is-shown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fab--top:hover { background: var(--accent); }

/* Desktop WhatsApp label reveal */
.fab-label {
  position: absolute;
  right: calc(100% + 0.7rem);
  top: 50%;
  transform: translate(8px, -50%);
  padding: 0.5rem 0.85rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.fab-wrap:hover .fab-label,
.fab:focus-visible + .fab-label {
  opacity: 1;
  transform: translate(0, -50%);
}
@media (max-width: 767.98px) { .fab-label { display: none; } }

/* Custom cursor (desktop, pointer-fine only) */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-cursor);
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.cursor-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--accent);
}
.cursor-ring {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border: 1px solid rgba(185, 154, 99, 0.75);
  transition: opacity var(--dur-fast) var(--ease-out),
              width var(--dur-fast) var(--ease-out),
              height var(--dur-fast) var(--ease-out),
              margin var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}
.cursor-ring__label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out);
}
body.has-cursor .cursor-dot,
body.has-cursor .cursor-ring { opacity: 1; }
body.has-cursor.cursor-hover .cursor-ring {
  width: 62px;
  height: 62px;
  margin: -31px 0 0 -31px;
  background: rgba(185, 154, 99, 0.14);
}
body.has-cursor.cursor-view .cursor-ring {
  width: 92px;
  height: 92px;
  margin: -46px 0 0 -46px;
  background: var(--accent);
  border-color: var(--accent);
}
body.has-cursor.cursor-view .cursor-ring__label { opacity: 1; }
body.has-cursor.cursor-view .cursor-dot { opacity: 0; }

/* ==========================================================================
   24. INNER PAGES
   ========================================================================== */

/* Page hero --------------------------------------------------------------- */
.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(420px, 62vh, 660px);
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--primary);
  color: var(--white);
}
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.42) 60%, rgba(10, 10, 10, 0.35));
}
.page-hero__title {
  max-width: 24ch;
  margin-bottom: var(--sp-2);
  font-size: var(--fs-h1);
  color: var(--white);
}
.page-hero__copy {
  max-width: 60ch;
  font-size: var(--fs-lead);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

/* Light variant for text-led pages (legal, faq) */
.page-hero--light {
  background: var(--secondary);
  color: var(--text);
  min-height: auto;
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}
.page-hero--light .page-hero__title { color: var(--primary); }
.page-hero--light .page-hero__copy { color: #4a4a4a; }
.page-hero--light .page-hero__scrim,
.page-hero--light .page-hero__media { display: none; }

/* Breadcrumbs ------------------------------------------------------------- */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--sp-3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.crumbs li { display: flex; align-items: center; gap: 0.5rem; }
.crumbs li + li::before {
  content: "/";
  color: var(--accent);
  opacity: 0.7;
}
.crumbs a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.crumbs a:hover { color: var(--champagne); }
.crumbs [aria-current="page"] { color: var(--white); }
.page-hero--light .crumbs a { color: var(--muted); }
.page-hero--light .crumbs a:hover { color: var(--accent); }
.page-hero--light .crumbs [aria-current="page"] { color: var(--primary); }

/* Project detail ---------------------------------------------------------- */
.project-meta {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 640px) { .project-meta { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .project-meta { grid-template-columns: repeat(4, 1fr); } }
.project-meta__cell {
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  background: var(--white);
}
.project-meta__k {
  margin-bottom: 0.45rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.project-meta__v {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--primary);
}

.gallery-strip {
  display: grid;
  gap: clamp(0.75rem, 1.6vw, 1.35rem);
}
@media (min-width: 640px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .gallery-strip--3 { grid-template-columns: repeat(3, 1fr); } }

.pager {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
@media (min-width: 768px) { .pager { grid-template-columns: repeat(2, 1fr); } }
.pager__link {
  display: grid;
  gap: 0.4rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--white);
  text-decoration: none;
  transition: background-color var(--dur) var(--ease-out);
}
.pager__link:hover { background: var(--secondary); }
.pager__link--next { text-align: right; }
.pager__k {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.pager__v {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  color: var(--primary);
}

/* Blog -------------------------------------------------------------------- */
.post-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (min-width: 640px) { .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .post-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  text-decoration: none;
  color: inherit;
}
.post-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  margin-bottom: var(--sp-2);
  overflow: hidden;
  background: var(--beige);
}
.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  padding: 0.32rem 0.7rem;
  background: rgba(255, 255, 255, 0.93);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}
.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.post-card__meta span { display: flex; align-items: center; gap: 0.35rem; }
.post-card__title {
  margin-bottom: 0.6rem;
  font-size: var(--fs-h4);
  transition: color var(--dur-fast);
}
.post-card:hover .post-card__title { color: var(--accent); }
.post-card__excerpt {
  margin-bottom: var(--sp-2);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted);
}
.post-card__more { margin-top: auto; }

/* Featured post - horizontal on desktop */
.post-card--featured { gap: 0; }
@media (min-width: 992px) {
  .post-card--featured {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
  }
  .post-card--featured .post-card__media {
    aspect-ratio: 4 / 3;
    margin-bottom: 0;
  }
  .post-card--featured .post-card__title { font-size: var(--fs-h3); }
}

/* Article ----------------------------------------------------------------- */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.25rem);
  padding-block: var(--sp-3);
  border-block: 1px solid var(--line);
  margin-bottom: var(--sp-4);
}
.article-meta__cell { display: grid; gap: 0.25rem; }
.article-meta__k {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.article-meta__v { font-size: 0.9375rem; color: var(--primary); }

.article-body {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: #3a3a3a;
}
.article-body > p:first-of-type {
  font-size: var(--fs-lead);
  line-height: 1.7;
  color: var(--primary);
}
.article-figure { margin: var(--sp-5) 0; }
.article-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--muted);
  font-style: italic;
}

.toc {
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  background: var(--secondary);
  border-left: 2px solid var(--accent);
}
.toc h2 {
  margin-bottom: var(--sp-2);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.toc ol { display: grid; gap: 0.55rem; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a {
  display: flex;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: var(--text);
  text-decoration: none;
}
.toc a::before {
  content: "0" counter(toc);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding-top: 0.15rem;
}
.toc a:hover { color: var(--accent); }

.share-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line);
  margin-top: var(--sp-4);
}
.share-row .social-link {
  border-color: var(--line);
  color: var(--muted);
}
.share-row .social-link:hover { color: var(--white); }

/* Inline article CTA */
.inline-cta {
  display: grid;
  gap: var(--sp-2);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin: var(--sp-5) 0;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.75);
}
.inline-cta h2 {
  margin: 0;
  font-size: var(--fs-h4);
  color: var(--white);
}
.inline-cta p { margin: 0; font-size: 0.9375rem; }

/* Legal pages ------------------------------------------------------------- */
.legal-body h2 {
  margin-top: var(--sp-5);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line);
  font-size: var(--fs-h3);
}
.legal-body h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }
.legal-body h3 { margin-top: var(--sp-3); font-size: var(--fs-h5); }

.notice {
  padding: 1.15rem 1.35rem;
  background: var(--secondary);
  border-left: 2px solid var(--accent);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted);
}

/* 404 --------------------------------------------------------------------- */
.error-page {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  text-align: center;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.72);
}
.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 16rem);
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: -0.04em;
}
.error-page h1 {
  margin-top: -0.35em;
  color: var(--white);
  font-size: var(--fs-h1);
}
.error-page p {
  max-width: 46ch;
  margin-inline: auto;
  font-size: var(--fs-lead);
}
.error-page .btn-row { justify-content: center; margin-top: var(--sp-3); }

/* Trust / logo band ------------------------------------------------------- */
.trust-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4.5rem);
  padding-block: clamp(1.75rem, 3vw, 2.75rem);
}
.trust-band__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-band__item i { color: var(--accent); font-size: 1.05rem; }

/* Sector chip list -------------------------------------------------------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chip {
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.chip:hover { border-color: var(--accent); color: var(--primary); }
.surface-dark .chip {
  border-color: var(--line-dark);
  color: rgba(255, 255, 255, 0.65);
}

/* Checklist --------------------------------------------------------------- */
.ticks { display: grid; gap: 0.85rem; }
.ticks li {
  display: flex;
  gap: 0.8rem;
  font-size: 0.9375rem;
  line-height: 1.65;
}
.ticks i {
  margin-top: 0.28rem;
  color: var(--accent);
  font-size: 0.9rem;
}

/* ==========================================================================
   24b. SPACING & MODIFIER UTILITIES
   A deliberately tiny set, tied to the project spacing scale, so that no
   markup needs an inline style attribute.
   ========================================================================== */

.u-mt-2 { margin-top: var(--sp-2); }
.u-mt-3 { margin-top: var(--sp-3); }
.u-mt-4 { margin-top: var(--sp-4); }
.u-mt-5 { margin-top: var(--sp-5); }
.u-mb-4 { margin-bottom: var(--sp-4); }
.u-mb-section { margin-bottom: var(--section-y); }
.u-my-5 { margin-block: var(--sp-5); }
.u-center { justify-content: center; }
.u-text-sm { font-size: 0.875rem; }

/* Gold label on dark surfaces */
.label--gold { color: var(--champagne); }

/* Hairline rule tuned for dark backgrounds */
.rule--light { background: rgba(255, 255, 255, 0.14); }

/* A chip that is also a link */
.chip--link { text-decoration: none; }

/* Sub-heading inside a dark contact panel */
.panel-title {
  margin-bottom: 0.5rem;
  font-size: var(--fs-h4);
}

/* ==========================================================================
   25. ANIMATION UTILITIES
   ========================================================================== */

/* Base reveal - JS adds .is-inview when the element enters the viewport */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-inview {
  opacity: 1;
  transform: none;
}

[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(0.96); }

/* Image clip reveal */
[data-reveal="clip"] {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 50% 0);
  transition: clip-path 1.1s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal="clip"].is-inview { clip-path: inset(0 0 0 0); }

/* Line-by-line heading reveal, built by main.js */
.split-line {
  display: block;
  overflow: hidden;
}
.split-line__inner {
  display: block;
  transform: translateY(105%);
  transition: transform 0.95s var(--ease-out);
  transition-delay: var(--line-delay, 0ms);
}
.is-inview > .split-line > .split-line__inner,
.is-inview .split-line__inner { transform: translateY(0); }

/* Parallax layer, offset written by main.js */
[data-parallax] { will-change: transform; }

/* Counters keep their box while animating */
[data-count] { font-variant-numeric: tabular-nums; }

/* Magnetic buttons receive a translate from JS */
[data-magnetic] { transition: transform var(--dur-fast) var(--ease-out); }

/* Page transition veil */
.page-veil {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: var(--primary);
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.7s var(--ease-in-out);
}
.page-veil.is-hidden { transform: translateY(-100%); }
.page-veil.is-leaving {
  transform: translateY(0);
  transition-duration: 0.5s;
}

/* ==========================================================================
   26. RESPONSIVE REFINEMENTS
   Mobile is designed, not compressed: tighter type scale, restacked
   compositions, larger touch targets, simplified decoration.
   ========================================================================== */

@media (max-width: 1199.98px) {
  .hero__float { display: none; }
}

@media (max-width: 991.98px) {
  :root {
    --header-h: 76px;
    --header-h-sm: 64px;
  }
  .compose__main { grid-column: 1 / span 6; }
  .compose__inset {
    grid-column: 3 / span 4;
    margin-top: -14%;
    border-width: 6px;
  }
  .cta-band .btn-row { justify-content: flex-start; }
}

@media (max-width: 767.98px) {
  :root {
    --fs-body: 1rem;
    --lh-body: 1.7;
    --section-y: 4rem;
  }
  .hero {
    min-height: 92svh;
    align-items: flex-end;
  }
  .hero__title { max-width: 100%; }
  .hero__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
    margin-top: var(--sp-4);
  }
  .hero__facts { gap: var(--sp-3); }
  .hero__fact strong { font-size: 1.35rem; }
  .scroll-cue__track { height: 34px; }

  .btn-bs { padding: 1rem 1.5rem; }
  .btn-row .btn-bs { flex: 1 1 auto; justify-content: center; }

  .section-head { margin-bottom: var(--sp-4); }
  .compose {
    display: block;
  }
  .compose__inset {
    width: 62%;
    margin: -18% 0 0 auto;
    border-width: 5px;
  }
  .process__step { padding-block: var(--sp-3); }
  .process__num { font-size: 2rem; }
  .article-meta { gap: var(--sp-2) var(--sp-3); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .lightbox__nav { top: auto; bottom: -0.5rem; transform: none; }
}

@media (max-width: 575.98px) {
  .brand__tag { display: none; }
  .brand__name { font-size: 1.02rem; }
  .nav-mobile__panel { width: 100%; }
  .nav-mobile__link { font-size: 1.3rem; min-height: 56px; }
  .filters { gap: 0.4rem; }
  .filter-btn { padding: 0.6rem 0.85rem; font-size: 0.6875rem; }
  .hcard { flex-basis: 78vw; }
  .quote__inner { padding: var(--sp-3); }
  .fab { width: 50px; height: 50px; }
}

/* Very small phones (320px) - guarantee nothing overflows */
@media (max-width: 359.98px) {
  :root { --gutter: 1rem; }
  .brand__mark { width: 36px; height: 36px; flex-basis: 36px; font-size: 0.9rem; }
  .stat__value { font-size: 2.35rem; }
  .btn-bs { padding: 0.9rem 1.1rem; font-size: 0.6875rem; letter-spacing: 0.1em; }
}

/* Large desktops - widen the editorial canvas */
@media (min-width: 1600px) {
  :root { --container: 1520px; }
}

/* ==========================================================================
   27. REDUCED MOTION, PRINT, FORCED COLORS
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  /* Reveal content immediately rather than leaving it hidden */
  [data-reveal],
  [data-reveal="clip"] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  .split-line__inner { transform: none !important; }
  .hero__media img { animation: none; transform: scale(1); }
  .ribbon__track { animation: none; }
  .fab--whatsapp::after { display: none; }
  .scroll-cue__track::after { animation: none; transform: none; }
  .cursor-dot,
  .cursor-ring { display: none !important; }
  .page-veil { display: none; }
  [data-parallax] { transform: none !important; }
}

@media print {
  .site-header,
  .nav-mobile,
  .float-stack,
  .scroll-progress,
  .cursor-dot,
  .cursor-ring,
  .page-veil,
  .hscroll__controls,
  .cta-band,
  .site-footer { display: none !important; }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }
  .hero,
  .page-hero {
    min-height: auto;
    padding: 0 0 1rem;
    color: #000;
    background: none;
  }
  .hero__media,
  .hero__scrim,
  .page-hero__media,
  .page-hero__scrim { display: none; }
  .hero__title,
  .page-hero__title { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
  .section { padding-block: 1rem; page-break-inside: avoid; }
}

@media (forced-colors: active) {
  .btn-bs,
  .filter-btn,
  .arrow-circle,
  .faq__sign,
  .social-link { border: 1px solid ButtonBorder; }
  .btn-bs::before { display: none; }
  .project-card__veil,
  .hcard__veil,
  .hero__scrim { background: none; }
}
