/* ==========================================================================
   fawazbhseo.in  |  Universal stylesheet
   Wheat / umber warm-neutral base, single carnelian accent.
   Flat cards, hard-edge offset shadows. No gradients, no glass, no glow.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Light mode is the default. */
  --bg:            #EDE2C8;
  --surface:       #F7F1DE;
  --surface-2:     #E7DBBF;
  --text:          #241E17;
  --text-2:        #4A4234;
  --text-muted:    #8B8270;
  --border:        #E3DCCB;
  --border-strong: #D2C8AF;
  --accent:        #B80F0A;
  --accent-hover:  #8F0C08;
  --on-accent:     #F7F1DE;
  --shadow-ink:    #241E17;

  --ff-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --ff-body:    'Newsreader', Georgia, serif;
  --ff-ui:      'Inter', system-ui, sans-serif;

  --wrap:  1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --shadow-card:   5px 5px 0 var(--shadow-ink);
  --shadow-accent: 5px 5px 0 var(--accent);
}

[data-theme="dark"] {
  --bg:            #241E17;
  --surface:       #1F1C16;
  --surface-2:     #2A241C;
  --text:          #EDE2C8;
  --text-2:        #C2B7A3;
  --text-muted:    #877D6C;
  --border:        #322D24;
  --border-strong: #453D31;
  --accent:        #E4442E;
  --accent-hover:  #F26248;
  --on-accent:     #241E17;
  --shadow-ink:    #EDE2C8;
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  font-optical-sizing: auto;
  transition: background-color .2s linear, color .2s linear;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   3. TYPE SCALE
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, .display {
  font-family: var(--ff-display);
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: -.005em;
  color: var(--text);
  text-wrap: balance;
}

h1, .h1 { font-size: clamp(2.9rem, 8.2vw, 6.4rem); }
h2, .h2 { font-size: clamp(2.1rem, 5.2vw, 3.9rem); }
h3, .h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); line-height: .98; }
h4, .h4 { font-size: clamp(1.1rem, 1.7vw, 1.3rem);  line-height: 1.02; }

p { text-wrap: pretty; }
p + p { margin-top: 1.05em; }

strong, b { font-weight: 600; font-style: normal; }
em { font-style: italic; }
cite { font-style: normal; }

.lede {
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
  line-height: 1.55;
  color: var(--text-2);
  max-width: 62ch;
}

.eyebrow {
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 2px;
  background: var(--accent);
  flex: 0 0 auto;
}

.ui { font-family: var(--ff-ui); font-style: normal; }

/* --------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 9vw, 124px); }

/* Alternating base colour for vertical rhythm. */
.section--alt { background: var(--surface-2); }

.section-head { max-width: 74ch; margin-bottom: clamp(38px, 5vw, 62px); }
.section-head h2 { margin-block: 16px 20px; }

.rule { height: 1.5px; background: var(--border); border: 0; }

.grid { display: grid; gap: clamp(18px, 2.2vw, 26px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   5. CARDS  (flat, 1.5px border, hard offset shadow)
   -------------------------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1.5px solid var(--text);
  box-shadow: var(--shadow-card);
  padding: clamp(22px, 2.6vw, 32px);
  transition: transform .16s ease, box-shadow .16s ease;
}
.card--featured { box-shadow: var(--shadow-accent); }

/* The one interactive card effect used sitewide: pressed toward its shadow. */
.card--link:hover,
.card--link:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--shadow-ink);
}
.card--featured.card--link:hover,
.card--featured.card--link:focus-visible {
  box-shadow: 2px 2px 0 var(--accent);
}

.card h3 { margin-bottom: 12px; }
.card p  { color: var(--text-2); font-size: .97rem; }

.card-index {
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 14px 26px;
  border: 1.5px solid var(--text);
  background: var(--surface);
  color: var(--text);
  box-shadow: 4px 4px 0 var(--shadow-ink);
  transition: transform .16s ease, box-shadow .16s ease;
}
.btn:hover, .btn:focus-visible {
  color: var(--text);
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--shadow-ink);
}
.btn svg { width: 17px; height: 17px; flex: 0 0 auto; }

.btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
  box-shadow: 4px 4px 0 var(--shadow-ink);
}
.btn--accent:hover, .btn--accent:focus-visible {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--on-accent);
}

