/* =============================================================
   WestgateFS — Global Design System
   v50 · Orange primary · Sky-blue secondary · Warm neutrals
   Bootstrap-compatible · Light surfaces only
   ============================================================= */

/* ---------- 1. RESET + BASE ---------- */

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-1);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "calt", "ss01";
  overflow-x: hidden;
}

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

img {
  height: auto;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

p {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 500;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

::selection {
  background: var(--brand);
  color: var(--paper);
}

/* ---------- 2. DESIGN TOKENS ---------- */

:root {
  --paper: #FFFFFF;
  --paper-warm: #FBF7F1;
  --paper-soft: #F4EFE6;
  --paper-mist: #FBFAF6;
  --paper-cool: #F4F7FB;
  --paper-cream: #FAF5EB;
  --ink-1: #1A1814;
  --ink-2: #34302A;
  --ink-3: #6A645A;
  --ink-4: #9C968C;
  --line: #E8E2D4;
  --line-strong: #D7CFBC;
  --line-fine: #F1ECDF;
  --brand: #C56A2E;
  --brand-deep: #A35621;
  --brand-soft: #D88A52;
  --brand-tint: #FBEEDD;
  --brand-mist: rgba(197, 106, 46, 0.08);
  --sky: #3C6088;
  --sky-deep: #294866;
  --sky-tint: #EAF1F8;
  --sky-mist: rgba(60, 96, 136, 0.06);
  --violet: #8A6FA3;
  --violet-soft: #EFEAF2;
  --critical: #9B2C2C;
  --success: #2F6F4F;
  --focus-ring: 0 0 0 3px rgba(197, 106, 46, 0.28);
  --font-display: "Fraunces", "Source Serif Pro", Georgia, "Times New Roman", serif;
  --font-ui: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-body: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 1.875rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 2.875rem;
  --fs-5xl: 3.5rem;
  --fs-6xl: 4.5rem;
  --lh-tight: 1.05;
  --lh-snug: 1.2;
  --lh-body: 1.65;
  --lh-relaxed: 1.78;
  --tk-tight: -0.022em;
  --tk-snug: -0.012em;
  --tk-wide: 0.04em;
  --tk-wider: 0.14em;
  --sp-0: 0;
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-7: 28px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-14: 56px;
  --sp-16: 64px;
  --sp-18: 72px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-28: 112px;
  --sp-32: 128px;
  --sp-40: 160px;
  --container-max: 1280px;
  --container-narrow: 880px;
  --container-wide: 1440px;
  --container-pad: clamp(20px, 4vw, 40px);
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(26, 24, 20, 0.04), 0 1px 1px rgba(26, 24, 20, 0.03);
  --shadow-md: 0 6px 18px rgba(26, 24, 20, 0.06), 0 2px 6px rgba(26, 24, 20, 0.04);
  --shadow-lg: 0 22px 48px rgba(26, 24, 20, 0.08), 0 8px 18px rgba(26, 24, 20, 0.05);
  --shadow-xl: 0 36px 80px rgba(26, 24, 20, 0.10), 0 12px 28px rgba(26, 24, 20, 0.06);
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 140ms;
  --t-base: 220ms;
  --t-slow: 360ms;
  --t-deliberate: 560ms;
  --header-h: 88px;
  --section-py: clamp(64px, 7vw, 128px);
  --section-py-sm: clamp(48px, 5vw, 80px);
  --z-header: 60;
  --z-modal: 80;
}

/* ---------- 3. CONTAINER OVERRIDE (aligns Bootstrap to design system) ---------- */

.container {
  max-width: var(--container-max);
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

@media (min-width: 1400px) {
  .container {
    max-width: var(--container-max);
  }
}

/* ---------- 4. TYPOGRAPHY ---------- */

.wfs-h1, .wfs-h2, .wfs-h3, .wfs-h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink-1);
  letter-spacing: var(--tk-snug);
  font-feature-settings: "ss01", "ss02", "kern", "liga", "calt";
  text-wrap: balance;
}

.wfs-h1 {
  font-size: clamp(2.375rem, 4.8vw + 0.4rem, 4.25rem);
  line-height: var(--lh-tight);
  letter-spacing: var(--tk-tight);
}

.wfs-h1 em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  color: var(--ink-1);
}

.wfs-h2 {
  font-size: clamp(1.875rem, 2.6vw + 0.6rem, 2.75rem);
  line-height: 1.14;
}

.wfs-h2 em {
  font-style: italic;
  font-weight: 400;
}

