/* =====================================================================
   Farooq & Farooq — site styles
   ---------------------------------------------------------------------
   EDITING GUIDE
   • Colours: change the variables in :root below. Everything uses them.
   • Fonts: loaded from Google Fonts in each HTML <head>. Archivo for
     headings, Source Sans 3 for body text. Both are open-licensed (OFL).
   • Layout widths: --max-w controls the content width.
   ===================================================================== */

:root {
  /* Brand palette (from the brand brief) */
  --bg:       #101416;   /* page background */
  --surface:  #181D21;   /* raised panels, cards, form fields */
  --text:     #F5F2ED;   /* primary text (warm white) */
  --accent:   #087CFF;   /* electric blue — emphasis only */
  --muted:    #AAB3BD;   /* secondary text */
  --border:   #2C343B;   /* hairlines and card borders */

  /* Derived / utility */
  --accent-text: #2F92FF;   /* blue for text/links — passes AA on bg and surface */
  --accent-soft: rgba(8, 124, 255, 0.12);
  --surface-2:   #1E252A;
  --focus:       #5BA8FF;
  --ok:          #4CC38A;
  --error:       #FF7A7A;

  /* Type */
  --font-head: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --max-w: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --header-h: 72px;
  --radius: 10px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media (max-width: 640px) { body { font-size: 16px; } }

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--text); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-text); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
strong { font-weight: 600; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 5.2vw, 4rem); font-weight: 800; line-height: 1.02; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }

:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 3px; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

.muted { color: var(--muted); }
.small { font-size: 0.92rem; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 58ch; }

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--accent); color: var(--bg); padding: 10px 14px; border-radius: 6px;
  font-weight: 600; text-decoration: none; transition: top .15s;
}
.skip-link:focus { top: 12px; }

/* ---------- Eyebrow label with the diagonal accent ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 18px; height: 9px; background: var(--accent);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);   /* the logo's diagonal */
}

