/* ==========================================================================
   FrameFix - COMPONENTS
   Chrome, buttons, pills, cards and interactive parts.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Page shell
   -------------------------------------------------------------------------- */
.ff-shell { min-height: 100vh; display: flex; flex-direction: column; }
.ff-main  { flex: 1 1 auto; }

/* --------------------------------------------------------------------------
   Announcement bar
   -------------------------------------------------------------------------- */
.ff-announce {
  background: var(--ff-ink);
  color: var(--ff-on-dark-bar);
  font-size: 13px; font-weight: 500; letter-spacing: .01em;
}
.ff-announce[hidden] { display: none !important; }
.ff-announce__inner {
  max-width: var(--ff-container); margin: 0 auto;
  padding: 10px var(--ff-gutter);
  display: flex; align-items: center; justify-content: center;
  gap: 26px; flex-wrap: wrap; text-align: center;
}
.ff-announce__dot { color: var(--ff-brass); }
.ff-announce__tel { color: var(--ff-white); font-weight: 700; }
.ff-announce__tel:hover { color: var(--ff-brass-light); }
.ff-announce__close {
  background: none; border: 0; cursor: pointer;
  color: var(--ff-on-dark-4); font-size: 18px; line-height: 1;
  padding: 6px 8px; border-radius: 8px;
  transition: color .18s ease, background .18s ease;
}
.ff-announce__close:hover { color: var(--ff-white); background: rgba(255,255,255,.1); }

/* WhatsApp pill (on dark) */
.ff-wa-pill {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--ff-white); font-weight: 700;
  background: rgba(37,211,102,.16);
  border: 1px solid rgba(37,211,102,.45);
  border-radius: var(--ff-r-pill);
  padding: 0 15px 0 12px; min-height: 44px;
  transition: background .18s ease;
}
.ff-wa-pill:hover { background: rgba(37,211,102,.3); color: var(--ff-white); }
.ff-wa-pill--lg { gap: 9px; font-size: 14px; padding: 0 17px 0 13px; width: fit-content; background: rgba(37,211,102,.14); border-color: rgba(37,211,102,.4); }
.ff-wa-pill--lg:hover { background: rgba(37,211,102,.28); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.ff-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--ff-line);
}
.ff-header__inner {
  max-width: var(--ff-container); margin: 0 auto;
  padding: 14px var(--ff-gutter);
  display: flex; align-items: center; gap: 28px;
}
.ff-brand { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.ff-brand img { width: 42px; height: 42px; object-fit: contain; display: block; }
.ff-brand__text { display: flex; flex-direction: column; line-height: 1; }
.ff-brand__name { font-size: 17px; font-weight: 800; letter-spacing: -.02em; color: var(--ff-ink); }
/* The handoff's rule: accent text on light is always brass-dark; brass at 9px
   on white is 2.8:1. The footer lockup sits on ink and keeps the brass. */
.ff-brand__tag  { font-size: 9px; font-weight: 700; letter-spacing: .16em; color: var(--ff-brass-dark); margin-top: 3px; }

.ff-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; flex-wrap: wrap; }
.ff-nav a {
  font-size: 14.5px; font-weight: 600; color: var(--ff-ink-70);
  padding: 9px 13px; border-radius: var(--ff-r-pill);
  transition: background .18s ease, color .18s ease;
}
.ff-nav a:hover,
.ff-nav .current-menu-item > a,
.ff-nav .current_page_item > a,
.ff-nav .current-menu-parent > a,
.ff-nav .ff-nav-current > a { background: var(--ff-wash); color: var(--ff-ink); }
.ff-nav ul { list-style: none; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.ff-nav li { position: relative; }

/* Sub menu */
.ff-nav .sub-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  display: none; flex-direction: column; gap: 2px;
  min-width: 210px; padding: 8px;
  background: var(--ff-white); border: 1px solid var(--ff-line);
  border-radius: var(--ff-r-card-sm); box-shadow: var(--ff-sh-panel);
  z-index: 70;
}
.ff-nav li:hover > .sub-menu,
.ff-nav li:focus-within > .sub-menu { display: flex; }
.ff-nav .sub-menu a { display: block; border-radius: 10px; }