.wfs-h2--centered {
  text-align: center;
}

.wfs-h3 {
  font-size: clamp(1.25rem, 0.8vw + 1rem, 1.5rem);
  line-height: var(--lh-snug);
}

.wfs-lede {
  font-size: clamp(1.0625rem, 0.4vw + 1rem, 1.1875rem);
  line-height: var(--lh-relaxed);
  color: var(--ink-2);
  max-width: 58ch;
  text-wrap: pretty;
}

.wfs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tk-wider);
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
}

.wfs-eyebrow--centered {
  justify-content: center;
}

.wfs-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--brand);
  flex-shrink: 0;
}

.wfs-prose__p {
  color: var(--ink-2);
  line-height: var(--lh-body);
  max-width: 62ch;
}

.wfs-prose__p + .wfs-prose__p {
  margin-top: var(--sp-4);
}

/* ---------- 5. SECTIONS ---------- */

.wfs-section {
  padding-block: var(--section-py);
  position: relative;
}

.wfs-section--warm {
  background: var(--paper-warm);
}

.wfs-section--soft {
  background: var(--paper-soft);
}

.wfs-section--editorial {
  background: var(--paper);
}

.wfs-section--cool {
  background: var(--paper-cool);
}

.wfs-section--cream {
  background: var(--paper-cream);
}

.wfs-section-head {
  max-width: 58ch;
  margin-bottom: clamp(40px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.wfs-section-head--centered {
  text-align: center;
  margin-inline: auto;
  align-items: center;
}

.wfs-section-head--editorial {
  gap: var(--sp-3);
}

.wfs-section-head__lede {
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  color: var(--ink-2);
  text-wrap: pretty;
}

.wfs-section__footer {
  margin-top: clamp(40px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

.wfs-section__note {
  margin-top: var(--sp-8);
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  color: var(--ink-3);
}

.wfs-section__note--centered {
  text-align: center;
}

.wfs-section__note a {
  color: var(--brand);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--t-base) var(--ease);
}

.wfs-section__note a:hover {
  text-decoration-color: var(--brand);
}

/* ---------- 6. BUTTONS ---------- */

.wfs-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 48px;
  padding: 0 1.375rem;
  font-family: var(--font-ui);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  transition: background-color var(--t-base) var(--ease), color var(--t-base) var(--ease), border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.wfs-btn:focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
}

.wfs-btn--lg {
  min-height: 56px;
  padding: 0 1.625rem;
  font-size: var(--fs-body);
}

/* Primary — premium orange */

.wfs-btn--primary {
  background: var(--brand);
  color: var(--paper);
  border-color: var(--brand);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), var(--shadow-sm);
}

.wfs-btn--primary:hover {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), var(--shadow-md);
  transform: translateY(-1px);
}

.wfs-btn--primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* Secondary — outlined orange */

.wfs-btn--secondary {
  background: var(--paper);
  color: var(--brand-deep);
  border-color: var(--brand);
}

.wfs-btn--secondary:hover {
  background: var(--brand);
  color: var(--paper);
}

/* Ghost — hairline */

.wfs-btn--ghost {
  background: transparent;
  color: var(--ink-1);
  border-color: var(--line-strong);
}

.wfs-btn--ghost:hover {
  background: var(--paper-warm);
  border-color: var(--ink-2);
  color: var(--brand-deep);
}

/* Label spans */

.wfs-btn__label-mobile {
  display: none;
}

@media (max-width: 768px) {
  .wfs-btn__label-desktop {
    display: none;
  }
}

@media (max-width: 768px) {
  .wfs-btn__label-mobile {
    display: inline;
  }
}

/* Affixes */

.wfs-btn--arrow::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 10px;
  margin-left: 0.125rem;
  background-color: currentColor;
  -webkit-mask: url("/assets/img/global/icons/arrow-right.svg") center / contain no-repeat;
  mask: url("/assets/img/global/icons/arrow-right.svg") center / contain no-repeat;
  transition: transform var(--t-base) var(--ease);
}

.wfs-btn--arrow:hover::after {
  transform: translateX(3px);
}

.wfs-btn--phone::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: currentColor;
  -webkit-mask: url("/assets/img/global/icons/phone.svg") center / contain no-repeat;
  mask: url("/assets/img/global/icons/phone.svg") center / contain no-repeat;
}

/* ---------- 7. CTA WRAPPER ---------- */

.wfs-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
  margin-top: var(--sp-8);
}

.wfs-cta--centered {
  justify-content: center;
}

