/* =========================================================================
   Wrist Hinge Fit — design system
   Sonoran-desert palette: warm sand background, terracotta primary, sage
   secondary, deep clay text. Zilla Slab (display) paired with Mulish
   (body) via Google Fonts. Protractor / angle-gauge motif throughout —
   notched-corner cards, stair-step process, arc readouts. Hand-written,
   no framework.
   ========================================================================= */

:root {
  --whf-cream:        #f7efe0;
  --whf-cream-alt:     #efe2c8;
  --whf-white:         #fffcf5;
  --whf-clay-950:      #241a12;
  --whf-clay-900:      #2b2118;
  --whf-clay-800:      #3b2e22;
  --whf-clay-600:      #5c4c3b;
  --whf-clay-400:      #8a7862;
  --whf-line:          rgba(43, 33, 24, 0.14);
  --whf-line-strong:   rgba(43, 33, 24, 0.24);
  --whf-terracotta-700: #9c4423;
  --whf-terracotta-600: #c1552f;
  --whf-terracotta-500: #d97a4e;
  --whf-terracotta-100: #f3ddca;
  --whf-sage-700:      #4d5a3b;
  --whf-sage-600:      #6c7952;
  --whf-sage-400:      #9aa87d;
  --whf-gold-500:      #c99a3e;

  --whf-font-display: "Zilla Slab", Georgia, "Times New Roman", serif;
  --whf-font-body: "Mulish", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --whf-wrap-w: 1180px;
  --whf-notch: 20px;
  --whf-shadow-sm: 0 2px 10px rgba(43, 33, 24, 0.10);
  --whf-shadow-md: 0 18px 36px rgba(43, 33, 24, 0.16);
  --whf-shadow-terra: 0 16px 34px rgba(156, 68, 35, 0.22);
  --whf-ease: 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.whf-body {
  margin: 0;
  font-family: var(--whf-font-body);
  color: var(--whf-clay-600);
  background: var(--whf-cream);
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }
h1, h2, h3, h4 {
  font-family: var(--whf-font-display);
  color: var(--whf-clay-950);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.005em;
}
p { margin: 0 0 1em; color: var(--whf-clay-600); }
address { font-style: normal; }

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

.whf-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--whf-terracotta-600);
  color: var(--whf-white);
  padding: 0.75em 1.25em;
  z-index: 1000;
  font-weight: 700;
}
.whf-skip:focus { left: 1em; top: 1em; }

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

/* ---------- Utility bar ---------- */
.whf-utility {
  background: var(--whf-clay-950);
  color: var(--whf-cream-alt);
  font-size: 0.82rem;
}
.whf-utility__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 9px 24px;
  flex-wrap: wrap;
}
.whf-utility__phone { color: var(--whf-terracotta-500); font-weight: 700; }
.whf-utility__est { margin-left: auto; letter-spacing: 0.02em; text-transform: uppercase; font-size: 0.72rem; opacity: 0.75; }

/* ---------- Header ---------- */
.whf-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--whf-cream);
  border-bottom: 3px solid var(--whf-terracotta-600);
  transition: padding var(--whf-ease);
}
.whf-header__grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  transition: padding var(--whf-ease);
}
.whf-header.is-condensed .whf-header__grid { padding-top: 10px; padding-bottom: 10px; }

.whf-brand { display: flex; align-items: center; gap: 12px; }
.whf-brand__mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--whf-terracotta-600);
  color: var(--whf-white);
  font-family: var(--whf-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}
.whf-brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.whf-brand__name { font-family: var(--whf-font-display); font-weight: 700; font-size: 1.14rem; color: var(--whf-clay-950); }
.whf-brand__tag { font-size: 0.74rem; color: var(--whf-clay-400); text-transform: uppercase; letter-spacing: 0.05em; }

.whf-nav__list { display: flex; align-items: center; gap: 2px; justify-content: center; flex-wrap: wrap; }
.whf-nav__item a {
  display: block;
  padding: 8px 13px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--whf-clay-800);
  border-radius: 3px;
  transition: color var(--whf-ease), background var(--whf-ease);
}
.whf-nav__item a:hover { color: var(--whf-terracotta-700); background: var(--whf-terracotta-100); }
.whf-nav__item.is-active a { color: var(--whf-terracotta-700); font-weight: 800; }

.whf-header__actions { display: flex; align-items: center; gap: 12px; }
.whf-header__cta { display: inline-flex; }

