/* =============================================================
   SYSMATICS LTD — SITE STYLESHEET
   Hand-written CSS. No framework, no build step.
   Palette + type inspired by the studio banner artwork:
   warm charcoal, brass lamp-light accent, warm off-white paper.

   CONTENTS
   01. Design tokens
   02. Reset & base
   03. Typography
   04. Layout helpers
   05. Buttons & links
   06. Header / navigation
   07. Hero
   08. Section furniture (kickers, headings)
   09. Cards (service, case study, process)
   10. Request wizard (form)
   11. FAQ accordion
   12. Footer
   13. Sub-pages (privacy, service detail)
   14. Motion & reveal
   15. Responsive breakpoints
   16. Accessibility utilities
   ============================================================= */


/* ---------- 01. DESIGN TOKENS ---------- */
:root {
  /* Warm neutrals — drawn from the charcoal studio wall in the artwork */
  --ink:          #1C1B19;  /* primary text, dark surfaces */
  --ink-soft:     #56534E;  /* body copy on light backgrounds */
  --ink-muted:    #837E76;  /* meta text, captions */
  --surface:      #FFFFFF;
  --surface-warm: #F7F4EF;  /* warm off-white alternating sections */
  --surface-dark: #171614;  /* hero / footer */
  --surface-dark-2:#232019; /* raised panels on dark */

  /* Brass accent — the lamp light in the artwork.
     Two tones so text on light backgrounds stays WCAG-legible. */
  --accent:       #B8863B;  /* decorative / dark backgrounds */
  --accent-deep:  #8A6520;  /* accent text on light backgrounds (~5.3:1) */
  --accent-soft:  rgba(184,134,59,0.12);

  --line:         rgba(28,27,25,0.12);
  --line-dark:    rgba(255,255,255,0.14);
  --danger:       #B4342A;
  --success:      #2E6B4F;

  --radius:       14px;
  --radius-lg:    22px;
  --radius-pill:  999px;

  --shadow-sm: 0 1px 2px rgba(28,27,25,.06), 0 2px 8px rgba(28,27,25,.04);
  --shadow-md: 0 4px 12px rgba(28,27,25,.07), 0 12px 32px rgba(28,27,25,.06);
  --shadow-lg: 0 12px 40px rgba(28,27,25,.12);

  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 40px);
}


/* ---------- 02. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
/* Offset anchor targets so the sticky header doesn't cover section headings */
section[id] { scroll-margin-top: 88px; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

/* The [hidden] attribute must beat component display rules (e.g. .btn uses
   inline-flex), otherwise JS-hidden buttons stay visible. */
[hidden] { display: none !important; }

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

/* Visible keyboard focus everywhere — accessibility requirement */
:focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 2px;
  border-radius: 4px;
}


/* ---------- 03. TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: "Poppins", "Inter", sans-serif;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); }
.small { font-size: .9rem; }
.muted { color: var(--ink-muted); }


/* ---------- 04. LAYOUT HELPERS ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 780px; }

.section { padding-block: clamp(64px, 9vw, 112px); }
.section--warm { background: var(--surface-warm); }
.section--dark { background: var(--surface-dark); color: rgba(255,255,255,.72); }
.section--dark h2, .section--dark h3 { color: #fff; }

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.stack-gap { margin-top: 44px; }


/* ---------- 05. BUTTONS & LINKS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Poppins", sans-serif;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease,
              border-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary — dark ink on light backgrounds (max contrast) */
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #000; box-shadow: var(--shadow-md); }

/* Accent — the brass CTA. Reserved for the highest-priority action
   (Email Us / submit) so it out-ranks every other link on the page. */
.btn--accent {
  background: var(--accent);
  color: #171614;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(184,134,59,.32);
}
.btn--accent:hover {
  background: #C8974A;
  box-shadow: 0 6px 22px rgba(184,134,59,.45);
}

/* Ghost — secondary actions, deliberately quieter */
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: rgba(28,27,25,.04); border-color: rgba(28,27,25,.28); }
.btn--ghost-light { border-color: var(--line-dark); color: #fff; background: transparent; }
.btn--ghost-light:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.4); }

.btn--sm { padding: 11px 20px; font-size: .875rem; }
.btn--block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; }

.btn .ico { width: 17px; height: 17px; flex: none; }