.wfs-cta--hero {
  margin-top: var(--sp-10);
}

@media (max-width: 480px) {
  .wfs-cta {
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-2);
  }
}

@media (max-width: 480px) {
  .wfs-cta .wfs-btn {
    width: 100%;
  }
}

/* ---------- 8. LINKS ---------- */

.wfs-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--brand-deep);
  letter-spacing: 0.01em;
  transition: gap var(--t-base) var(--ease), color var(--t-fast) var(--ease);
}

.wfs-link::after {
  content: "";
  width: 12px;
  height: 9px;
  background-color: currentColor;
  -webkit-mask: url("/assets/img/global/icons/arrow-right.svg") center / contain no-repeat;
  mask: url("/assets/img/global/icons/arrow-right.svg") center / contain no-repeat;
  transition: transform var(--t-base) var(--ease);
}

.wfs-link:hover {
  gap: var(--sp-3);
  color: var(--brand);
}

.wfs-link:hover::after {
  transform: translateX(2px);
}

.wfs-link--strong {
  font-size: var(--fs-body);
}

/* ---------- 9. FIGURES + IMAGES ---------- */

.wfs-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.wfs-figure picture, .wfs-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  background: var(--paper-warm);
}

.wfs-figure__caption {
  font-size: var(--fs-sm);
  color: var(--ink-3);
  line-height: var(--lh-body);
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.005em;
}

/* ---------- 10. TAGS ---------- */

.wfs-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tk-wide);
  text-transform: uppercase;
  color: var(--ink-3);
}

/* =============================================================
   11. HERO
   ============================================================= */

.wfs-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(64px, 7vw, 120px) clamp(72px, 7vw, 128px);
  background: var(--paper-mist);
  isolation: isolate;
}

.wfs-hero::before, .wfs-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.wfs-hero::before {
  top: -10%;
  right: -8%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle at 70% 30%, rgba(197, 106, 46, 0.07), transparent 60%);
}

.wfs-hero::after {
  bottom: -10%;
  left: -8%;
  width: 55%;
  height: 70%;
  background: radial-gradient(circle at 30% 70%, rgba(60, 96, 136, 0.06), transparent 60%);
}

.wfs-hero__grid {
  row-gap: clamp(40px, 5vw, 64px);
}

.wfs-hero__col--copy {
  display: flex;
  flex-direction: column;
}

.wfs-hero__col--visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wfs-hero__content {
  max-width: 38rem;
}

.wfs-hero__heading {
  margin-top: var(--sp-6);
}

.wfs-hero__lede {
  margin-top: var(--sp-6);
  max-width: 36rem;
}

.wfs-hero__assurance {
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line-fine);
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  color: var(--ink-3);
  max-width: 36rem;
  font-style: italic;
}

.wfs-figure--hero {
  width: 100%;
  max-width: 580px;
  margin-inline: auto;
}

.wfs-hero__illustration {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
  border-radius: 0;
}

@media (max-width: 991.98px) {
  .wfs-hero__content {
    max-width: 100%;
  }
}

@media (max-width: 991.98px) {
  .wfs-figure--hero {
    max-width: 480px;
  }
}

/* =============================================================
   12. TRUST RAIL
   ============================================================= */

.wfs-trust-rail {
  padding-block: var(--sp-10);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wfs-trust-rail__list {
  row-gap: var(--sp-6);
}

.wfs-trust-rail__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: var(--sp-4);
  border-left: 1px solid var(--line);
}

.wfs-trust-rail__lead {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-lg);
  letter-spacing: var(--tk-snug);
  color: var(--ink-1);
  line-height: 1.2;
}

.wfs-trust-rail__sub {
  font-size: var(--fs-sm);
  color: var(--ink-3);
}

/* =============================================================
   13. PILLARS (services)
   ============================================================= */

.wfs-services__grid > [class*="col-"] {
  display: flex;
}

.wfs-pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-10) var(--sp-8) var(--sp-8);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  width: 100%;
  transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}

.wfs-pillar:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.wfs-pillar__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.wfs-pillar__num {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  color: var(--brand);
  letter-spacing: var(--tk-wide);
}

.wfs-pillar__visual {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
}

.wfs-pillar__visual img {
  width: 50px;
  height: 50px;
}

.wfs-pillar__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  letter-spacing: var(--tk-snug);
  color: var(--ink-1);
  line-height: var(--lh-snug);
}

.wfs-pillar__lede {
  color: var(--ink-2);
  line-height: var(--lh-body);
}