.btn--sm { padding: 10px 18px; font-size: .78rem; box-shadow: 3px 3px 0 var(--shadow-ink); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Inline text link with a rule under it. */
.link-arrow {
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
}
.link-arrow svg { width: 15px; height: 15px; }
.link-arrow:hover { border-color: var(--accent-hover); }

/* --------------------------------------------------------------------------
   7. HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--bg);
  border-bottom: 1.5px solid var(--text);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 74px;
}

/* Logo: FS mark + wordmark, BH in carnelian. */
.logo { display: inline-flex; align-items: center; gap: 12px; color: var(--text); }
.logo:hover { color: var(--text); }
.logo__mark { width: 38px; height: 38px; flex: 0 0 auto; }
.logo__mark rect { fill: var(--text); }
.logo__mark path, .logo__mark text { fill: var(--bg); }
.logo__word {
  font-family: var(--ff-display);
  font-style: normal;
  font-weight: 700;
  font-size: 1.32rem;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1;
}
.logo__word .bh { color: var(--accent); }

.site-nav ul { display: flex; align-items: center; gap: clamp(16px, 2.3vw, 32px); }
.site-nav a {
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .83rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--text-2);
  padding-block: 4px;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--text); border-color: var(--border-strong); }
.site-nav a[aria-current="page"] { color: var(--text); border-color: var(--accent); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--text);
  background: var(--surface);
  color: var(--text);
  box-shadow: 3px 3px 0 var(--shadow-ink);
  transition: transform .16s ease, box-shadow .16s ease;
}
.icon-btn:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--shadow-ink); }
.icon-btn svg { width: 18px; height: 18px; }

.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun  { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.nav-toggle { display: none; }

@media (max-width: 940px) {
  .site-nav { display: none; }
  .header-actions .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile drawer */
.mobile-nav {
  display: none;
  border-bottom: 1.5px solid var(--text);
  background: var(--surface);
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { padding-block: 10px; }
.mobile-nav li + li { border-top: 1.5px solid var(--border); }
.mobile-nav a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 15px 0;
  font-family: var(--ff-display);
  font-style: normal;
  font-weight: 700;
  font-size: 1.45rem;
  text-transform: uppercase;
  color: var(--text);
}
.mobile-nav a[aria-current="page"] { color: var(--accent); }
.mobile-nav .idx {
  font-family: var(--ff-ui);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--text-muted);
}
.mobile-nav__cta { padding: 8px 0 22px; }

/* --------------------------------------------------------------------------
   8. HERO
   -------------------------------------------------------------------------- */
.hero { padding-block: clamp(52px, 7vw, 96px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.32fr .68fr;
  gap: clamp(30px, 4.5vw, 66px);
  align-items: center;
}
.hero h1 { margin-block: 20px 24px; }
.hero__sub { font-size: clamp(1.15rem, 1.85vw, 1.42rem); color: var(--text-2); max-width: 46ch; line-height: 1.5; }
.hero .btn-row { margin-top: 32px; }

.hero__figure {
  border: 1.5px solid var(--text);
  box-shadow: var(--shadow-accent);
  background: var(--surface);
}
.hero__figure img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.hero__figure figcaption {
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 11px 14px;
  border-top: 1.5px solid var(--text);
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__figure { max-width: 340px; }
}

/* --------------------------------------------------------------------------
   9. TRUST STRIP
   -------------------------------------------------------------------------- */
.trust {
  border-block: 1.5px solid var(--text);
  background: var(--surface-2);
  padding-block: clamp(26px, 3.4vw, 42px);
}
.trust p {
  font-family: var(--ff-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.15rem, 2.5vw, 1.95rem);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text);
  max-width: 44ch;
}
.trust .accent { color: var(--accent); }

/* --------------------------------------------------------------------------
   10. STATS / READOUT
   -------------------------------------------------------------------------- */
.readout { border: 1.5px solid var(--text); background: var(--surface); }
.readout__row {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 14px;
  padding: 13px 16px;
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .82rem;
}
.readout__row + .readout__row { border-top: 1.5px solid var(--border); }
.readout__row dt { color: var(--text-muted); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; padding-top: 2px; }
.readout__row dd { color: var(--text); font-weight: 500; }
.readout__row dd small { display: block; color: var(--text-muted); font-weight: 400; font-size: .76rem; margin-top: 2px; }

/* Vertical run of stat cards, used in the narrow sidebar column. */
.stat-stack { display: grid; gap: 18px; }

.stat { border: 1.5px solid var(--text); background: var(--surface); padding: 22px; box-shadow: var(--shadow-card); }
.stat__val {
  font-family: var(--ff-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: .86;
  color: var(--accent);
}
.stat__label { font-family: var(--ff-ui); font-style: normal; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-top: 12px; }
.stat__note { font-size: .9rem; color: var(--text-2); margin-top: 8px; }

/* --------------------------------------------------------------------------
   11. PROCESS
   -------------------------------------------------------------------------- */
.step { border-top: 3px solid var(--text); padding-top: 18px; }
.step__k {
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-2); font-size: .95rem; }

/* --------------------------------------------------------------------------
   12. NUMBERED LIST
   -------------------------------------------------------------------------- */
.why-list li { display: grid; grid-template-columns: 3rem 1fr; gap: 14px; padding-block: 22px; }
.why-list li + li { border-top: 1.5px solid var(--border); }
.why-list .idx {
  font-family: var(--ff-display);
  font-style: normal;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--accent);
  line-height: 1;
}
.why-list h3 { margin-bottom: 8px; }
.why-list p { color: var(--text-2); font-size: .96rem; }