/* Inline text link */
.link { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.link:hover { color: var(--ink); }


/* ---------- 06. HEADER / NAVIGATION ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 76px;
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 25px; width: auto; }

.nav { display: flex; align-items: center; gap: 22px; }
/* Secondary nav links are intentionally low-emphasis so the email CTA dominates */
.nav a {
  font-size: .92rem; font-weight: 500; color: var(--ink-muted);
  text-decoration: none; transition: color .16s ease;
  white-space: nowrap;              /* never let labels wrap to 2 lines */
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }

.header-cta { display: flex; align-items: center; gap: 14px; flex: none; }

/* Prominent clickable email shown beside the button in the header */
.header-email {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .95rem;
  color: var(--ink); text-decoration: none;
  padding: 8px 4px; border-bottom: 2px solid var(--accent);
  transition: color .16s ease, border-color .16s ease;
}
.header-email:hover { color: var(--accent-deep); border-color: var(--accent-deep); }
.header-email .ico { width: 17px; height: 17px; color: var(--accent-deep); }

.menu-btn {
  display: none; background: none; border: 0; padding: 8px;
  color: var(--ink); cursor: pointer; border-radius: 8px;
}
.menu-btn .ico { width: 26px; height: 26px; }

/* Mobile drawer */
.mobile-menu {
  display: none; position: fixed; inset: 76px 0 0; z-index: 55;
  background: var(--surface); padding: 28px var(--gutter) 40px;
  overflow-y: auto;
}
.mobile-menu.is-open { display: block; }
.mobile-menu a.m-link {
  display: block; font-family: "Poppins", sans-serif; font-size: 1.4rem;
  font-weight: 500; color: var(--ink); text-decoration: none;
  padding: 15px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu__cta { margin-top: 26px; display: grid; gap: 12px; }


/* ---------- 07. HERO ---------- */
.hero {
  position: relative; background: var(--surface-dark); color: rgba(255,255,255,.75);
  overflow: hidden;
}
/* Studio artwork sits behind the copy, dimmed for text legibility */
.hero__media {
  position: absolute; inset: 0;
  background-image: url("../assets/studio-desk.jpg");
  background-size: cover; background-position: center right;
  opacity: .3;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(23,22,20,.97) 0%, rgba(23,22,20,.9) 42%,
    rgba(23,22,20,.62) 70%, rgba(23,22,20,.45) 100%);
}
.hero__inner { position: relative; padding-block: clamp(72px, 11vw, 132px); }
.hero__copy { max-width: 660px; }
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,.74); margin-top: 20px; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }

/* Email call-out block in the hero — deliberately loud */
.hero__email {
  display: inline-flex; align-items: center; gap: 13px;
  margin-top: 32px; padding: 14px 22px 14px 18px;
  background: rgba(184,134,59,.14);
  border: 1px solid rgba(184,134,59,.42);
  border-radius: var(--radius-pill);
  text-decoration: none; color: #fff;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.hero__email:hover {
  background: rgba(184,134,59,.24); border-color: var(--accent); transform: translateY(-2px);
}
.hero__email .ico { width: 20px; height: 20px; color: var(--accent); flex: none; }
.hero__email b {
  font-family: "Poppins", sans-serif; font-size: 1.05rem; font-weight: 600;
  color: #fff; display: block; line-height: 1.25;
}
.hero__email span { font-size: .8rem; color: rgba(255,255,255,.6); display: block; }

/* Trust strip under the hero */
.trust {
  border-top: 1px solid var(--line-dark); background: rgba(0,0,0,.28);
  position: relative;
}
.trust__row {
  display: flex; flex-wrap: wrap; gap: 14px 34px;
  padding-block: 18px; font-size: .86rem; color: rgba(255,255,255,.62);
}
.trust__row span { display: inline-flex; align-items: center; gap: 8px; }
.trust__row .ico { width: 15px; height: 15px; color: var(--accent); }


/* ---------- 08. SECTION FURNITURE ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Poppins", sans-serif; font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 14px;
}
.kicker::before {
  content: ""; width: 22px; height: 2px; background: var(--accent); flex: none;
}
.section--dark .kicker { color: var(--accent); }

.section__head { max-width: 720px; margin-bottom: 12px; }
.section__head p { color: var(--ink-soft); }


/* ---------- 09. CARDS ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Service tier card */
.tier { display: flex; flex-direction: column; }
.tier__badge {
  min-height: 26px; font-size: .78rem; font-weight: 600;
  color: var(--accent-deep); display: flex; align-items: center; gap: 6px;
}
.tier__badge .ico { width: 14px; height: 14px; }
.tier[data-selected="false"] .tier__badge { visibility: hidden; }
.tier[data-selected="true"] { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft), var(--shadow-md); }
.tier h3 { font-size: 1.55rem; margin-bottom: 6px; }
.tier__desc { font-size: .95rem; margin-bottom: 18px; }
.tier__list { list-style: none; margin: 0 0 22px; padding: 0; flex: 1; display: grid; gap: 11px; }
.tier__list li { display: flex; gap: 10px; font-size: .93rem; color: var(--ink-soft); }
.tier__list .ico { width: 16px; height: 16px; color: var(--accent-deep); flex: none; margin-top: 4px; }
.tier__foot { border-top: 1px solid var(--line); padding-top: 18px; }
.tier__price { font-size: .8rem; color: var(--ink-muted); margin-bottom: 12px; }