.ff-header__actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.ff-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 14.5px; font-weight: 700;
  border-radius: var(--ff-r-pill); border: 1px solid transparent;
  padding: 11px 20px; cursor: pointer; text-align: center;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s var(--ff-ease), box-shadow .18s ease;
}
/* Ink CTA (header) */
.ff-btn--ink { background: var(--ff-ink); color: var(--ff-white); box-shadow: var(--ff-sh-btn); }
.ff-btn--ink:hover { background: var(--ff-brass); color: var(--ff-ink); }

/* Brass CTA (primary) */
.ff-btn--brass { background: var(--ff-brass); color: var(--ff-ink); }
.ff-btn--brass:hover { background: var(--ff-ink); color: var(--ff-white); }

/* Outline */
.ff-btn--outline { background: transparent; color: var(--ff-ink); border-color: var(--ff-line-strong); }
.ff-btn--outline:hover { border-color: var(--ff-brass); background: var(--ff-wash-warm); color: var(--ff-ink); }

/* On-dark outline */
.ff-btn--ghost-dark { background: rgba(255,255,255,.1); color: var(--ff-white); border-color: rgba(255,255,255,.34); }
.ff-btn--ghost-dark:hover { background: rgba(255,255,255,.2); color: var(--ff-white); border-color: rgba(255,255,255,.6); }

/* White */
.ff-btn--white { background: var(--ff-white); color: var(--ff-ink); }
.ff-btn--white:hover { background: var(--ff-brass); color: var(--ff-ink); }

.ff-btn--lg { font-size: 15.5px; padding: 15px 26px; }
.ff-btn--sm { font-size: 13.5px; padding: 9px 15px; }
.ff-btn--block { width: 100%; }

/* Phone pill in header */
.ff-tel-pill {
  font-size: 14.5px; font-weight: 700; color: var(--ff-ink);
  padding: 10px 14px; border-radius: var(--ff-r-pill);
  border: 1px solid var(--ff-line-strong);
  transition: border-color .18s ease, background .18s ease;
  white-space: nowrap;
}
.ff-tel-pill:hover { border-color: var(--ff-brass); background: var(--ff-wash-warm); color: var(--ff-ink); }

/* Text CTA with arrow */
.ff-textcta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14.5px; font-weight: 700; color: var(--ff-brass-dark);
  transition: gap .18s ease, color .18s ease;
}
.ff-textcta:hover { gap: 11px; color: var(--ff-ink); }

/* --------------------------------------------------------------------------
   Mobile nav toggle + drawer  (responsive pass)
   -------------------------------------------------------------------------- */
.ff-navtoggle {
  display: none; align-items: center; justify-content: center;
  width: 46px; height: 46px; flex: 0 0 auto;
  background: var(--ff-white); border: 1px solid var(--ff-line-strong);
  border-radius: 14px; cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.ff-navtoggle:hover { border-color: var(--ff-brass); background: var(--ff-wash-warm); }
.ff-navtoggle__bars { display: block; width: 20px; height: 14px; position: relative; }
.ff-navtoggle__bars span {
  position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--ff-ink); border-radius: 2px;
  transition: transform .22s var(--ff-ease), opacity .18s ease, top .22s var(--ff-ease);
}
.ff-navtoggle__bars span:nth-child(1) { top: 0; }
.ff-navtoggle__bars span:nth-child(2) { top: 6px; }
.ff-navtoggle__bars span:nth-child(3) { top: 12px; }
.ff-navtoggle[aria-expanded="true"] .ff-navtoggle__bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.ff-navtoggle[aria-expanded="true"] .ff-navtoggle__bars span:nth-child(2) { opacity: 0; }
.ff-navtoggle[aria-expanded="true"] .ff-navtoggle__bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.ff-drawer {
  display: none;
  border-top: 1px solid var(--ff-line);
  background: var(--ff-white);
  max-height: calc(100vh - 78px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.ff-drawer.is-open { display: block; }
.ff-drawer__inner { max-width: var(--ff-container); margin: 0 auto; padding: 14px var(--ff-gutter) 24px; }
.ff-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.ff-drawer a {
  display: block; font-size: 16px; font-weight: 600; color: var(--ff-ink-70);
  padding: 13px 14px; border-radius: 12px; min-height: 44px;
  transition: background .18s ease, color .18s ease;
}
.ff-drawer a:hover, .ff-drawer .current-menu-item > a { background: var(--ff-wash); color: var(--ff-ink); }
.ff-drawer .sub-menu { padding-left: 14px; }
.ff-drawer .sub-menu a { font-size: 14.5px; color: var(--ff-muted); }
.ff-drawer__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--ff-line); }

