/* Self-hosted fonts (latin subsets) */
@font-face { font-family: 'Archivo Black'; font-style: normal; font-weight: 400; font-display: swap; src: url(/assets/fonts/archivo-black-400.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 400; font-display: swap; src: url(/assets/fonts/barlow-400.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 500; font-display: swap; src: url(/assets/fonts/barlow-500.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 600; font-display: swap; src: url(/assets/fonts/barlow-600.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 700; font-display: swap; src: url(/assets/fonts/barlow-700.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url(/assets/fonts/ibm-plex-mono-400.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url(/assets/fonts/ibm-plex-mono-500.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* IDA Wraps — homepage concept. Static reference build.
   Fonts: Archivo Black (display), Barlow (body), IBM Plex Mono (labels). */

:root {
  --ink: #17181a;
  --ink-2: #4a4d51;
  --ink-3: #6f7174;
  --paper: #f5f4f1;
  --paper-2: #e9e7e1;
  --line: #dedbd4;
  --white: #fff;
  --lime: #9ede3a;
  --magenta: #d81f63;
  --dark-stripe-a: #2a2b2e;
  --dark-stripe-b: #232427;
  --wrap: 1280px;
  --pad: 24px;
  --display: "Archivo Black", "Arial Black", sans-serif;
  --body: Barlow, system-ui, -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { display: block; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--magenta); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad); }
.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta);
}
.eyebrow--light { color: var(--lime); }
.h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(26px, 3.6vw, 48px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.lede { font-size: 17px; line-height: 1.55; color: var(--ink-2); max-width: 47ch; }
.section { padding-top: clamp(56px, 7vw, 104px); }
.link-arrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4px;
  align-self: flex-start;
  white-space: nowrap;
}
.section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 34px;
}
.section-head > div { display: flex; flex-direction: column; gap: 12px; max-width: 680px; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 16px 26px;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
}
.btn--lime { background: var(--lime); color: var(--ink); }
.btn--lime:hover { background: var(--paper); color: var(--ink); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--magenta); color: var(--paper); }
.btn--ghost-light { border: 1.5px solid #55585d; color: var(--paper); }
.btn--ghost-light:hover { border-color: var(--paper); color: var(--paper); }
.btn--sm { font-size: 14px; padding: 15px 24px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 4px; }

/* Utility bar */
.utility {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.utility .wrap {
  padding-block: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  align-items: center;
  justify-content: space-between;
}
.utility a { color: var(--paper); }
.utility a.accent { color: var(--lime); }
.utility__status { display: flex; align-items: center; gap: 10px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.utility__links { display: flex; gap: 20px; align-items: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 244, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__top {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding-top: 12px;
}
.logo { height: 32px; width: auto; max-width: 100%; object-fit: contain; }
.header-ctas { display: flex; gap: 10px; flex: 0 0 auto; }
.btn-chip {
  padding: 11px 18px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: var(--body);
}
.btn-chip--outline { border: 1.5px solid var(--ink); }
.btn-chip--outline:hover { background: var(--ink); color: var(--paper); }
.btn-chip--solid { background: var(--ink); color: var(--paper); }
.btn-chip--solid:hover { background: var(--magenta); color: var(--paper); }

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 26px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding-block: 8px 10px;
}
.site-nav a {
  padding-block: 6px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.site-nav a:hover { border-bottom-color: var(--magenta); color: var(--ink); }

/* Hero */
.hero { background: var(--ink); color: var(--paper); }
.hero__inner {
  position: relative;
  min-height: clamp(420px, 58vh, 620px);
  display: flex;
  align-items: center;
  padding-block: clamp(44px, 6vw, 96px) clamp(40px, 5vw, 80px);
  overflow: hidden;
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1e1f22;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23,24,26,0.94) 0%, rgba(23,24,26,0.7) 46%, rgba(23,24,26,0.15) 100%);
}
.hero__content { position: relative; width: 100%; }
.hero__col {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.hero h1 {
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.015em;
  font-size: clamp(34px, 5.4vw, 74px);
  text-wrap: balance;
}
.hero__sub {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(18px, 2.2vw, 30px);
  color: #9a9da2;
}
.hero__body { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.5; color: #d6d4cf; max-width: 56ch; }

/* Trust bar */
.trust { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.trust .wrap {
  padding-block: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px 36px;
  align-items: center;
}
.trust__item { display: flex; flex-direction: column; gap: 3px; }
.trust__item strong { font-size: 15px; }
.trust__item .mono { color: #5c5f63; letter-spacing: 0.1em; }
.trust__score { display: flex; gap: 12px; align-items: center; }
.trust__score b { font-family: var(--display); font-size: 26px; font-weight: 400; }
.stars { color: var(--magenta); letter-spacing: 0.12em; font-size: 14px; }

/* Hairline grids (1px rules via background bleed) */
.grid-hairline {
  display: grid;
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.services { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.card { background: var(--paper); display: flex; flex-direction: column; }
.card:hover { background: var(--white); color: var(--ink); }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--paper-2); }
.card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card h3 { font-family: var(--display); text-transform: uppercase; font-size: 20px; }
.card p { font-size: 15px; line-height: 1.55; color: var(--ink-2); flex: 1; }
.card .mono { color: var(--magenta); }

/* Process */
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.col { display: flex; flex-direction: column; gap: 14px; }
.steps li {
  background: var(--paper);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: start;
}
.steps b { font-family: var(--display); font-size: 24px; color: #b9b6ae; font-weight: 400; }
.steps h3 { font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; }
.steps p { font-size: 15px; line-height: 1.5; color: var(--ink-2); }
.steps div { display: flex; flex-direction: column; gap: 6px; }

/* Portfolio band */
.work {
  margin-top: clamp(56px, 7vw, 104px);
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(48px, 6vw, 88px);
}
.work a { color: var(--paper); }
.work .link-arrow { border-bottom-color: var(--lime); }
.work__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  padding-top: 34px;
}
.work__grid img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--dark-stripe-b); }

/* Marquee */
.marquee { background: var(--lime); overflow: hidden; padding-block: 12px; }
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.marquee__track span { display: flex; gap: 40px; padding-right: 40px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* Reviews */
.reviews { display: grid; gap: 12px; }
.review {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review p { font-size: 16px; line-height: 1.55; color: #2a2c2f; }
.review footer { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.clients {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  justify-content: space-between;
}
.clients strong { font-size: 15px; }

/* Quote */
.quote {
  margin-top: clamp(56px, 7vw, 104px);
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding-block: clamp(48px, 6vw, 88px);
}
.contact-list a, .contact-list div {
  background: var(--paper);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.contact-list a:hover { background: var(--white); color: var(--ink); }
.contact-list strong { font-family: var(--display); text-transform: uppercase; font-size: 17px; font-weight: 400; }
.contact-list .mono { color: var(--ink-3); letter-spacing: 0.1em; }
.contact-list div { flex-direction: column; align-items: flex-start; gap: 4px; }

form.quote-form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  gap: 14px;
}
form.quote-form h3 { font-family: var(--display); text-transform: uppercase; font-size: 18px; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; }
label.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5c5f63;
}
.field input, .field select, .field textarea {
  font-family: var(--body);
  font-size: 16px;
  padding: 12px;
  border: 1px solid #cfccc4;
  background: var(--white);
  color: var(--ink);
}
.field textarea { resize: vertical; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 1px;
}
.form-note { font-family: var(--mono); font-size: 11px; color: var(--ink-3); line-height: 1.5; }

/* Footer */
.site-footer { background: var(--ink); color: var(--paper); padding-block: clamp(44px, 5vw, 72px) 28px; }
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 36px;
}
.site-footer__cols > div { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.site-footer .logo { filter: brightness(1.6); height: 30px; align-self: flex-start; }
.site-footer p { font-size: 15px; line-height: 1.55; color: #b3b6ba; max-width: 34ch; }
.site-footer h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #7d8085; font-weight: 400; }
.site-footer a { color: #e4e2de; font-size: 15px; }
.site-footer a:hover { color: var(--lime); }
.site-footer .phone { color: var(--lime); font-family: var(--display); text-transform: uppercase; font-size: 17px; }
.site-footer .areas { color: #b3b6ba; font-size: 15px; line-height: 1.6; }
.social { display: flex; gap: 14px; padding-top: 4px; font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.social a { color: var(--lime); }
.legal {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #2c2d31;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7d8085;
}

/* Sticky mobile action bar */
.action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: var(--ink);
  border-top: 2px solid var(--lime);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}
.action-bar a {
  padding: 15px 12px;
  text-align: center;
  color: var(--paper);
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.action-bar a:last-child { background: var(--lime); color: var(--ink); }
.action-bar__spacer { height: 54px; }

@media (min-width: 900px) {
  .action-bar, .action-bar__spacer { display: none; }
}
@media (max-width: 640px) {
  .header-ctas { display: none; }
  .site-nav { gap: 2px 18px; font-size: 13px; }
}

/* Inner pages */
.site-nav a[aria-current="page"] { border-bottom-color: var(--magenta); }
.hero--page .hero__inner { min-height: clamp(300px, 38vh, 440px); }
.hero--page .hero__scrim { background: linear-gradient(90deg, rgba(23,24,26,0.96) 0%, rgba(23,24,26,0.78) 50%, rgba(23,24,26,0.3) 100%); }
.hero--page h1 { font-size: clamp(30px, 4.4vw, 60px); }
.prose { display: flex; flex-direction: column; gap: 18px; max-width: 62ch; }
.prose p { font-size: 17px; line-height: 1.6; color: var(--ink-2); }
.prose h2 { font-family: var(--display); text-transform: uppercase; font-size: 22px; line-height: 1.1; margin-top: 14px; }
.prose h2:first-child { margin-top: 0; }
.prose strong { color: var(--ink); }
.facts li {
  background: var(--paper);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.facts b { font-family: var(--display); text-transform: uppercase; font-size: 17px; font-weight: 400; }
.facts span { font-size: 15px; line-height: 1.5; color: var(--ink-2); }
.quote--page { margin-top: 0; border-top: 0; }
.form-note--ok { color: var(--ink); font-family: var(--body); font-size: 15px; font-weight: 600; }
.form-note--err { color: var(--magenta); }
.form-note a { color: inherit; text-decoration: underline; }


/* Service pages */
.hero__photo--blank { background: repeating-linear-gradient(135deg, #1e1f22 0 18px, #232427 18px 36px); }
.prose a { color: var(--magenta); }
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  padding-top: 34px;
}
.gallery figure { display: flex; flex-direction: column; gap: 8px; margin: 0; min-width: 0; }
.gallery figure[hidden] { display: none; }
.gallery img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; background: var(--dark-stripe-b); }
.gallery figcaption { color: #9a9da2; letter-spacing: 0.1em; }
.gallery--light { padding-top: 0; }
.gallery--light figcaption { color: var(--ink-3); }
.tile--blank { aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; border: 1px dashed #55585d; color: #6f7174; }
.gallery--light .tile--blank { border-color: var(--line); }
.faq { display: grid; gap: 2px; background: var(--line); border: 1px solid var(--line); }
.faq__item { background: var(--paper); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 18px 22px;
  font-weight: 700; font-size: 16px; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--display); font-size: 20px; color: var(--magenta); flex: none; }
.faq__item[open] summary::after { content: "\2212"; }
.faq__item summary:hover { background: var(--white); }
.faq__item summary:focus-visible { outline: 2px solid var(--magenta); outline-offset: -2px; }
.faq__item p { padding: 0 22px 20px; font-size: 15px; line-height: 1.55; color: var(--ink-2); max-width: 70ch; }
.related { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.related a { background: var(--paper); padding: 18px 20px; font-family: var(--display); text-transform: uppercase; font-size: 15px; }
.related a:hover { background: var(--white); color: var(--magenta); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 22px; }
.filters button {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 14px; border: 1px solid var(--ink); background: transparent; color: var(--ink); cursor: pointer;
}
.filters button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }
.filters button:hover { border-color: var(--magenta); color: var(--magenta); }
.filters button[aria-pressed="true"]:hover { color: var(--paper); border-color: var(--ink); }
.filters button:focus-visible { outline: 2px solid var(--magenta); outline-offset: 2px; }