/* Process step */
.step { position: relative; }
.step__num {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface); border: 1.5px solid var(--line);
  font-family: "Poppins", sans-serif; font-weight: 600; color: var(--accent-deep);
  margin-bottom: 18px; transition: border-color .2s ease, background-color .2s ease;
}
.step:hover .step__num { border-color: var(--accent); background: var(--accent-soft); }
.step h3 { font-size: 1.12rem; margin-bottom: 6px; }
.step p { font-size: .93rem; }

/* Additional services card */
.svc { display: flex; flex-direction: column; padding: 24px; }
.svc h3 { font-size: 1.1rem; margin-bottom: 8px; }
.svc p { font-size: .92rem; flex: 1; margin-bottom: 16px; }
.svc__link {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  font-size: .88rem; font-weight: 600; color: var(--accent-deep);
  text-decoration: none; transition: gap .16s ease, color .16s ease;
}
.svc__link:hover { color: var(--ink); gap: 11px; }
.svc__link .ico { width: 15px; height: 15px; }

/* Sub-heading that groups the service cards */
.svc-group-title {
  font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-muted); margin: 0 0 16px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.svc-group-title.stack-gap { margin-top: 40px; }

.svc-closing {
  margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line);
  font-size: .96rem; color: var(--ink-soft);
}

/* Case study card */
.case__tag {
  display: inline-block; font-size: .78rem; font-weight: 600;
  color: var(--accent-deep); background: var(--accent-soft);
  padding: 5px 11px; border-radius: var(--radius-pill); margin-bottom: 13px;
}
.case h3 { font-size: 1.14rem; }
.case p { font-size: .93rem; }


/* ---------- 10. REQUEST WIZARD (FORM) ---------- */
.request-grid { display: grid; grid-template-columns: 1fr 320px; gap: 22px; align-items: start; }

.wizard {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden;
}
.wizard__steps { display: flex; border-bottom: 1px solid var(--line); }
.wizard__step {
  flex: 1; padding: 14px 16px; border-right: 1px solid var(--line);
  font-size: .82rem; color: var(--ink-muted); background: var(--surface-warm);
}
.wizard__step:last-child { border-right: 0; }
.wizard__step[aria-current="step"] { background: var(--ink); color: #fff; }
.wizard__step[data-done="true"] { background: #fff; color: var(--accent-deep); }
.wizard__step b { display: block; font-family: "Poppins", sans-serif; font-weight: 600; font-size: .9rem; }
.wizard__body { padding: 26px; }
.wizard__nav {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line);
}

/* Form fields */
.field { margin-bottom: 18px; }
.field > label, .field-label {
  display: block; font-size: .85rem; font-weight: 500;
  color: var(--ink); margin-bottom: 7px;
}
.field-hint { font-size: .8rem; color: var(--ink-muted); font-weight: 400; }

.input, .select, .textarea {
  width: 100%; font: inherit; font-size: .95rem; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 12px 14px;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.textarea { resize: vertical; min-height: 118px; }
.select { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23837E76' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 17px; padding-right: 40px; }

.field-row { display: grid; grid-template-columns: 120px 1fr; gap: 14px; }
.field-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Selectable chips (formats / lead time / tier) */
.chips { display: grid; gap: 9px; }
.chips--3 { grid-template-columns: repeat(3, 1fr); }
.chips--2 { grid-template-columns: repeat(2, 1fr); }
.chip {
  display: flex; align-items: center; gap: 9px;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 11px 13px; font-size: .89rem; color: var(--ink);
  cursor: pointer; background: var(--surface);
  transition: border-color .16s ease, background-color .16s ease;
}
.chip:hover { border-color: rgba(184,134,59,.55); }
.chip input { accent-color: var(--accent-deep); width: 16px; height: 16px; flex: none; margin: 0; }
.chip:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); font-weight: 500; }
.chip:has(input:focus-visible) { outline: 3px solid var(--accent-deep); outline-offset: 2px; }

/* Tier toggle buttons inside the wizard */
.tier-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.tier-toggle button {
  font: inherit; font-size: .92rem; padding: 12px; cursor: pointer;
  border: 1.5px solid var(--line); background: var(--surface); color: var(--ink);
  border-radius: var(--radius-pill); transition: all .16s ease;
}
.tier-toggle button[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }

/* A requirement block (repeatable) */
.req {
  border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 18px; background: var(--surface-warm); margin-bottom: 14px;
}
.req__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.req__label {
  font-family: "Poppins", sans-serif; font-size: .76rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent-deep);
}
.req__remove {
  background: none; border: 0; color: var(--ink-muted); cursor: pointer;
  padding: 5px; border-radius: 6px; line-height: 0;
}
.req__remove:hover { color: var(--danger); background: rgba(180,52,42,.08); }
.req__remove .ico { width: 17px; height: 17px; }