.wfs-pillar {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.wfs-pillar__lede {
  color: var(--ink-2);
  line-height: var(--lh-body);
}

@media (min-width: 992px) {
  .wfs-pillar__lede {
    min-height: 5.5rem;
  }
}

.wfs-pillar__lede em {
  color: var(--ink-3);
  font-style: italic;
}

.wfs-pillar__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-top: var(--sp-2);
  border-top: 1px solid var(--line);
  margin: 0;
}

.wfs-pillar__list a {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.45rem 0.75rem;
  border-radius: 0.875rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-1);
  transform: translate3d(0, 0, 0);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), background-color 320ms ease, color 220ms ease, box-shadow 320ms ease;
  will-change: transform;
}

.wfs-pillar__list a:hover, .wfs-pillar__list a:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  transform: translate3d(5px, 5px, 0);
  box-shadow: 0 1px 1px rgba(15, 23, 42, 0.02), 0 8px 24px rgba(15, 23, 42, 0.06);
  color: var(--brand-700);
}

.wfs-pillar__list a:active {
  transform: translate3d(3px, 3px, 0);
  transition-duration: 120ms;
}

.wfs-pillar__list a::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--brand);
  border-radius: var(--r-pill);
  flex-shrink: 0;
}

.wfs-pillar__list a:hover {
  color: var(--brand-deep);
}

.wfs-pillar__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--brand-deep);
  transition: gap var(--t-base) var(--ease), color var(--t-fast) var(--ease);
}

.wfs-pillar__more::after {
  content: "";
  width: 12px;
  height: 9px;
  background-color: currentColor;
  -webkit-mask: url("/assets/img/global/icons/arrow-right.svg") center / contain no-repeat;
  mask: url("/assets/img/global/icons/arrow-right.svg") center / contain no-repeat;
  transition: transform var(--t-base) var(--ease);
}

.wfs-pillar__more:hover {
  gap: var(--sp-3);
  color: var(--brand);
}

.wfs-pillar__more:hover::after {
  transform: translateX(2px);
}

.wfs-pillar--featured {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, var(--paper) 0%, var(--brand-tint) 100%);
}

.wfs-pillar__flag {
  position: absolute;
  top: -10px;
  left: var(--sp-8);
  padding: 0.25rem 0.75rem;
  background: var(--brand);
  color: var(--paper);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: var(--tk-wide);
  text-transform: uppercase;
  border-radius: var(--r-pill);
}

/* =============================================================
   14. PAIN — editorial rows
   ============================================================= */

.wfs-pain__list {
  border-top: 1px solid var(--line);
}

.wfs-pain__row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: clamp(28px, 3vw, 40px) clamp(20px, 2vw, 28px);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.wfs-pain__row:last-child {
  border-bottom: 1px solid var(--line);
}

@media (min-width: 992px) {
  .wfs-pain__row:nth-child(3n) {
    border-right: 0;
  }
}

@media (max-width: 991.98px) and (min-width: 768px) {
  .wfs-pain__row:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 767.98px) {
  .wfs-pain__row {
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.wfs-pain__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--ink-1);
  letter-spacing: var(--tk-snug);
  line-height: 1.3;
}

.wfs-pain__body {
  color: var(--ink-2);
  line-height: var(--lh-body);
  font-size: var(--fs-sm);
}

/* =============================================================
   15. PULLQUOTE
   ============================================================= */

.wfs-pullquote {
  padding-block: clamp(64px, 6vw, 112px);
  background: var(--paper);
}

.wfs-pullquote__quote {
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.wfs-pullquote__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw + 0.5rem, 2.25rem);
  line-height: 1.35;
  color: var(--ink-1);
  letter-spacing: var(--tk-snug);
  text-wrap: balance;
  margin: 0;
}

.wfs-pullquote__cite {
  font-style: normal;
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tk-wider);
  text-transform: uppercase;
  color: var(--ink-3);
}

/* =============================================================
   16. APPROACH
   ============================================================= */

.wfs-approach__col--media {
  display: flex;
}

.wfs-approach__figure {
  width: 100%;
  position: relative;
}