/* --------------------------------------------------------------------------
   Pills, chips, badges
   -------------------------------------------------------------------------- */
.ff-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ff-white); border: 1px solid var(--ff-line);
  border-radius: var(--ff-r-pill); padding: 7px 15px;
  font-size: 13px; font-weight: 700; color: var(--ff-ink);
}
.ff-pill--dark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: var(--ff-white); }
.ff-pill--glass { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); color: var(--ff-white); backdrop-filter: blur(8px); }

.ff-stars { color: var(--ff-brass); letter-spacing: .06em; }

.ff-chip {
  display: inline-flex; align-items: center;
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--ff-r-chip);
  background: var(--ff-wash); color: var(--ff-brass-dark);
  border: 1px solid var(--ff-line);
}
.ff-chip--res  { background: var(--ff-wash); color: var(--ff-brass-dark); }
.ff-chip--com  { background: #EEF1F4; color: #3F4A55; border-color: #E2E7EC; }
.ff-chip--both { background: var(--ff-cream); color: var(--ff-brass-dark); }

/* Source label on reviews */
.ff-source {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ff-muted-light);
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.ff-card {
  display: block; background: var(--ff-white);
  border: 1px solid var(--ff-line); border-radius: var(--ff-r-card);
  overflow: hidden; color: inherit;
  transition: transform .25s var(--ff-ease), box-shadow .25s var(--ff-ease), border-color .25s var(--ff-ease);
}
a.ff-card:hover { transform: translateY(-4px); box-shadow: var(--ff-sh-card); border-color: var(--ff-line-strong); color: inherit; }
.ff-card__body { padding: 22px 24px 26px; }
.ff-card__title { font-size: 24px; font-weight: 700; line-height: 1.2; letter-spacing: -.025em; color: var(--ff-ink); }
.ff-card__sub { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ff-brass-dark); margin-top: 7px; }
.ff-card__text { font-size: 14.5px; line-height: 1.6; color: var(--ff-muted); margin-top: 12px; }