.fixed-note {
  display: flex; align-items: center; gap: 9px;
  border: 1.5px solid var(--accent); background: var(--accent-soft);
  border-radius: var(--radius); padding: 11px 13px; font-size: .89rem; color: var(--ink);
}
.fixed-note .ico { width: 15px; height: 15px; color: var(--accent-deep); }

.add-req {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 0; font: inherit; font-size: .92rem; font-weight: 500;
  color: var(--accent-deep); cursor: pointer; padding: 6px 0;
}
.add-req:hover { color: var(--ink); text-decoration: underline; }
.add-req .ico { width: 17px; height: 17px; }

/* Consent / privacy checkbox — required before submit */
.consent {
  display: flex; gap: 12px; align-items: flex-start;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 15px; background: var(--surface-warm); margin-top: 4px;
}
.consent input { accent-color: var(--accent-deep); width: 18px; height: 18px; margin: 2px 0 0; flex: none; }
.consent label { font-size: .89rem; color: var(--ink-soft); margin: 0; }
.consent:has(input:focus-visible) { outline: 3px solid var(--accent-deep); outline-offset: 2px; }

/* Inline form messages */
.form-msg { border-radius: var(--radius); padding: 12px 14px; font-size: .89rem; margin-top: 16px; }
.form-msg--error { background: rgba(180,52,42,.08); border: 1px solid rgba(180,52,42,.3); color: var(--danger); }

/* Success panel replaces the wizard after submit */
.wizard__success { padding: 52px 30px; text-align: center; }
.wizard__success .ico { width: 46px; height: 46px; color: var(--success); margin: 0 auto 14px; }
.wizard__success p { max-width: 420px; margin-inline: auto; }