.wfs-approach__figure picture, .wfs-approach__figure img {
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.wfs-approach__copy {
  max-width: 34rem;
}

.wfs-approach__copy .wfs-h2 {
  margin-top: var(--sp-3);
}

.wfs-approach__copy .wfs-prose__p {
  margin-top: var(--sp-5);
}

@media (max-width: 991.98px) {
  .wfs-approach__figure img {
    aspect-ratio: 4 / 3;
  }
}

/* =============================================================
   17. FEATURED PROOF
   ============================================================= */

.wfs-proof-featured {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
}

.wfs-proof-featured__card {
  padding: clamp(28px, 3vw, 56px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-lg);
}

.wfs-proof-featured__col--media {
  display: flex;
}

.wfs-proof-featured__figure {
  width: 100%;
  height: 100%;
}

.wfs-proof-featured__figure picture, .wfs-proof-featured__figure img {
  border-radius: var(--r-lg);
  height: 100%;
  object-fit: cover;
  aspect-ratio: 11 / 8;
}

.wfs-proof-featured__col--body {
  display: flex;
  align-items: center;
}

.wfs-proof-featured__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  width: 100%;
}

.wfs-proof-featured__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.6vw + 0.8rem, 2rem);
  line-height: 1.2;
  letter-spacing: var(--tk-snug);
  color: var(--ink-1);
  text-wrap: balance;
}

.wfs-proof-featured__story p {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--ink-2);
}

.wfs-proof-featured__story p + p {
  margin-top: var(--sp-3);
}

.wfs-proof-featured__story strong {
  color: var(--ink-1);
  font-weight: 600;
}

.wfs-proof-featured__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-4);
  margin: 0;
  padding: var(--sp-5) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wfs-proof-featured__metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wfs-proof-featured__metric dt {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tk-wider);
  text-transform: uppercase;
  color: var(--ink-3);
}

.wfs-proof-featured__metric dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 500;
  letter-spacing: var(--tk-snug);
  color: var(--ink-1);
}

@media (max-width: 991.98px) {
  .wfs-proof-featured__figure picture, .wfs-proof-featured__figure img {
    aspect-ratio: 16 / 10;
  }
}

/* =============================================================
   18. SUPPORTING PROOF
   ============================================================= */

.wfs-proof__supporting > [class*="col-"] {
  display: flex;
}

.wfs-proof__card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-8);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  width: 100%;
  transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}

.wfs-proof__card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.wfs-proof__card-title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  letter-spacing: var(--tk-snug);
  color: var(--ink-1);
  line-height: var(--lh-snug);
}

.wfs-proof__card-body {
  color: var(--ink-2);
  line-height: var(--lh-body);
}

/* =========================================
   WESTGATEFS — DIFFERENCE TABLE
   Premium Responsive Comparison Experience
========================================= */