/* --------------------------------------------------------------------------
   13. DELIVERABLES / TICKS
   -------------------------------------------------------------------------- */
.deliv { margin-top: 18px; }
.deliv li {
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  gap: 9px;
  font-size: .94rem;
  color: var(--text-2);
  padding-block: 6px;
}
.deliv li + li { border-top: 1px solid var(--border); }
.deliv .tick { color: var(--accent); font-style: normal; font-weight: 700; }

/* Plain stacked list of internal links, used for town pages inside a card. */
.linklist li { padding-block: 8px; }
.linklist li + li { border-top: 1px solid var(--border); }
.linklist a {
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .88rem;
  font-weight: 600;
  border-bottom: 1.5px solid transparent;
}
.linklist a:hover { border-color: var(--accent); }

.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.tag {
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1.5px solid var(--border-strong);
  color: var(--text-2);
}

/* Flat data table. Same hard-edge treatment as the cards, no zebra tint,
   no rounded corners, ruled with the ink border only. */
.table-wrap {
  overflow-x: auto;
  border: 1.5px solid var(--text);
  box-shadow: var(--shadow-card);
  background: var(--surface);
}
.data-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .9rem;
}
.data-table caption {
  caption-side: top;
  text-align: left;
  padding: 16px clamp(16px, 2vw, 22px);
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .8rem;
  line-height: 1.55;
  color: var(--text-muted);
  border-bottom: 1.5px solid var(--border-strong);
}
.data-table th,
.data-table td {
  text-align: left;
  vertical-align: top;
  padding: 13px clamp(14px, 1.6vw, 20px);
  border-bottom: 1px solid var(--border);
}
.data-table thead th {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 3px solid var(--text);
  white-space: nowrap;
}
.data-table tbody th {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.data-table tbody td { color: var(--text-2); }
.data-table tbody td b { color: var(--text); font-weight: 700; }
.data-table tbody tr:last-child th,
.data-table tbody tr:last-child td { border-bottom: 0; }

/* --------------------------------------------------------------------------
   14. PRICE BLOCK
   -------------------------------------------------------------------------- */
.price {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1.5px solid var(--text);
}
.price__amount {
  font-family: var(--ff-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1;
  color: var(--text);
}
.price__unit { font-family: var(--ff-ui); font-style: normal; font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); display: block; margin-top: 7px; }

/* Rate cards. Same flat card treatment, arranged as plan tiers. */
.rate-block + .rate-block { margin-top: clamp(40px, 5vw, 68px); }
.rate-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: clamp(18px, 2.2vw, 26px);
  border-bottom: 3px solid var(--text);
}
.rate-head .rate-note {
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.plan { display: flex; flex-direction: column; }
.plan__type {
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.plan--featured .plan__type { color: var(--accent); }
.plan__name { margin-block: 10px 14px; }
.plan__price {
  font-family: var(--ff-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: .9;
  color: var(--text);
}
.plan__sub {
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 8px;
}
.plan .deliv { flex: 1 1 auto; }
.plan .btn { align-self: flex-start; margin-top: 20px; }

.placeholder-flag {
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-accent);
  background: var(--accent);
  padding: 4px 9px;
  display: inline-block;
}

/* --------------------------------------------------------------------------
   15. QUOTES
   -------------------------------------------------------------------------- */
.quote blockquote { font-size: 1.06rem; line-height: 1.55; color: var(--text); }
.quote figcaption { margin-top: 16px; padding-top: 14px; border-top: 1.5px solid var(--border); }
.quote cite {
  font-family: var(--ff-display);
  font-style: normal;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  display: block;
}
.quote .biz { font-family: var(--ff-ui); font-style: normal; font-size: .76rem; color: var(--text-muted); display: block; margin-top: 5px; }
.badge {
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid var(--border-strong);
  color: var(--text-2);
  padding: 3px 8px;
  display: inline-block;
  margin-top: 10px;
}
.badge--accent { border-color: var(--accent); color: var(--accent); }

/* --------------------------------------------------------------------------
   16. FAQ
   -------------------------------------------------------------------------- */
.faq { border-top: 1.5px solid var(--text); }
.faq details { border-bottom: 1.5px solid var(--border); }
.faq summary {
  font-family: var(--ff-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  text-transform: uppercase;
  line-height: 1.1;
  padding: 20px 44px 20px 0;
  position: relative;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
}
.faq details[open] summary::after { content: '\2013'; }
.faq summary:hover { color: var(--accent); }
.faq__body { padding-bottom: 22px; color: var(--text-2); max-width: 78ch; }

/* Two FAQ markup forms exist across the site and both must look identical.
   Form A is a <div class="faq"> wrapping bare <details> children.
   Form B is <details class="faq"> repeated as siblings, which is what the
   array-driven pages and the location renderer emit. In form B the details
   IS the .faq, so `.faq details` and `.faq details[open]` above cannot match
   it. These rules restore the group rule lines and the open-state indicator
   for form B without touching form A. */
details.faq { border-top: none; border-bottom: 1.5px solid var(--border); }
details.faq:first-of-type { border-top: 1.5px solid var(--text); }
details.faq[open] summary::after { content: '\2013'; }

/* --------------------------------------------------------------------------
   17. CONTACT FORM
   -------------------------------------------------------------------------- */
.contact { background: var(--surface-2); border-block: 1.5px solid var(--text); }
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 4.5vw, 64px); }
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 7px;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--ff-ui);
  font-size: .95rem;
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--text);
  padding: 12px 14px;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field-note { font-family: var(--ff-ui); font-style: normal; font-size: .78rem; color: var(--text-muted); margin-top: 6px; }