/* Scope list with brass em-dash bullets */
.ff-scopelist { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.ff-scopelist li { display: flex; gap: 10px; font-size: 14px; line-height: 1.55; color: var(--ff-ink-70); }
.ff-scopelist li::before { content: "\2014"; color: var(--ff-brass); flex: 0 0 auto; font-weight: 700; }

/* Panel */
.ff-panel {
  background: var(--ff-paper); border: 1px solid var(--ff-line);
  border-radius: var(--ff-r-panel); padding: 40px 44px;
}
.ff-panel--cream { background: var(--ff-cream); border-color: #F0E2C4; }
.ff-panel--white { background: var(--ff-white); }
.ff-panel--dark  { background: var(--ff-ink); border-color: rgba(255,255,255,.1); color: var(--ff-on-dark-3); }

/* --------------------------------------------------------------------------
   Section headings
   -------------------------------------------------------------------------- */
.ff-sechead { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.ff-sechead__main { max-width: 680px; }
.ff-sechead h2 { margin-top: 14px; }
.ff-sechead p { margin-top: 16px; }

/* Page header band */
.ff-pagehead { padding: 84px var(--ff-gutter) 48px; background: linear-gradient(180deg, var(--ff-paper-warm) 0%, var(--ff-white) 100%); }
.ff-pagehead__inner { max-width: var(--ff-container); margin: 0 auto; }
.ff-pagehead h1 { margin-top: 14px; max-width: 20ch; }
.ff-pagehead p { margin-top: 18px; max-width: 64ch; }

/* Breadcrumbs */
.ff-crumbs { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 12.5px; font-weight: 600; color: var(--ff-muted); margin-bottom: 18px; }
.ff-crumbs a { color: var(--ff-muted); }
.ff-crumbs a:hover { color: var(--ff-brass-dark); }
.ff-crumbs span[aria-hidden] { color: var(--ff-line-strong); }

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.ff-faq { border-top: 1px solid var(--ff-line); }
.ff-faq__item { border-bottom: 1px solid var(--ff-line); }
.ff-faq__q {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  width: 100%; background: none; border: 0; cursor: pointer;
  padding: 24px 4px; text-align: left;
  font-family: inherit; font-size: 18px; font-weight: 700; line-height: 1.3;
  letter-spacing: -.01em; color: var(--ff-ink);
  transition: color .18s ease;
}
.ff-faq__q:hover { color: var(--ff-brass-dark); }
.ff-faq__icon {
  flex: 0 0 auto; position: relative; width: 22px; height: 22px; margin-top: 2px;
  transition: transform .25s var(--ff-ease);
}
.ff-faq__icon::before, .ff-faq__icon::after {
  content: ""; position: absolute; background: var(--ff-brass); border-radius: 2px;
}
.ff-faq__icon::before { left: 0; top: 10px; width: 22px; height: 2px; }
.ff-faq__icon::after  { top: 0; left: 10px; width: 2px; height: 22px; }
.ff-faq__q[aria-expanded="true"] .ff-faq__icon { transform: rotate(45deg); }
.ff-faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ff-ease); }
.ff-faq__a > div { overflow: hidden; }
.ff-faq__item.is-open .ff-faq__a { grid-template-rows: 1fr; }
.ff-faq__a p { font-size: 16.5px; line-height: 1.65; color: var(--ff-body); padding: 0 90px 26px 4px; max-width: 78ch; }

/* --------------------------------------------------------------------------
   Before / after slider
   -------------------------------------------------------------------------- */
.ff-ba {
  position: relative; overflow: hidden;
  border-radius: var(--ff-r-frame); background: var(--ff-paper);
  aspect-ratio: 16 / 10; touch-action: pan-y;
  user-select: none; -webkit-user-select: none;
}
.ff-ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ff-ba__img--after { clip-path: inset(0 48% 0 0); }
.ff-ba__label {
  position: absolute; top: 16px; z-index: 3;
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ff-white); background: rgba(20,17,14,.62);
  padding: 7px 13px; border-radius: var(--ff-r-pill);
  backdrop-filter: blur(6px); pointer-events: none;
}
.ff-ba__label--before { right: 16px; }
.ff-ba__label--after  { left: 16px; }
.ff-ba__handle {
  position: absolute; top: 0; bottom: 0; left: 52%;
  width: 44px; margin-left: -22px; z-index: 4;
  background: none; border: 0; padding: 0; cursor: ew-resize;
  display: flex; align-items: center; justify-content: center;
}
.ff-ba__handle::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 21px;
  width: 2px; background: var(--ff-white); box-shadow: 0 0 12px rgba(0,0,0,.4);
}
.ff-ba__knob {
  position: relative; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ff-white); box-shadow: 0 6px 18px -4px rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center; gap: 3px;
}
.ff-ba__knob svg { display: block; }

/* --------------------------------------------------------------------------
   Type grid (window / door schematics)
   -------------------------------------------------------------------------- */
.ff-types { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.ff-type {
  background: var(--ff-white); border: 1px solid var(--ff-line);
  border-radius: var(--ff-r-card-sm); padding: 20px 22px 22px;
  transition: transform .25s var(--ff-ease), box-shadow .25s var(--ff-ease), border-color .25s var(--ff-ease);
}
.ff-type:hover { transform: translateY(-4px); box-shadow: var(--ff-sh-card); border-color: var(--ff-line-strong); }
.ff-type__dia {
  width: 156px; height: 92px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ff-paper); border-radius: 12px;
}
.ff-type__dia svg { width: 100%; height: 100%; display: block; }
.ff-type__head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ff-type__name { font-size: 16.5px; font-weight: 700; letter-spacing: -.015em; color: var(--ff-ink); }
.ff-type__d { font-size: 14px; line-height: 1.6; color: var(--ff-muted); margin-top: 10px; }

/* --------------------------------------------------------------------------
   Quick connect
   -------------------------------------------------------------------------- */