.wfs-difference__wrap {
  position: relative;
  margin-top: clamp(1.5rem, 2vw, 2.25rem);
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: linear-gradient( 180deg, rgba(255,255,255,0.96) 0%, rgba(248,250,252,0.92) 100% );
  box-shadow: 0 1px 2px rgba(15,23,42,0.02), 0 14px 40px rgba(15,23,42,0.05), 0 32px 90px rgba(15,23,42,0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* =========================================
   TABLE
========================================= */

.wfs-difference__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
}

/* =========================================
   HEADER
========================================= */

.wfs-difference__table thead th {
  padding: 1.4rem 2rem;
  text-align: left;
  background: linear-gradient( 180deg, rgba(248,250,252,0.96) 0%, rgba(241,245,249,0.9) 100% );
  border-bottom: 1px solid rgba(15,23,42,0.07);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* =========================================
   ROWS
========================================= */

.wfs-difference__table tbody tr {
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), background-color 320ms ease;
}

.wfs-difference__table tbody tr + tr td {
  border-top: 1px solid rgba(15,23,42,0.06);
}

/* =========================================
   CELLS
========================================= */

.wfs-difference__table tbody td {
  position: relative;
  padding: 1.9rem 2rem;
  vertical-align: top;
  line-height: 1.85;
  transition: background-color 320ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================
   LEFT COLUMN
========================================= */

.wfs-difference__table tbody td:first-child {
  width: 36%;
  background: linear-gradient( 180deg, rgba(248,250,252,0.78) 0%, rgba(241,245,249,0.55) 100% );
  font-family: var(--font-display);
  font-size: clamp(1rem, 1vw, 1.08rem);
  font-weight: 600;
  color: var(--ink-1);
  letter-spacing: -0.015em;
}

/* =========================================
   RIGHT COLUMN
========================================= */

.wfs-difference__table tbody td:last-child {
  background: rgba(255,255,255,0.7);
  color: var(--ink-2);
  font-size: clamp(0.98rem, 1vw, 1.05rem);
  font-weight: 450;
}

/* =========================================
   PREMIUM HOVER
========================================= */

@media (hover: hover) {
  .wfs-difference__table tbody tr:hover td {
    background: rgba(255,255,255,0.96);
  }
}

@media (hover: hover) {
  .wfs-difference__table tbody tr:hover td:first-child {
    transform: translate3d(4px, 0, 0);
  }
}

@media (hover: hover) {
  .wfs-difference__table tbody tr:hover td:last-child {
    transform: translate3d(8px, 0, 0);
  }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {
  .wfs-difference__table thead th {
    padding: 1.2rem 1.4rem;
  }
}

@media (max-width: 991.98px) {
  .wfs-difference__table tbody td {
    padding: 1.45rem 1.4rem;
  }
}

/* =========================================
   MOBILE EXPERIENCE
   KEEP TABLE FEEL — NOT RANDOM CARDS
========================================= */

@media (max-width: 767.98px) {
  .wfs-difference__wrap {
    border-radius: 1.5rem;
    overflow: hidden;
  }
}

@media (max-width: 767.98px) {
  .wfs-difference__wrap.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 767.98px) {
  .wfs-difference__table {
    min-width: 640px;
  }
}

@media (max-width: 767.98px) {
  .wfs-difference__table thead th {
    padding: 1rem 1.15rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 767.98px) {
  .wfs-difference__table tbody td {
    padding: 1.2rem 1.15rem;
    line-height: 1.75;
  }
}

@media (max-width: 767.98px) {
  .wfs-difference__table tbody td:first-child {
    font-size: 0.92rem;
    min-width: 220px;
  }
}

@media (max-width: 767.98px) {
  .wfs-difference__table tbody td:last-child {
    font-size: 0.95rem;
    min-width: 320px;
  }
}

/* =========================================
   SCROLLBAR POLISH
========================================= */

.wfs-difference__wrap.table-responsive::-webkit-scrollbar {
  height: 10px;
}

.wfs-difference__wrap.table-responsive::-webkit-scrollbar-track {
  background: rgba(241,245,249,0.9);
  border-radius: 999px;
}

.wfs-difference__wrap.table-responsive::-webkit-scrollbar-thumb {
  background: rgba(148,163,184,0.5);
  border-radius: 999px;
}

.wfs-difference__wrap.table-responsive::-webkit-scrollbar-thumb:hover {
  background: rgba(100,116,139,0.7);
}

/* =============================================================
   20. INDUSTRIES
   ============================================================= */

.wfs-industries__grid > [class*="col-"] {
  display: flex;
}

.wfs-industry {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--sp-6);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  color: var(--ink-1);
  width: 100%;
  height: 100%;
  transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

.wfs-industry:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.wfs-industry__title {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 500;
  letter-spacing: var(--tk-snug);
  color: var(--ink-1);
  line-height: 1.3;
}

.wfs-industry__sub {
  font-size: var(--fs-xs);
  color: var(--ink-3);
}

/* =============================================================
   21. MISSION
   ============================================================= */

.wfs-mission__col--media {
  display: flex;
}

.wfs-mission__figure {
  width: 100%;
}

.wfs-mission__figure picture, .wfs-mission__figure img {
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.wfs-mission__copy {
  max-width: 34rem;
}

.wfs-mission__copy .wfs-h2 {
  margin-top: var(--sp-3);
}

.wfs-mission__copy .wfs-prose__p {
  margin-top: var(--sp-5);
}

@media (max-width: 991.98px) {
  .wfs-mission__figure img {
    aspect-ratio: 4 / 3;
  }
}

/* =============================================================
   22. LOCATIONS
   ============================================================= */

.wfs-locations__intro {
  max-width: 32rem;
}

.wfs-locations__intro .wfs-h2 {
  margin-top: var(--sp-3);
}

.wfs-locations__intro .wfs-prose__p {
  margin-top: var(--sp-5);
}

.wfs-locations__address {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--ink-2);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.wfs-locations__address strong {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink-1);
  font-size: var(--fs-md);
  margin-bottom: var(--sp-1);
}

.wfs-locations__address a {
  margin-top: var(--sp-2);
  color: var(--sky);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
  width: fit-content;
}

.wfs-locations__address a:hover {
  color: var(--sky-deep);
}

.wfs-locations__cities > [class*="col-"] {
  display: flex;
}

.wfs-locations__city {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-6) var(--sp-6) var(--sp-7);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  color: var(--ink-1);
  width: 100%;
  height: 100%;
  transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

.wfs-locations__city:hover {
  border-color: var(--sky);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.wfs-locations__city-name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  letter-spacing: var(--tk-snug);
}

.wfs-locations__city-sub {
  font-size: var(--fs-xs);
  color: var(--ink-3);
}

.wfs-locations__city--all {
  background: var(--violet);
  color: var(--paper);
  border-color: var(--violet);
}

.wfs-locations__city--all .wfs-locations__city-sub {
  color: rgba(255,255,255,0.78);
}

.wfs-locations__city--all:hover {
  background: var(--sky-deep);
  border-color: var(--sky-deep);
}

/* =============================================================
   23. PROCESS
   ============================================================= */

.wfs-process__steps {
  position: relative;
  margin: 0;
  padding: 0;
}

.wfs-process__steps > [class*="col-"] {
  display: flex;
}

.wfs-process__step {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  position: relative;
  z-index: 1;
  width: 100%;
}

.wfs-process__num {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--brand);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--sp-2);
}

.wfs-process__num img {
  width: 42px;
  height: 42px;
}

.wfs-process__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  letter-spacing: var(--tk-snug);
  color: var(--ink-1);
}

.wfs-process__body {
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  color: var(--ink-2);
}

/* =============================================================
   24. STAY
   ============================================================= */

.wfs-stay {
  text-align: center;
}

.wfs-stay__head {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.wfs-stay__list {
  margin: var(--sp-10) auto 0;
  max-width: 52ch;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  text-align: left;
}

.wfs-stay__list li {
  position: relative;
  padding-left: var(--sp-6);
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--ink-2);
}

.wfs-stay__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 1px;
  background: var(--brand);
}