.form-status {
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .86rem;
  border: 1.5px solid var(--accent);
  padding: 12px 14px;
  margin-bottom: 18px;
}

.contact-list li { padding-block: 13px; font-family: var(--ff-ui); font-style: normal; font-size: .93rem; }
.contact-list li + li { border-top: 1.5px solid var(--border); }
.contact-list .k { display: block; font-size: .69rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
.site-footer { border-top: 1.5px solid var(--text); background: var(--bg); }
.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr .85fr .85fr 1fr;
  gap: clamp(26px, 3.4vw, 52px);
  padding-block: clamp(44px, 6vw, 72px);
}
@media (max-width: 900px) { .site-footer__top { grid-template-columns: 1fr 1fr; } .site-footer__brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .site-footer__top { grid-template-columns: 1fr; } }

.site-footer__tag { font-size: .95rem; color: var(--text-2); max-width: 40ch; margin-top: 16px; }
.footer-h {
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 15px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a, .footer-col span {
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .89rem;
  color: var(--text-2);
}
.footer-col a:hover { color: var(--accent); }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-block: 20px;
  border-top: 1.5px solid var(--border);
}
.site-footer__bottom p { font-family: var(--ff-ui); font-style: normal; font-size: .78rem; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   19. FLOATING ACTION BUTTON
   -------------------------------------------------------------------------- */
.fab {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 80;
  display: none;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .82rem;
  font-weight: 600;
  background: var(--accent);
  color: var(--on-accent);
  border: 1.5px solid var(--text);
  box-shadow: 4px 4px 0 var(--shadow-ink);
}
.fab:hover { color: var(--on-accent); background: var(--accent-hover); transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--shadow-ink); }
.fab svg { width: 18px; height: 18px; }
@media (max-width: 940px) { .fab { display: inline-flex; } }

/* --------------------------------------------------------------------------
   19b. FLOATING ANSWER ASSISTANT
   Flat panel, hard-edge offset shadow, no blur and no glow. The WhatsApp fab
   sits bottom right on narrow screens, so the launcher sits above it there.
   -------------------------------------------------------------------------- */