.whf-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid var(--whf-clay-950);
  cursor: pointer;
}
.whf-nav-toggle span { width: 18px; height: 2px; background: var(--whf-clay-950); margin: 0 auto; transition: transform var(--whf-ease), opacity var(--whf-ease); }
.whf-nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.whf-nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.whf-nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.whf-btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.94rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--whf-ease), color var(--whf-ease), border-color var(--whf-ease), transform var(--whf-ease);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}
.whf-btn--primary { background: var(--whf-terracotta-600); color: var(--whf-white); box-shadow: var(--whf-shadow-terra); }
.whf-btn--primary:hover { background: var(--whf-terracotta-700); transform: translateY(-2px); }
.whf-btn--ghost { background: transparent; color: var(--whf-clay-950); border-color: var(--whf-clay-950); clip-path: none; }
.whf-btn--ghost:hover { background: var(--whf-clay-950); color: var(--whf-cream); }
.whf-btn--panel { background: var(--whf-sage-600); color: var(--whf-white); }
.whf-btn--panel:hover { background: var(--whf-sage-700); transform: translateY(-2px); }
.whf-btn--block { display: block; width: 100%; text-align: center; }

/* ---------- Sections ---------- */
.whf-section { padding: 76px 0; }
.whf-section--alt { background: var(--whf-cream-alt); }
.whf-section__head { max-width: 640px; margin: 0 auto 42px; text-align: center; }
.whf-section__head.whf-align-left { margin-left: 0; text-align: left; }
.whf-eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--whf-terracotta-700);
  margin-bottom: 10px;
}
.whf-lede { font-size: 1.1rem; color: var(--whf-clay-600); }
.whf-text-center { text-align: center; }

.whf-page-header { padding: 56px 0 44px; border-bottom: 1px solid var(--whf-line); }
.whf-breadcrumb {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--whf-sage-700);
  margin-bottom: 12px;
}
.whf-page-header h1 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); max-width: 780px; }

/* ---------- Hero ---------- */
.whf-hero { position: relative; padding: 56px 0 72px; overflow: hidden; }
.whf-hero::before {
  content: "";
  position: absolute;
  top: -60px; right: -120px;
  width: 480px; height: 480px;
  background: var(--whf-terracotta-100);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 70%);
  z-index: 0;
}
.whf-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}
.whf-hero__eyebrow { display: inline-block; font-weight: 700; color: var(--whf-sage-700); margin-bottom: 14px; font-size: 0.95rem; }
.whf-hero h1 { font-size: clamp(2.1rem, 4vw, 3.15rem); margin-bottom: 20px; }
.whf-hero__lede { font-size: 1.08rem; margin-bottom: 28px; max-width: 480px; }
.whf-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.whf-arc-panel {
  background: var(--whf-white);
  border: 1px solid var(--whf-line);
  padding: 30px;
  box-shadow: var(--whf-shadow-md);
  transform: rotate(-1.6deg);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
}
.whf-arc-panel__title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-weight: 800; color: var(--whf-clay-950); }
.whf-live-dot { display: inline-flex; align-items: center; gap: 6px; font-size: 0.76rem; font-weight: 700; color: var(--whf-sage-700); text-transform: uppercase; letter-spacing: 0.04em; }
.whf-live-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--whf-sage-600); animation: whf-pulse 1.6s infinite; }
@keyframes whf-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.whf-arc-row { display: flex; gap: 18px; margin-bottom: 22px; justify-content: space-between; }
.whf-arc { position: relative; width: 108px; height: 108px; }
.whf-arc__ring { width: 100%; height: 100%; border-radius: 50%; display: grid; place-items: center; }
.whf-arc__center { display: flex; flex-direction: column; align-items: center; width: 78px; height: 78px; background: var(--whf-white); border-radius: 50%; justify-content: center; }
.whf-arc__val { font-family: var(--whf-font-display); font-weight: 700; font-size: 1.18rem; color: var(--whf-clay-950); }
.whf-arc__label { font-size: 0.66rem; color: var(--whf-clay-400); text-transform: uppercase; letter-spacing: 0.03em; }

.whf-metric-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--whf-line); font-size: 0.92rem; }
.whf-metric-row:last-child { border-bottom: none; }
.whf-metric-row span:first-child { color: var(--whf-clay-400); }
.whf-metric-row span:last-child { font-weight: 700; color: var(--whf-clay-950); }