/* =============================================================
   25. NOT-A-FIT
   ============================================================= */

.wfs-fit-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}

.wfs-fit-list li {
  position: relative;
  padding-left: var(--sp-6);
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--ink-2);
}

.wfs-fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 1px;
  background: var(--ink-3);
}

/* =============================================================
   26. OPERATOR INSIGHT
   ============================================================= */

.wfs-insight {
  padding-block: clamp(48px, 5vw, 80px);
  background: var(--paper);
}

.wfs-insight__line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 1.6vw + 0.5rem, 1.625rem);
  line-height: 1.45;
  color: var(--ink-1);
  letter-spacing: var(--tk-snug);
  text-align: center;
  text-wrap: balance;
}

/* =============================================================
   27. REVIEWS
   ============================================================= */

.wfs-reviews__grid > [class*="col-"] {
  display: flex;
}

.wfs-review {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding: var(--sp-8);
  margin-bottom: .25em;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  width: 100%;
  transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}

.wfs-review:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.wfs-review--featured {
  background: linear-gradient(180deg, var(--paper) 0%, var(--brand-tint) 100%);
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}

.wfs-review__stars {
  display: inline-flex;
  gap: 3px;
}

.wfs-review__stars img {
  width: 14px;
  height: 14px;
}

.wfs-review__quote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--fs-md);
  line-height: 1.55;
  color: var(--ink-1);
  letter-spacing: var(--tk-snug);
}

.wfs-review__quote p {
  margin: 0;
}

.wfs-review__byline {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: var(--fs-sm);
  color: var(--ink-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
}

.wfs-review__byline strong {
  color: var(--ink-1);
  font-weight: 600;
  font-family: var(--font-ui);
}

/* =============================================================
   28. FAQ
   ============================================================= */

.wfs-faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.wfs-faq__item {
  border-bottom: 1px solid var(--line);
}

.wfs-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--sp-6) 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-6);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--ink-1);
  letter-spacing: var(--tk-snug);
  line-height: var(--lh-snug);
  transition: color var(--t-base) var(--ease);
}

.wfs-faq__item summary::-webkit-details-marker {
  display: none;
}

.wfs-faq__item summary::after {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 0.45rem;
  background-color: var(--ink-2);
  -webkit-mask: url("/assets/img/global/icons/plus.svg") center / contain no-repeat;
  mask: url("/assets/img/global/icons/plus.svg") center / contain no-repeat;
  transition: transform var(--t-base) var(--ease), background-color var(--t-base) var(--ease);
}

.wfs-faq__item[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--brand);
}

.wfs-faq__item summary:hover {
  color: var(--brand-deep);
}

.wfs-faq__answer {
  padding: 0 0 var(--sp-6) 0;
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--ink-2);
  max-width: 64ch;
}

.wfs-faq__answer p {
  margin: 0;
}

.wfs-faq__answer a {
  color: var(--brand-deep);
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
}