.assistant-launcher {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  font-family: var(--ff-ui);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--text);
  box-shadow: 4px 4px 0 var(--shadow-ink);
}
.assistant-launcher:hover {
  color: var(--on-accent);
  background: var(--accent);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--shadow-ink);
}
.assistant-launcher svg { width: 18px; height: 18px; }
.assistant-launcher.is-hidden { display: none; }

/* On narrow screens the WhatsApp fab appears, so stack above it. */
@media (max-width: 940px) {
  .assistant-launcher { bottom: 76px; }
  .assistant-launcher__label { display: none; }
  .assistant-launcher { padding: 13px; }
}

.assistant-panel {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 95;
  width: min(392px, calc(100vw - 36px));
  max-height: min(620px, calc(100vh - 36px));
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1.5px solid var(--text);
  box-shadow: 6px 6px 0 var(--shadow-ink);
}
.assistant-panel[hidden] { display: none; }

.assistant-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px 12px;
  border-bottom: 1.5px solid var(--text);
}
.assistant-panel__head h2 { font-size: 1.25rem; margin-top: 4px; }

.assistant-close {
  flex: 0 0 auto;
  display: inline-flex;
  padding: 7px;
  cursor: pointer;
  color: var(--text);
  background: transparent;
  border: 1.5px solid var(--border-strong);
}
.assistant-close:hover { color: var(--on-accent); background: var(--accent); border-color: var(--text); }
.assistant-close svg { width: 15px; height: 15px; }

.assistant-scope {
  padding: 12px 16px;
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .76rem;
  line-height: 1.5;
  color: var(--text-muted);
  background: var(--surface-2);
  border-bottom: 1.5px solid var(--border);
}

.assistant-log {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 150px;
}

.assistant-msg { max-width: 92%; }
.assistant-msg p { font-size: .95rem; line-height: 1.55; }
.assistant-msg p + p { margin-top: 10px; }

.assistant-msg--bot {
  align-self: flex-start;
  padding: 13px 15px;
  color: var(--text-2);
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  box-shadow: 3px 3px 0 var(--shadow-ink);
}
.assistant-msg--user {
  align-self: flex-end;
  padding: 11px 15px;
  color: var(--on-accent);
  background: var(--accent);
  border: 1.5px solid var(--text);
}
.assistant-msg--user p { font-style: normal; font-family: var(--ff-ui); font-size: .88rem; }

.assistant-link {
  display: inline-block;
  margin-top: 12px;
  margin-right: 12px;
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
}

.assistant-suggest {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 16px 12px;
}
.assistant-chip {
  font-family: var(--ff-ui);
  font-size: .74rem;
  font-weight: 600;
  padding: 7px 11px;
  cursor: pointer;
  color: var(--text-2);
  background: transparent;
  border: 1.5px solid var(--border-strong);
}
.assistant-chip:hover { color: var(--on-accent); background: var(--accent); border-color: var(--text); }

.assistant-form {
  display: flex;
  gap: 0;
  border-top: 1.5px solid var(--text);
}
.assistant-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 14px 15px;
  font-family: var(--ff-ui);
  font-size: .88rem;
  color: var(--text);
  background: var(--surface);
  border: none;
}
.assistant-input:focus { outline: 2px solid var(--accent); outline-offset: -2px; }
.assistant-input::placeholder { color: var(--text-muted); }

.assistant-send {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  cursor: pointer;
  color: var(--on-accent);
  background: var(--accent);
  border: none;
  border-left: 1.5px solid var(--text);
}
.assistant-send:hover { background: var(--accent-hover); }
.assistant-send svg { width: 18px; height: 18px; }

.assistant-foot {
  padding: 11px 16px;
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .74rem;
  color: var(--text-muted);
  border-top: 1.5px solid var(--border);
}
.assistant-foot a { border-bottom: 1.5px solid var(--accent); }

/* --------------------------------------------------------------------------
   20. UTILITIES
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--accent);
  color: var(--on-accent);
  padding: 12px 18px;
  font-family: var(--ff-ui);
  font-style: normal;
  font-weight: 600;
}
.skip-link:focus { left: 8px; top: 8px; color: var(--on-accent); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.sticky-col { position: sticky; top: 106px; }
@media (max-width: 900px) { .sticky-col { position: static; } }

.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 4.5vw, 66px); }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.mt-0 { margin-top: 0; }
.measure { max-width: 68ch; }

/* GSAP reveal: pre-animation state, removed if JS is unavailable. */
.js .reveal { opacity: 0; transform: translateY(18px); }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
