/* ===========================================================
   Arnic Construction — arnicconstruction.com
   Single stylesheet. No external dependencies.
   =========================================================== */

/* ---------- Design tokens ---------- */
:root {
  --ink:        #101317;
  --ink-2:      #1a1f26;
  --ink-3:      #2a3139;
  --paper:      #ffffff;
  --paper-2:    #f6f7f8;
  --paper-3:    #eceef0;
  --muted:      #6a737d;
  --muted-2:    #9aa3ab;
  --line:       #e2e5e8;
  --line-dark:  #333b44;

  --accent:      #f26a1b;
  --accent-dark: #cf5510;
  --accent-soft: #fff1e8;

  --wrap: 1180px;
  --gap: 24px;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(16, 19, 23, .06), 0 2px 8px rgba(16, 19, 23, .05);
  --shadow-md: 0 4px 12px rgba(16, 19, 23, .08), 0 12px 32px rgba(16, 19, 23, .08);
  --shadow-lg: 0 10px 24px rgba(16, 19, 23, .10), 0 30px 60px rgba(16, 19, 23, .12);

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;

  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-wrap: balance;
}
h1 { font-size: clamp(2.25rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); letter-spacing: -0.01em; }
p  { text-wrap: pretty; }

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

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

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
}
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(44px, 5vw, 64px) 0; }
.section--paper { background: var(--paper-2); }
.section--ink { background: var(--ink); color: #c9d0d7; }
.section--ink h2, .section--ink h3 { color: #fff; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Section headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
}
.section-head { max-width: 680px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.section--ink .section-head p { color: var(--muted-2); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid var(--btn-bg);
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: .96rem;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease),
              border-color .18s var(--ease), box-shadow .18s var(--ease);
  white-space: nowrap;
}
.btn:hover {
  --btn-bg: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn:active { transform: translateY(0); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--line); }
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: #fff; border-color: var(--ink); }

.btn--light { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.4); }
.btn--light:hover { --btn-bg: #fff; --btn-fg: var(--ink); border-color: #fff; }

.btn--lg { padding: 18px 34px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: var(--muted-2);
  font-size: .84rem;
  border-bottom: 1px solid var(--line-dark);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar__list { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 15px; height: 15px; color: var(--accent); flex: none; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--accent); }
@media (max-width: 820px) { .topbar { display: none; } }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.header.is-stuck { box-shadow: var(--shadow-sm); }
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: none;
}
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.02rem;
  letter-spacing: -.03em;
  position: relative;
  overflow: hidden;
  flex: none;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: var(--accent);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-weight: 900;
  font-size: 1.16rem;
  letter-spacing: -.03em;
  color: var(--ink);
  text-transform: uppercase;
}
.brand__tag {
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 10px 14px;
  border-radius: var(--r-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-2);
  position: relative;
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav a:hover { color: var(--accent); background: var(--paper-2); }
.nav a[aria-current="page"] { color: var(--accent); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.header__cta { display: flex; align-items: center; gap: 12px; flex: none; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: background .2s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform .24s var(--ease), top .2s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .header__cta .btn { display: none; }
  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 10px 22px 26px;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .nav a[aria-current="page"]::after { display: none; }
  .nav .btn { margin-top: 18px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(11,14,17,.94) 0%, rgba(11,14,17,.80) 42%, rgba(11,14,17,.42) 100%),
    linear-gradient(to top, rgba(11,14,17,.85), transparent 45%);
}
.hero__inner {
  padding: clamp(72px, 11vw, 148px) 0 clamp(64px, 9vw, 120px);
  max-width: 730px;
}
.hero h1 { color: #fff; }
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero__lede {
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: #d5dae0;
  max-width: 58ch;
}
.hero__actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.07);
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #e8ecef;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.hero__badge b {
  background: var(--accent);
  color: #fff;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .72rem;
  letter-spacing: .08em;
}

/* Trust strip under hero */
.trust {
  background: var(--ink-2);
  border-top: 1px solid var(--line-dark);
  color: #fff;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
}
.trust__item {
  background: var(--ink-2);
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust__item svg { width: 26px; height: 26px; color: var(--accent); flex: none; }
.trust__item strong { display: block; font-size: .98rem; }
.trust__item span { font-size: .82rem; color: var(--muted-2); }
@media (max-width: 900px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust__grid { grid-template-columns: 1fr; } }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: clamp(52px, 7vw, 88px) 0 clamp(48px, 6vw, 76px);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,106,27,.20), transparent 68%);
  pointer-events: none;
}
.page-hero h1 { color: #fff; max-width: 16ch; }
.page-hero p { color: var(--muted-2); max-width: 60ch; margin-top: 18px; font-size: 1.08rem; }

.crumbs {
  font-size: .84rem;
  color: var(--muted-2);
  margin-bottom: 18px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.crumbs a { color: #fff; text-decoration: none; }
.crumbs a:hover { color: var(--accent); }
.crumbs span[aria-hidden] { color: var(--ink-3); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: var(--gap); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 660px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* Service card */
.svc {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease),
              border-color .28s var(--ease);
  height: 100%;
}
.svc:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-3);
}
.svc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.svc:hover .svc__media img { transform: scale(1.05); }
.svc__num {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .12em;
  padding: 7px 14px;
  text-transform: uppercase;
}
.svc__body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.svc__body p { color: var(--muted); font-size: .96rem; margin-top: 12px; }
.svc__list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 9px;
  font-size: .92rem;
  color: var(--ink-2);
}
.svc__list li { position: relative; padding-left: 24px; }
.svc__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 12px; height: 2px;
  background: var(--accent);
}
.svc__more {
  margin-top: auto;
  padding-top: 22px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.svc__more svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.svc:hover .svc__more svg { transform: translateX(4px); }

/* Feature card */
.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  height: 100%;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease),
              transform .25s var(--ease);
}
.feature:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.feature__icon {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.feature__icon svg { width: 25px; height: 25px; }
.feature p { color: var(--muted); font-size: .95rem; margin-top: 10px; }

.section--ink .feature {
  background: var(--ink-2);
  border-color: var(--line-dark);
}
.section--ink .feature:hover { border-color: var(--accent); }
.section--ink .feature__icon { background: rgba(242,106,27,.14); }
.section--ink .feature p { color: var(--muted-2); }

/* ---------- Split (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.split--flip .split__media { order: 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
}
.split__media { position: relative; }
.split__media img {
  width: 100%;
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.split__stat {
  position: absolute;
  right: -18px;
  bottom: -22px;
  background: var(--accent);
  color: #fff;
  padding: 22px 26px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  max-width: 210px;
}
.split__stat strong { display: block; font-size: 2rem; line-height: 1; font-weight: 900; }
.split__stat span { font-size: .84rem; opacity: .95; }
@media (max-width: 560px) { .split__stat { right: 12px; bottom: -16px; padding: 16px 20px; } }

.prose p { color: var(--muted); margin-top: 16px; }
.prose h2 + p { margin-top: 18px; }
.prose ul { margin: 20px 0 0; padding-left: 0; list-style: none; display: grid; gap: 12px; }
.prose ul li { position: relative; padding-left: 32px; color: var(--ink-2); }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
}
.prose ul li::after {
  content: "";
  position: absolute;
  left: 6px; top: 10px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 30px; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,.10);
  position: absolute;
  top: -8px; left: 0;
  letter-spacing: -.04em;
}
.step__bar { height: 3px; background: var(--line-dark); position: relative; margin-bottom: 18px; }
.step__bar::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 42px;
  background: var(--accent);
}
.step h3 { font-size: 1.12rem; }
.step p { color: var(--muted-2); font-size: .93rem; margin-top: 10px; }

/* ---------- Quote / testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-md);
  padding: 28px 26px;
}
.quote__stars { color: var(--accent); letter-spacing: 3px; font-size: .95rem; margin-bottom: 14px; }
.quote p { font-size: 1rem; color: var(--ink-2); }
.quote footer {
  margin-top: 18px;
  font-size: .86rem;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--accent);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,.055) 0 22px,
    transparent 22px 44px
  );
  pointer-events: none;
}
.cta-band .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-block: clamp(40px, 6vw, 68px);
}
.cta-band h2 { color: #fff; max-width: 20ch; }
.cta-band p { color: rgba(255,255,255,.92); margin-top: 12px; max-width: 48ch; }
.cta-band .btn {
  --btn-bg: #fff;
  --btn-fg: var(--ink);
  border-color: #fff;
}
.cta-band .btn:hover { --btn-bg: var(--ink); --btn-fg: #fff; border-color: var(--ink); }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.5vw, 40px);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.field label .req { color: var(--accent); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  font-size: .98rem;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { min-height: 148px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(242,106,27,.14);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 16px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert {
  padding: 16px 18px;
  border-radius: var(--r-md);
  font-size: .94rem;
  margin-bottom: 24px;
  border: 1px solid transparent;
}
.alert--ok   { background: #eaf7ef; border-color: #bfe3cd; color: #1d6b3c; }
.alert--err  { background: #fdecec; border-color: #f5c4c4; color: #9b2222; }

/* ---------- Contact info blocks ---------- */
.info-list { display: grid; gap: 22px; }
.info {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info__icon {
  width: 44px; height: 44px;
  flex: none;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
}
.info__icon svg { width: 21px; height: 21px; }
.info h3 { font-size: 1rem; }
.info p, .info a { color: var(--muted); font-size: .96rem; text-decoration: none; }
.info a:hover { color: var(--accent); }

/* ---------- Service detail rows ---------- */
.svc-detail { padding-block: clamp(44px, 6vw, 76px); border-bottom: 1px solid var(--line); }
.svc-detail:last-child { border-bottom: 0; }

.tag {
  display: inline-block;
  padding: 6px 13px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-2);
  margin: 0 8px 8px 0;
}

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 44px 22px 0;
  font-weight: 700;
  color: var(--ink);
  position: relative;
  font-size: 1.04rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 8px; top: 50%;
  width: 12px; height: 12px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq details p { color: var(--muted); padding-bottom: 24px; max-width: 78ch; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--muted-2);
  padding-top: clamp(48px, 6vw, 76px);
  font-size: .94rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px var(--gap);
  padding-bottom: 48px;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.footer a { text-decoration: none; transition: color .18s var(--ease); }
.footer a:hover { color: var(--accent); }
.footer .brand__name { color: #fff; }
.footer .brand__tag { color: var(--muted); }
.footer__about p { margin-top: 18px; max-width: 40ch; }
.footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: var(--muted);
}
.footer__bottom a { color: var(--muted); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.max-60 { max-width: 60ch; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Floating mobile call button */
.call-fab {
  display: none;
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 90;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 700px) {
  .call-fab { display: flex; }
  body { padding-bottom: 76px; }
}

/* ---------- Print ---------- */
@media print {
  .header, .topbar, .footer, .cta-band, .call-fab, .hero__actions { display: none !important; }
  body { color: #000; font-size: 12pt; }
  .hero::before { display: none; }
}