.wfs-faq__answer a:hover {
  color: var(--brand);
}

/* =============================================================
   29. OPERATIONAL STANDARDS — editorial list
   ============================================================= */

.wfs-standards {
  background: var(--paper);
}

.wfs-standards__list {
  margin-top: var(--sp-12);
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.wfs-standards__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--sp-6);
  align-items: flex-start;
  padding: var(--sp-7) 0;
  border-bottom: 1px solid var(--line);
}

.wfs-standards__icon {
  margin: 0;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-warm);
  border-radius: var(--r-md);
}

.wfs-standards__icon img {
  width: 42px;
  height: 42px;
}

.wfs-standards__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.wfs-standards__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  letter-spacing: var(--tk-snug);
  color: var(--ink-1);
  line-height: 1.3;
}

.wfs-standards__sub {
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  color: var(--ink-2);
  max-width: 60ch;
}

.wfs-standards__note {
  margin-top: var(--sp-10);
  text-align: center;
  font-style: italic;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  color: var(--ink-3);
}

@media (max-width: 640px) {
  .wfs-standards__item {
    grid-template-columns: 56px 1fr;
    gap: var(--sp-4);
    padding: var(--sp-6) 0;
  }
}

@media (max-width: 640px) {
  .wfs-standards__icon {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 640px) {
  .wfs-standards__icon img {
    width: 24px;
    height: 24px;
  }
}

/* =============================================================
   30. FINAL CTA
   ============================================================= */

.wfs-section--cta {
  background: radial-gradient(circle at 50% 0%, rgba(197, 106, 46, 0.06), transparent 60%), var(--paper);
}

.wfs-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-5);
  padding: clamp(40px, 4vw, 72px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-lg);
}

.wfs-cta-block .wfs-h2 {
  margin-top: var(--sp-2);
}

.wfs-cta-block__lede {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--ink-2);
  max-width: 56ch;
}

.wfs-cta-block__assurance {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-6);
  justify-content: center;
  margin-top: var(--sp-4);
}

.wfs-cta-block__assurance li {
  position: relative;
  padding-left: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--ink-3);
}

.wfs-cta-block__assurance li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--brand);
  border-radius: var(--r-pill);
}

.wfs-cta-block .wfs-cta {
  margin-top: var(--sp-2);
}

.wfs-cta-block .wfs-btn {
  min-width: 14rem;
}

@media (max-width: 480px) {
  .wfs-cta-block .wfs-btn {
    min-width: 0;
  }
}

/* =============================================================
   31. FORMS (global, for future use)
   ============================================================= */

.wfs-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.wfs-field__label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.005em;
}

.wfs-input, .wfs-textarea, .wfs-select {
  width: 100%;
  padding: 0 var(--sp-4);
  min-height: 48px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  font-family: var(--font-ui);
  font-size: var(--fs-body);
  color: var(--ink-1);
  transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

.wfs-textarea {
  padding: var(--sp-3) var(--sp-4);
  min-height: 140px;
  resize: vertical;
  line-height: var(--lh-body);
}

.wfs-input:focus-visible, .wfs-textarea:focus-visible, .wfs-select:focus-visible {
  outline: 0;
  border-color: var(--brand);
  box-shadow: var(--focus-ring);
}

.wfs-field__help {
  font-size: var(--fs-xs);
  color: var(--ink-3);
}

/* =============================================================
   32. ACCESSIBILITY
   ============================================================= */

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

.wfs-skip {
  position: absolute;
  top: -100px;
  left: var(--sp-4);
  padding: var(--sp-3) var(--sp-5);
  background: var(--brand);
  color: var(--paper);
  font-weight: 600;
  font-size: var(--fs-sm);
  border-radius: var(--r-sm);
  z-index: 100;
  transition: top var(--t-base) var(--ease);
}

.wfs-skip:focus {
  top: var(--sp-3);
}

:focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
  border-radius: var(--r-xs);
}

/* =============================================================
   33. REVEAL ANIMATIONS (used by global.js)
   ============================================================= */

.wfs-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--t-deliberate) var(--ease-out), transform var(--t-deliberate) var(--ease-out);
  will-change: opacity, transform;
}

.wfs-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   34. MOTION DEFAULTS
   ============================================================= */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wfs-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =============================================================
   35. UTILITIES (minimal, intentional)
   ============================================================= */

.wfs-hidden {
  display: none !important;
}

.wfs-no-wrap {
  white-space: nowrap;
}

.wfs-text-center {
  text-align: center;
}