/* Live summary ticket */
.ticket {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  position: sticky; top: 96px; overflow: hidden;
}
.ticket__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--surface-warm);
}
.ticket__head b {
  font-family: "Poppins", sans-serif; font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
}
.ticket__status {
  font-size: .7rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 9px; border-radius: var(--radius-pill);
  background: var(--accent-soft); color: var(--accent-deep);
}
.ticket__status[data-sent="true"] { background: var(--success); color: #fff; }
.ticket__rows { padding: 16px 18px; margin: 0; }
.ticket__row {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .88rem;
}
.ticket__row dt { color: var(--ink-muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.ticket__row dd { margin: 0; text-align: right; color: var(--ink); font-weight: 500; }
.ticket__reqs { padding: 4px 18px 20px; }
.ticket__reqs h4 {
  font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-deep); margin: 10px 0; padding-top: 10px; border-top: 1px solid var(--line);
}
.ticket__reqs ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.ticket__reqs li { font-size: .82rem; color: var(--ink-soft); line-height: 1.5; }
.ticket__reqs li b { color: var(--accent-deep); font-weight: 600; }


/* ---------- COOKIE CONSENT BANNER ---------- */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--surface-dark); color: rgba(255,255,255,.78);
  border-top: 1px solid var(--line-dark);
  box-shadow: 0 -6px 28px rgba(0,0,0,.24);
  padding: 18px var(--gutter);
}
.cookie-bar__inner {
  max-width: var(--maxw); margin-inline: auto;
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
}
.cookie-bar__text { margin: 0; flex: 1 1 320px; font-size: .9rem; line-height: 1.55; }
.cookie-bar__text a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.cookie-bar__text a:hover { color: #fff; }
.cookie-bar__actions { display: flex; gap: 10px; flex-shrink: 0; }

@media (max-width: 620px) {
  .cookie-bar__actions { width: 100%; }
  .cookie-bar__actions .btn { flex: 1; justify-content: center; }
}


/* ---------- 11. FAQ ACCORDION ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 0; cursor: pointer; list-style: none;
  font-family: "Poppins", sans-serif; font-size: 1.05rem; font-weight: 500; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent-deep); }
.faq summary .plus {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; border: 1.5px solid var(--line);
  color: var(--accent-deep); font-size: 1.1rem; line-height: 1;
  transition: transform .22s ease, border-color .22s ease;
}
.faq details[open] summary .plus { transform: rotate(45deg); border-color: var(--accent); }
.faq details > div { padding: 0 46px 22px 0; font-size: .96rem; }


/* ---------- 12. FOOTER ---------- */
.site-footer { background: var(--surface-dark); color: rgba(255,255,255,.62); }
.site-footer__top {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 34px;
  padding-block: 54px 30px;
}
.site-footer img { height: 24px; width: auto; margin-bottom: 16px; }
.site-footer__about { max-width: 330px; font-size: .92rem; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 44px; }
.site-footer h4 {
  color: #fff; font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,.62); text-decoration: none; font-size: .92rem; }
.site-footer a:hover { color: var(--accent); }
/* Footer email gets accent treatment to stay prominent site-wide */
.site-footer a.footer-email { color: var(--accent); font-weight: 600; }

.site-footer__bottom {
  border-top: 1px solid var(--line-dark); padding-block: 22px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  font-size: .84rem; color: rgba(255,255,255,.5);
}
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }


/* ---------- 13. SUB-PAGES ---------- */
.page-hero { background: var(--surface-dark); color: rgba(255,255,255,.72); position: relative; overflow: hidden; }
.page-hero__texture {
  position: absolute; inset: 0;
  background-image: url("../assets/drawings-texture.jpg");
  background-size: cover; background-position: center; opacity: .16;
}
.page-hero__inner { position: relative; padding-block: clamp(56px, 8vw, 92px); }
.page-hero h1 { color: #fff; max-width: 780px; }
.page-hero .lead { color: rgba(255,255,255,.72); max-width: 660px; }

.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.75); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }

/* Long-form prose (privacy policy, service detail) */
.prose { max-width: 760px; }
.prose h2 { margin-top: 44px; font-size: 1.6rem; }
.prose h3 { margin-top: 30px; font-size: 1.15rem; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1.1em; display: grid; gap: 9px; }
.prose li { padding-left: 4px; }
.prose blockquote {
  margin: 26px 0; padding: 18px 22px;
  border-left: 3px solid var(--accent); background: var(--surface-warm);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .96rem; color: var(--ink-soft);
}
.prose blockquote cite { display: block; margin-top: 8px; font-size: .84rem; color: var(--ink-muted); font-style: normal; }

/* Callout panel used on the service page */
.callout {
  background: var(--surface-warm); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px; margin-top: 34px;
}
.callout h3 { margin-top: 0; }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 11px; font-size: .95rem; }
.checklist .ico { width: 18px; height: 18px; color: var(--accent-deep); flex: none; margin-top: 4px; }


/* ---------- 14. MOTION & REVEAL ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; }
.reveal.is-in { animation: fadeUp .6s cubic-bezier(.16,1,.3,1) forwards; }
/* Stagger children slightly for a smoother entrance */
.reveal.is-in:nth-child(2) { animation-delay: .07s; }
.reveal.is-in:nth-child(3) { animation-delay: .14s; }
.reveal.is-in:nth-child(4) { animation-delay: .21s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; animation: none !important; }
  .btn:hover, .card:hover { transform: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}


/* ---------- 15. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .request-grid { grid-template-columns: 1fr; }
  .ticket { position: static; }
  .nav { display: none; }            /* collapse to drawer */
  .menu-btn { display: block; }
  .header-email span { display: none; }
}

@media (max-width: 820px) {
  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .site-footer__links { gap: 30px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .header-email { display: none; }   /* button remains; email repeats in hero */
  .grid--4 { grid-template-columns: 1fr; }
  .field-row, .field-row-2 { grid-template-columns: 1fr; }
  .chips--3 { grid-template-columns: 1fr; }
  .wizard__body { padding: 20px; }
  .wizard__step { padding: 11px 10px; font-size: .74rem; }
  .wizard__step b { font-size: .8rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__email { width: 100%; }
  .faq details > div { padding-right: 0; }
}


/* ---------- 16. ACCESSIBILITY UTILITIES ---------- */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; padding: 12px 18px;
  border-radius: var(--radius); text-decoration: none;
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; }