/* ---------- Stats strip ---------- */
.whf-stats-strip { background: var(--whf-clay-950); padding: 30px 0; }
.whf-stats-strip__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.whf-stat__num { display: block; font-family: var(--whf-font-display); font-size: 1.7rem; font-weight: 700; color: var(--whf-terracotta-500); }
.whf-stat__label { font-size: 0.78rem; color: var(--whf-cream-alt); text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- Grid & cards ---------- */
.whf-grid { display: grid; gap: 24px; }
.whf-grid--2 { grid-template-columns: repeat(2, 1fr); }
.whf-grid--3 { grid-template-columns: repeat(3, 1fr); }
.whf-grid--4 { grid-template-columns: repeat(4, 1fr); }

.whf-card {
  background: var(--whf-white);
  border: 1px solid var(--whf-line);
  padding: 28px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--whf-notch)), calc(100% - var(--whf-notch)) 100%, 0 100%);
  transition: box-shadow var(--whf-ease), transform var(--whf-ease);
}
.whf-card:hover { box-shadow: var(--whf-shadow-md); transform: translateY(-3px); }
.whf-card h3 { font-size: 1.14rem; margin-bottom: 8px; }
.whf-card__icon {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  background: var(--whf-terracotta-100);
  color: var(--whf-terracotta-700);
  font-family: var(--whf-font-display);
  font-weight: 700;
  margin-bottom: 14px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}
.whf-card__link { display: inline-block; margin-top: 8px; font-weight: 700; color: var(--whf-terracotta-700); }
.whf-card__link:hover { text-decoration: underline; }

/* ---------- Two-column layout ---------- */
.whf-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.whf-check-list li { position: relative; padding-left: 26px; margin-bottom: 11px; color: var(--whf-clay-600); }
.whf-check-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--whf-sage-600); font-weight: 800; }

/* ---------- Stair-step process ---------- */
.whf-stair { display: flex; flex-direction: column; gap: 8px; }
.whf-stair__item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  background: var(--whf-white);
  border: 1px solid var(--whf-line);
  border-left: 5px solid var(--whf-terracotta-600);
}
.whf-stair__item:nth-child(2) { margin-left: 5%; border-left-color: var(--whf-sage-600); }
.whf-stair__item:nth-child(3) { margin-left: 10%; border-left-color: var(--whf-gold-500); }
.whf-stair__item:nth-child(4) { margin-left: 15%; border-left-color: var(--whf-terracotta-600); }
.whf-stair__item:nth-child(5) { margin-left: 20%; border-left-color: var(--whf-sage-600); }
.whf-stair__deg { font-family: var(--whf-font-display); font-size: 1.6rem; font-weight: 700; color: var(--whf-terracotta-600); text-align: center; }
.whf-stair__item h3 { margin-bottom: 4px; font-size: 1.05rem; }
.whf-stair__item p { margin: 0; font-size: 0.95rem; }

/* ---------- Bars ---------- */
.whf-bars { display: flex; flex-direction: column; gap: 16px; }
.whf-bar-row__label { display: flex; justify-content: space-between; font-size: 0.88rem; margin-bottom: 6px; color: var(--whf-clay-600); }
.whf-bar-row__label strong { color: var(--whf-clay-950); }
.whf-bar-track { height: 8px; background: var(--whf-cream-alt); overflow: hidden; }
.whf-bar-fill { height: 100%; background: linear-gradient(90deg, var(--whf-terracotta-600), var(--whf-terracotta-500)); }
.whf-bar-fill--muted { background: var(--whf-clay-400); }
.whf-bar-fill--sage { background: linear-gradient(90deg, var(--whf-sage-700), var(--whf-sage-400)); }

/* ---------- Brand tiles ---------- */
.whf-brand-tile {
  background: var(--whf-white);
  border: 1px solid var(--whf-line);
  padding: 22px;
  text-align: center;
}
.whf-brand-tile__mark {
  width: 46px; height: 46px;
  margin: 0 auto 10px;
  display: grid; place-items: center;
  background: var(--whf-cream-alt);
  color: var(--whf-clay-800);
  font-family: var(--whf-font-display);
  font-weight: 700;
  border-radius: 50%;
}
.whf-brand-tile strong { display: block; font-family: var(--whf-font-display); color: var(--whf-clay-950); margin-bottom: 3px; }
.whf-brand-tile span { font-size: 0.82rem; color: var(--whf-clay-400); }