/* The signature's thin vertical blue divider, reused as a detail */
.vrule { display: inline-block; width: 3px; align-self: stretch; background: var(--accent); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 8px; border: 1px solid transparent;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; line-height: 1;
  text-decoration: none; cursor: pointer; min-height: 48px;
  transition: background-color .18s, border-color .18s, color .18s, transform .18s;
}
.btn .arrow { display: inline-block; transition: transform .2s; }
.btn:hover .arrow, .btn:focus-visible .arrow { transform: translateX(4px); }
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover, .btn-primary:focus-visible { background: #2F92FF; color: var(--bg); }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--border); }
.btn-secondary:hover, .btn-secondary:focus-visible { border-color: var(--accent); color: var(--text); background: var(--accent-soft); }
.btn-small { padding: 10px 16px; min-height: 40px; font-size: 0.95rem; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .6; cursor: progress; }

/* ---------- Header / navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background-color .25s, border-color .25s;
}
.site-header.is-scrolled {
  background: rgba(16, 20, 22, 0.86);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom-color: var(--border);
}
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.brand img { width: 64px; height: 32px; object-fit: contain; }
.brand span { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }
@media (max-width: 380px) { .brand span { display: none; } }

.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.nav-list a { display: inline-block; padding: 10px 12px; text-decoration: none; color: var(--muted); font-weight: 600; font-size: 0.98rem; border-radius: 6px; }
.nav-list a:hover, .nav-list a:focus-visible { color: var(--text); background: var(--surface); }
.nav-list a[aria-current="page"] { color: var(--text); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 8px; background: transparent; border: 1px solid var(--border); color: var(--text); cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; z-index: 99;
    background: rgba(16, 20, 22, 0.98); border-bottom: 1px solid var(--border);
    padding: 12px var(--gutter) 20px;
    transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .2s, transform .2s, visibility 0s linear .2s;
  }
  .site-nav.is-open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; transition: opacity .2s, transform .2s; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list a { padding: 14px 10px; font-size: 1.05rem; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav-list li:last-child a { border-bottom: 0; }
  .nav-cta { margin: 10px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; scroll-margin-top: calc(var(--header-h) + 12px); }
.section + .section { border-top: 1px solid var(--border); }
.section-head { max-width: 62ch; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head p { color: var(--muted); font-size: 1.1rem; }
.section-alt { background: var(--surface); }

/* ---------- Hero ---------- */
.hero { padding: clamp(40px, 7vw, 96px) 0 clamp(48px, 7vw, 96px); scroll-margin-top: var(--header-h); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(32px, 6vw, 80px); align-items: center; }
.hero-copy { max-width: 620px; }
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy .lead { margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.hero-location { color: var(--muted); font-size: 0.95rem; display: flex; align-items: center; gap: 12px; }
.hero-location .vrule { height: 18px; align-self: auto; }

.hero-enter { animation: fadeUp .55s ease-out both; }
.hero-enter:nth-child(2) { animation-delay: .08s; }
.hero-enter:nth-child(3) { animation-delay: .16s; }
.hero-enter:nth-child(4) { animation-delay: .24s; }
.hero-enter:nth-child(5) { animation-delay: .3s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Hero visual: three vertical content frames + a drawn blue connector */
.hero-visual { position: relative; }
.frames { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; align-items: end; }
.frame {
  position: relative; aspect-ratio: 9 / 16; border-radius: 14px; overflow: hidden;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); display: flex; flex-direction: column; justify-content: space-between;
  padding: 12px; min-height: 0;
}
.frame:nth-child(1) { transform: translateY(28px); }
.frame:nth-child(3) { transform: translateY(52px); }
.frame .chip { align-self: flex-start; font-size: 0.68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); background: rgba(16,20,22,.6); border: 1px solid var(--border); padding: 4px 8px; border-radius: 999px; }
.frame .art { flex: 1; display: flex; align-items: center; justify-content: center; padding: 8px 4px; }
.frame .art svg { width: 100%; height: auto; max-height: 100%; }
.frame .cap { font-size: 0.8rem; line-height: 1.3; color: var(--text); }
.frame .cap small { display: block; color: var(--muted); font-size: 0.72rem; margin-top: 2px; }
.frame::after { /* faint grid texture */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 28px 28px; mask-image: linear-gradient(180deg, transparent, #000 40%, transparent); -webkit-mask-image: linear-gradient(180deg, transparent, #000 40%, transparent);
}
.connector { position: absolute; inset: -6% -4% -10% -4%; width: 108%; height: 116%; pointer-events: none; overflow: visible; }
.connector path { fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1.6s cubic-bezier(.2,.7,.2,1) .25s forwards; }
.connector circle { fill: var(--accent); opacity: 0; animation: pop .3s ease-out 1.7s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pop { to { opacity: 1; } }
.hero-note { margin-top: 64px; font-size: 0.82rem; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; }
.hero-note::before { content: ""; flex: 0 0 3px; height: 18px; background: var(--accent); border-radius: 2px; margin-top: 3px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; }
  .hero-note { margin-top: 60px; }
}
@media (max-width: 480px) {
  .frames { gap: 10px; }
  .frame { padding: 9px; border-radius: 10px; }
  .frame .cap { font-size: 0.7rem; }
  .frame .cap small { font-size: 0.64rem; }
  .frame .chip { font-size: 0.6rem; padding: 3px 6px; }
}

/* Focus chips (starting specialty) */
.focus-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.focus-strip .container { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; padding-top: 18px; padding-bottom: 18px; }
.focus-strip .label { font-size: 0.8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-right: 6px; }
.focus-strip .chip { font-size: 0.95rem; color: var(--text); padding: 6px 12px; border: 1px solid var(--border); border-radius: 999px; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.service-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.service {
  padding: 22px 22px 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface);
  display: grid; grid-template-columns: 3px 1fr; gap: 16px;
}
.service .vrule { height: auto; }
.service h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service p { color: var(--muted); font-size: 0.98rem; }
.outputs { position: sticky; top: calc(var(--header-h) + 24px); padding: 26px 26px 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.outputs h3 { margin-bottom: 14px; }
.outputs ul { list-style: none; padding: 0; margin: 0 0 16px; }
.outputs li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.outputs li:last-child { border-bottom: 0; }
.outputs li::before { content: ""; flex: 0 0 14px; height: 7px; margin-top: 9px; background: var(--accent); clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%); }
.outputs .fine { color: var(--muted); font-size: 0.9rem; }
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .outputs { position: static; }
}
@media (max-width: 640px) { .service-list { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.process { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; --p: 0; }
.process-line { position: absolute; left: 22px; right: 22px; top: 22px; height: 2px; background: var(--border); border-radius: 2px; overflow: hidden; }
.process-line span { position: absolute; inset: 0; background: var(--accent); transform-origin: left center; transform: scaleX(var(--p)); transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.step { position: relative; padding-top: 0; }
.step .num {
  position: relative; z-index: 1; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--bg); border: 2px solid var(--border); font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--muted);
  transition: border-color .3s, color .3s;
  margin-bottom: 18px;
}
.step.is-active .num { border-color: var(--accent); color: var(--text); }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.98rem; }
.process-notes { margin-top: clamp(32px, 5vw, 48px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.note-card { display: grid; grid-template-columns: 3px 1fr; gap: 16px; padding: 18px 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.note-card p { margin: 0; color: var(--text); }
.note-card strong { display: block; margin-bottom: 4px; }
@media (max-width: 900px) {
  .process { grid-template-columns: 1fr; gap: 28px; padding-left: 64px; }
  .process-line { left: 21px; top: 22px; bottom: 22px; right: auto; width: 2px; height: auto; }
  .process-line span { transform-origin: center top; transform: scaleY(var(--p)); }
  .step .num { position: absolute; left: -64px; top: -2px; margin: 0; }
  .process-notes { grid-template-columns: 1fr; }
}

/* ---------- Campaign concepts ---------- */
.concepts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.concept {
  display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); overflow: hidden;
  transition: transform .2s, border-color .2s;
}
@media (hover: hover) { .concept:hover { transform: translateY(-3px); border-color: var(--accent); } }
.concept:focus-within { border-color: var(--accent); }
.concept .visual { position: relative; aspect-ratio: 4 / 3; background: linear-gradient(160deg, var(--surface-2), var(--bg)); border-bottom: 1px solid var(--border); display: grid; place-items: center; padding: 22px; }
.concept .visual svg { height: 78%; width: auto; }
.concept .tag { position: absolute; top: 12px; left: 12px; font-size: 0.7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); background: rgba(16,20,22,.7); border: 1px solid var(--border); padding: 4px 9px; border-radius: 999px; }
.concept .body { padding: 20px 20px 22px; display: grid; gap: 12px; }
.concept h3 { font-size: 1.15rem; margin: 0; }
.concept dl { margin: 0; display: grid; gap: 10px; }
.concept dt { font-size: 0.74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.concept dd { margin: 2px 0 0; font-size: 0.97rem; }
@media (max-width: 900px) { .concepts { grid-template-columns: 1fr; max-width: 560px; } }

/* ---------- Pilot ---------- */
.pilot-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.pilot-scope { padding: 26px 26px 28px; border-radius: var(--radius); background: var(--bg); border: 1px solid var(--border); }
.pilot-scope h3 { font-size: 1.05rem; margin-bottom: 12px; }
.pilot-scope ul { list-style: none; padding: 0; margin: 0 0 14px; }
.pilot-scope li { padding: 9px 0 9px 22px; position: relative; border-bottom: 1px solid var(--border); }
.pilot-scope li:last-child { border-bottom: 0; }
.pilot-scope li::before { content: ""; position: absolute; left: 0; top: 17px; width: 12px; height: 6px; background: var(--accent); clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%); }
.pilot-scope .fine { font-size: 0.9rem; color: var(--muted); }
.pilot-copy p { color: var(--muted); }
.pilot-copy .callout { display: grid; grid-template-columns: 3px 1fr; gap: 16px; padding: 4px 0; margin: 22px 0; }
.pilot-copy .callout p { color: var(--text); font-size: 1.08rem; }
@media (max-width: 900px) { .pilot-grid { grid-template-columns: 1fr; } }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(28px, 6vw, 80px); align-items: center; }
.about-mark { position: relative; padding: clamp(28px, 5vw, 56px); border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.about-mark img { width: 100%; max-width: 380px; margin: 0 auto; }
.about-mark::before { content: ""; position: absolute; left: -1px; top: 18%; bottom: 18%; width: 3px; background: var(--accent); }
.about-copy p { font-size: 1.08rem; }
.about-copy .role { margin: -6px 0 18px; font-size: 0.95rem; font-weight: 600; letter-spacing: .04em; color: var(--muted); }
.about-copy .callout { display: grid; grid-template-columns: 3px 1fr; gap: 16px; margin-top: 22px; }
.about-copy .callout p { margin: 0; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--text); }
.about-copy .facts { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 22px; }
.about-copy .fact { padding: 14px 16px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface); }
.about-copy .fact span { display: block; font-size: 0.74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } .about-mark { max-width: 460px; } }
@media (max-width: 480px) { .about-copy .facts { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(28px, 5vw, 64px); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 40px 18px 0; font-weight: 600; font-size: 1.05rem; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 10px; height: 10px; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p { color: var(--muted); padding: 0 0 18px; margin: 0; max-width: 60ch; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }

/* ---------- Inquiry / forms ---------- */
.inquiry-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(28px, 6vw, 80px); align-items: start; }
.inquiry-copy h3 { font-size: 1.6rem; margin-bottom: 12px; }
.inquiry-copy p { color: var(--muted); font-size: 1.08rem; }
.contact-alt { margin-top: 26px; padding: 20px 22px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); }
.contact-alt h3, .contact-alt h4 { font-size: 1rem; margin-bottom: 10px; }
.contact-alt a { display: block; text-decoration: none; font-weight: 600; padding: 6px 0; }
.contact-alt a:hover { color: var(--accent-text); }