.ff-quick { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; align-items: flex-end; gap: 11px; }
.ff-quick__panel {
  background: var(--ff-white); border: 1px solid var(--ff-line);
  border-radius: 20px; padding: 18px 20px; width: 292px;
  max-height: calc(100vh - 130px); overflow-y: auto;
  box-shadow: var(--ff-sh-panel);
}
.ff-quick__panel[hidden] { display: none; }
.ff-quick__title { font-size: 15.5px; font-weight: 700; color: var(--ff-ink); margin-bottom: 5px; }
.ff-quick__intro { font-size: 13.5px; line-height: 1.55; color: var(--ff-muted); margin: 0 0 15px; }
.ff-quick__list { display: flex; flex-direction: column; gap: 9px; }
.ff-quick__wa {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 700; color: var(--ff-white);
  background: var(--ff-wa-deep); padding: 13px 16px; border-radius: 12px;
  transition: background .18s ease, color .18s ease;
}
.ff-quick__wa:hover { background: var(--ff-wa); color: var(--ff-wa-ink); }
.ff-quick__alt {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 700; color: var(--ff-ink);
  background: var(--ff-wash); border: 1px solid var(--ff-line);
  padding: 12px 16px; border-radius: 12px;
  transition: background .18s ease, border-color .18s ease;
}
.ff-quick__alt:hover { border-color: var(--ff-brass); background: var(--ff-wash-warm); color: var(--ff-ink); }
.ff-quick__foot { display: flex; align-items: center; gap: 9px; margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--ff-line-soft); }
.ff-quick__foot > span:first-child { font-size: 12px; font-weight: 600; color: var(--ff-muted-light); }
.ff-quick__hours { margin-left: auto; font-size: 12px; color: var(--ff-muted-light); }
.ff-quick__soc {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 11px; background: var(--ff-wash);
  transition: background .18s ease;
}
.ff-quick__soc:hover { background: var(--ff-wash-brass); }
.ff-quick__btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 22px 0 18px;
  border: none; border-radius: var(--ff-r-pill);
  background: var(--ff-wa-deep); color: var(--ff-white);
  font-family: inherit; font-size: 15px; font-weight: 700; cursor: pointer;
  box-shadow: 0 10px 22px -8px rgba(15,122,64,.7), 0 30px 60px -30px rgba(20,17,14,.5);
  transition: transform .18s var(--ff-ease), background .18s ease, color .18s ease;
}
.ff-quick__btn:hover { background: var(--ff-wa); color: var(--ff-wa-ink); transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   Mobile action bar
   -------------------------------------------------------------------------- */
.ff-mobilebar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 91;
  grid-template-columns: 1fr 1fr 1.2fr; gap: 1px;
  background: var(--ff-line-strong); border-top: 1px solid var(--ff-line-strong);
  box-shadow: 0 -8px 24px -12px rgba(20,17,14,.3);
  padding-bottom: env(safe-area-inset-bottom);
}
.ff-mobilebar a {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  min-height: 60px; background: var(--ff-white);
  font-size: 14.5px; font-weight: 700; color: var(--ff-ink);
}
.ff-mobilebar a:last-child { background: var(--ff-brass); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.ff-footer { background: var(--ff-ink); color: var(--ff-on-dark-3); padding: 72px var(--ff-gutter) 32px; margin-top: auto; }
.ff-footer__inner { max-width: var(--ff-container); margin: 0 auto; }
.ff-footer__cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.ff-footer__brand { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.ff-footer__brand img { width: 44px; height: 44px; object-fit: contain; }
.ff-footer__brand .ff-brand__name { color: var(--ff-white); }
/* On ink, brass-dark is only 3.3:1 - the footer lockup keeps the bright brass. */
.ff-footer__brand .ff-brand__tag { color: var(--ff-brass); }
.ff-footer p { font-size: 14.5px; line-height: 1.65; }
.ff-footer__blurb { margin: 0 0 20px; max-width: 34ch; }
.ff-footer__h {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ff-white); margin-bottom: 16px;
}
.ff-footer__links { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; list-style: none; }
.ff-footer__links--svc { gap: 16px; }
.ff-footer__links a { color: var(--ff-on-dark-3); }
.ff-footer__links a:hover { color: var(--ff-brass); }
.ff-footer__links--svc a { display: block; }
.ff-footer__subline { display: block; font-size: 12.5px; color: var(--ff-on-dark-4); margin-top: 2px; }
.ff-footer__contact { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.ff-footer__contact a { color: var(--ff-on-dark-3); }
.ff-footer__contact a:hover { color: var(--ff-brass); }
.ff-footer__tel { color: var(--ff-white) !important; font-weight: 700; font-size: 17px; }
.ff-footer__dim { color: var(--ff-on-dark-4); }
.ff-footer__soc { display: flex; gap: 9px; flex-wrap: wrap; }
.ff-footer__soc a {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  min-width: 44px; height: 44px; border-radius: var(--ff-r-chip);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  font-size: 13px; font-weight: 700; color: var(--ff-on-dark);
  transition: background .18s ease, border-color .18s ease;
}
.ff-footer__soc a:not(.ff-footer__soc--icon) { padding: 0 14px; }
.ff-footer__soc a:hover { background: rgba(201,143,48,.22); border-color: var(--ff-brass); color: var(--ff-on-dark); }
.ff-footer__accred {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  padding: 26px 0; margin-top: 8px; border-top: 1px solid rgba(255,255,255,.09);
}
.ff-footer__badges { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; flex: 0 0 auto; }
.ff-footer__badges img { border: 0; display: block; border-radius: 6px; }
.ff-footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-top: 22px; flex-wrap: wrap; font-size: 13px; color: var(--ff-on-dark-4);
  border-top: 1px solid rgba(255,255,255,.09);
}
.ff-footer__bottom a { color: var(--ff-on-dark-4); }
.ff-footer__bottom a:hover { color: var(--ff-brass); }
.ff-footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.ff-field { display: flex; flex-direction: column; gap: 8px; }
.ff-label { font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--ff-ink-80); }
.ff-label .ff-req { color: var(--ff-brass-dark); }
.ff-hint { font-size: 12.5px; color: var(--ff-muted); }
.ff-input, .ff-select, .ff-textarea {
  width: 100%; font-family: inherit; font-size: 16px; line-height: 1.5;
  color: var(--ff-ink); background: var(--ff-white);
  border: 1px solid var(--ff-line-strong); border-radius: var(--ff-r-input);
  padding: 13px 15px; min-height: 48px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.ff-textarea { min-height: 148px; resize: vertical; }
.ff-input:hover, .ff-select:hover, .ff-textarea:hover { border-color: #DBD2C2; }
.ff-input:focus, .ff-select:focus, .ff-textarea:focus {
  outline: none; border-color: var(--ff-brass);
  box-shadow: 0 0 0 3px rgba(201,143,48,.18);
}
.ff-input::placeholder, .ff-textarea::placeholder { color: var(--ff-muted-light); }
.ff-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%236E6659' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 42px;
}
.ff-file {
  display: flex; flex-direction: column; gap: 10px;
  border: 1px dashed var(--ff-line-strong); border-radius: var(--ff-r-input);
  padding: 18px; background: var(--ff-paper-warm);
  transition: border-color .18s ease, background .18s ease;
}
.ff-file:hover, .ff-file.is-drag { border-color: var(--ff-brass); background: var(--ff-wash-warm); }
.ff-file input[type="file"] { font-size: 14px; font-family: inherit; color: var(--ff-ink-70); }
.ff-file__note { font-size: 12.5px; color: var(--ff-muted); }
.ff-file__list { list-style: none; display: flex; flex-direction: column; gap: 5px; font-size: 13px; color: var(--ff-ink-70); }

.ff-notice { border-radius: var(--ff-r-input); padding: 16px 18px; font-size: 15px; line-height: 1.55; margin-bottom: 26px; }
.ff-notice--ok  { background: #EDF7F0; border: 1px solid #CBE6D5; color: #1E5233; }
.ff-notice--err { background: #FDF0EE; border: 1px solid #F2D4CE; color: #8A2B18; }
.ff-error { font-size: 13px; font-weight: 600; color: #A8331B; }
.ff-input.has-error, .ff-select.has-error, .ff-textarea.has-error { border-color: #C9604A; }
.ff-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --------------------------------------------------------------------------
   Pagination
   -------------------------------------------------------------------------- */
.ff-pager { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 56px; }
.ff-pager .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 14px;
  border: 1px solid var(--ff-line-strong); border-radius: var(--ff-r-input);
  font-size: 14.5px; font-weight: 700; color: var(--ff-ink-70);
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}
.ff-pager .page-numbers:hover { border-color: var(--ff-brass); background: var(--ff-wash-warm); color: var(--ff-ink); }
.ff-pager .page-numbers.current { background: var(--ff-ink); border-color: var(--ff-ink); color: var(--ff-white); }
.ff-pager .page-numbers.dots { border-color: transparent; }