/* ---------- Testimonials ---------- */
.whf-testimonial { background: var(--whf-white); border: 1px solid var(--whf-line); padding: 26px; }
.whf-stars { color: var(--whf-gold-500); letter-spacing: 2px; display: block; margin-bottom: 10px; }
.whf-testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.whf-avatar {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--whf-terracotta-100);
  color: var(--whf-terracotta-700);
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}
.whf-testimonial__author strong { display: block; color: var(--whf-clay-950); }
.whf-testimonial__author span { font-size: 0.82rem; color: var(--whf-clay-400); }

/* ---------- Team ---------- */
.whf-team-photo {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: var(--whf-clay-950);
  color: var(--whf-cream);
  font-family: var(--whf-font-display);
  font-weight: 700;
  margin-bottom: 14px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}
.whf-team-role { font-size: 0.78rem; font-weight: 800; color: var(--whf-sage-700); text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- Pricing ---------- */
.whf-pricing-card { text-align: left; }
.whf-pricing-card--featured { border: 2px solid var(--whf-terracotta-600); box-shadow: var(--whf-shadow-terra); }
.whf-price { font-family: var(--whf-font-display); font-size: 2.1rem; font-weight: 700; color: var(--whf-clay-950); margin: 10px 0 12px; }
.whf-price span { font-size: 0.9rem; font-weight: 500; color: var(--whf-clay-400); }
.whf-pricing-card ul { margin: 14px 0 20px; }
.whf-pricing-card ul li { position: relative; padding-left: 22px; margin-bottom: 8px; font-size: 0.92rem; }
.whf-pricing-card ul li::before { content: "\2013"; position: absolute; left: 0; color: var(--whf-terracotta-600); font-weight: 800; }

.whf-table-wrap { overflow-x: auto; }
.whf-table { width: 100%; border-collapse: collapse; background: var(--whf-white); }
.whf-table th, .whf-table td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--whf-line); }
.whf-table th { background: var(--whf-clay-950); color: var(--whf-cream); font-weight: 700; font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.03em; }
.whf-table tr:last-child td { border-bottom: none; }

/* ---------- FAQ ---------- */
.whf-faq-item {
  background: var(--whf-white);
  border: 1px solid var(--whf-line);
  padding: 6px 22px;
  margin-bottom: 12px;
}
.whf-faq-item summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 700;
  color: var(--whf-clay-950);
  font-family: var(--whf-font-display);
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.whf-faq-item summary::-webkit-details-marker { display: none; }
.whf-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 1.3rem;
  color: var(--whf-terracotta-600);
  transition: transform var(--whf-ease);
}
.whf-faq-item[open] summary::after { transform: rotate(45deg); }
.whf-faq-item p { padding-bottom: 18px; margin: 0; }

/* ---------- Forms ---------- */
.whf-form-card { background: var(--whf-white); border: 1px solid var(--whf-line); padding: 30px; box-shadow: var(--whf-shadow-sm); }
.whf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.whf-form-field { margin-bottom: 16px; }
.whf-form-field label { display: block; font-weight: 700; font-size: 0.86rem; color: var(--whf-clay-800); margin-bottom: 6px; }
.whf-form-field input, .whf-form-field select, .whf-form-field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--whf-line-strong);
  background: var(--whf-cream);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--whf-clay-950);
}
.whf-form-field input:focus, .whf-form-field select:focus, .whf-form-field textarea:focus {
  outline: 2px solid var(--whf-terracotta-600);
  outline-offset: 1px;
}
.whf-form-note { font-size: 0.82rem; color: var(--whf-clay-400); }

/* ---------- Locate panel ---------- */
.whf-locate {
  position: relative;
  height: 220px;
  background: var(--whf-clay-950);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}
.whf-locate--lg { height: 280px; }
.whf-locate__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(217, 122, 78, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 122, 78, 0.16) 1px, transparent 1px);
  background-size: 26px 26px;
}
.whf-locate__brackets {
  position: absolute; inset: 20px;
  border: 1px solid rgba(247, 239, 224, 0.3);
}
.whf-locate__pin {
  position: absolute; top: 44%; left: 48%;
  width: 14px; height: 14px;
  background: var(--whf-terracotta-500);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(217, 122, 78, 0.22);
}
.whf-locate__label { position: relative; color: var(--whf-cream); font-weight: 700; }
.whf-locate__coords { position: relative; color: var(--whf-cream-alt); font-size: 0.78rem; }