.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: 0.95rem; }
.field label .req { color: var(--accent-text); }
.field .help { font-size: 0.85rem; color: var(--muted); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; color: var(--text); background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 14px; min-height: 48px; transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field input::placeholder, .field textarea::placeholder { color: #7B8791; }
.form-foot { display: grid; gap: 12px; }
.form-foot .fine { font-size: 0.9rem; color: var(--muted); }
.form-status { display: none; padding: 14px 16px; border-radius: 8px; border: 1px solid var(--border); background: var(--bg); font-size: 0.98rem; }
.form-status.is-error { display: block; border-color: var(--error); }
.form-status.is-success { display: block; border-color: var(--ok); }
.form-status.is-info { display: block; border-color: var(--accent); }
.form-status a { color: var(--accent-text); font-weight: 600; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 900px) { .inquiry-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }


/* ---------- Contact tabs (I'm a Brand / I'm a Creator) ---------- */
.contact-tabs { display: inline-flex; gap: 4px; padding: 4px; border: 1px solid var(--border); border-radius: 10px; background: var(--bg); margin-bottom: clamp(24px, 4vw, 40px); }
.contact-tab {
  padding: 10px 18px; min-height: 44px; border: 0; border-radius: 7px; background: transparent; color: var(--muted);
  font: inherit; font-weight: 600; cursor: pointer; transition: background-color .18s, color .18s;
}
.contact-tab:hover { color: var(--text); }
.contact-tab[aria-selected="true"] { background: var(--accent); color: var(--bg); }
.contact-tab:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.contact-panel[hidden] { display: none; }
.criteria-stack { display: grid; gap: 10px; margin: 18px 0 6px; }
.criteria-stack div { padding: 14px 16px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg); font-size: 0.98rem; }
.criteria-stack span { display: block; font-size: 0.74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
/* Without JavaScript, both panels simply stack and the tabs are hidden */
html:not(.js) .contact-tabs { display: none; }
html:not(.js) .contact-panel + .contact-panel { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--border); }
@media (max-width: 420px) { .contact-tabs { display: flex; width: 100%; } .contact-tab { flex: 1; text-align: center; padding: 10px 8px; } }

/* ---------- Simple pages (privacy) ---------- */
.page-hero { padding: clamp(40px, 7vw, 88px) 0 clamp(28px, 5vw, 48px); }
.page-hero .lead { margin-top: 8px; }
.prose { max-width: 68ch; }
.prose h2 { font-size: 1.5rem; margin-top: 2em; }
.prose h3 { font-size: 1.15rem; margin-top: 1.6em; }
.prose p, .prose li { color: var(--muted); }
.prose strong { color: var(--text); }
.narrow { max-width: 760px; }
.criteria { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin: 26px 0; }
.criteria div { padding: 16px 18px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface); }
.criteria span { display: block; font-size: 0.74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
@media (max-width: 720px) { .criteria { grid-template-columns: 1fr; } }
.disclaimer { display: grid; grid-template-columns: 3px 1fr; gap: 16px; margin: 26px 0; }
.disclaimer p { color: var(--text); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: clamp(40px, 6vw, 72px) 0 32px; background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr); gap: 32px; }
.footer-brand img { width: 96px; height: 48px; object-fit: contain; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); max-width: 32ch; }
.footer-col h4 { font-size: 0.8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 5px 0; }
.footer-col a { text-decoration: none; color: var(--text); }
.footer-col a:hover { color: var(--accent-text); }
.footer-col address { font-style: normal; color: var(--muted); }
.footer-bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: 0.9rem; color: var(--muted); }
.footer-bottom a { color: var(--muted); }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- Scroll reveal (only when JS is present) ---------- */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease-out, transform .55s ease-out; }
html.js .reveal.is-visible { opacity: 1; transform: none; }
html.js .reveal[data-delay="1"] { transition-delay: .08s; }
html.js .reveal[data-delay="2"] { transition-delay: .16s; }
html.js .reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-delay: 0s !important; transition-duration: 0.001ms !important; }
  .hero-enter { animation: none; opacity: 1; transform: none; }
  .connector path { stroke-dashoffset: 0; animation: none; }
  .connector circle { opacity: 1; animation: none; }
  html.js .reveal { opacity: 1; transform: none; }
  .process-line span { transition: none; }
}