/* ---------- CTA band ---------- */
.whf-cta { background: var(--whf-sage-700); padding: 62px 0; color: var(--whf-white); }
.whf-cta h2 { color: var(--whf-white); }
.whf-cta p { color: rgba(255, 252, 245, 0.86); }
.whf-cta__inner { text-align: center; max-width: 640px; margin: 0 auto; }
.whf-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.whf-cta .whf-btn--ghost { border-color: var(--whf-white); color: var(--whf-white); }
.whf-cta .whf-btn--ghost:hover { background: var(--whf-white); color: var(--whf-sage-700); }

/* ---------- Error page ---------- */
.whf-error { padding: 100px 0; text-align: center; }
.whf-error-code {
  display: block;
  font-family: var(--whf-font-display);
  font-size: 6rem;
  font-weight: 700;
  color: var(--whf-terracotta-100);
  line-height: 1;
  margin-bottom: 10px;
}

/* ---------- Footer ---------- */
.whf-footer { background: var(--whf-clay-950); color: var(--whf-cream-alt); padding: 64px 0 0; }
.whf-footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; }
.whf-footer .whf-brand__name { color: var(--whf-white); font-size: 1.2rem; }
.whf-footer__brand p { color: var(--whf-clay-400); margin: 12px 0 16px; font-size: 0.92rem; }
.whf-footer__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.whf-tag { font-size: 0.72rem; padding: 5px 10px; border: 1px solid rgba(247, 239, 224, 0.24); color: var(--whf-cream-alt); }
.whf-footer h3 { color: var(--whf-white); font-size: 0.98rem; margin-bottom: 14px; }
.whf-footer address, .whf-footer p { color: var(--whf-clay-400); font-size: 0.9rem; }
.whf-footer a:hover { color: var(--whf-terracotta-500); }
.whf-footer__links li { margin-bottom: 9px; }
.whf-footer__links a { color: var(--whf-clay-400); font-size: 0.9rem; }
.whf-hours li { display: flex; justify-content: space-between; font-size: 0.86rem; padding: 5px 0; color: var(--whf-clay-400); }
.whf-footer__bottom { border-top: 1px solid rgba(247, 239, 224, 0.12); padding: 20px 0; }
.whf-footer__bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; color: var(--whf-clay-400); }

/* ---------- Article (blog) ---------- */
.whf-article { max-width: 720px; margin: 0 auto; }
.whf-article h2 { margin-top: 1.6em; font-size: 1.4rem; }
.whf-article blockquote {
  margin: 1.6em 0;
  padding: 18px 22px;
  border-left: 4px solid var(--whf-terracotta-600);
  background: var(--whf-cream-alt);
  font-family: var(--whf-font-display);
  font-size: 1.05rem;
  color: var(--whf-clay-800);
}
.whf-article-header { max-width: 720px; margin-left: auto; margin-right: auto; }
.whf-post-meta {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--whf-sage-700);
  margin-bottom: 8px;
}

/* ---------- Scroll reveal — gated behind js-on so no-JS visitors and
   crawlers that skip JS execution always see full content. ---------- */
.whf-reveal { opacity: 1; transform: none; }
.js-on .whf-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}
.js-on .whf-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Locked scroll (mobile nav open) ---------- */
body.whf-locked { overflow: hidden; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1040px) {
  .whf-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .whf-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 940px) {
  .whf-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--whf-white);
    border-bottom: 3px solid var(--whf-terracotta-600);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--whf-ease);
  }
  .whf-nav.is-open { max-height: 560px; }
  .whf-nav__list { flex-direction: column; align-items: stretch; padding: 10px 24px 20px; gap: 0; }
  .whf-nav__item a { padding: 13px 4px; border-bottom: 1px solid var(--whf-line); }
  .whf-header__cta { display: none; }
  .whf-nav-toggle { display: flex; }
  .whf-hero__grid { grid-template-columns: 1fr; }
  .whf-hero::before { width: 320px; height: 320px; }
  .whf-two-col { grid-template-columns: 1fr; }
  .whf-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .whf-stats-strip__row { grid-template-columns: repeat(2, 1fr); gap: 26px; }
}

@media (max-width: 680px) {
  .whf-section { padding: 54px 0; }
  .whf-grid--2, .whf-grid--3, .whf-grid--4 { grid-template-columns: 1fr; }
  .whf-form-row { grid-template-columns: 1fr; }
  .whf-footer__top { grid-template-columns: 1fr; }
  .whf-stair__item { grid-template-columns: 60px 1fr; margin-left: 0 !important; }
  .whf-utility__est { display: none; }
  .whf-error-code { font-size: 4rem; }
}
