/* ==========================================================================
   Dom Digital: global stylesheet.
   Marketing system for window tint shops, built by a shop owner.

   OBSIDIAN & ICE: near-black surfaces, ice-cyan accent, one shared stylesheet
   for every page. Design tokens live in :root so the whole palette can be
   re-skinned from one place.

   Palette rule of thumb: ~90% dark, ~10% cyan. Cyan is an ACCENT (CTAs, links,
   icons, thin rules, key numbers), never a large fill. All body text meets
   WCAG AA on its background; text over photography always sits on a dark
   overlay. The photography is deliberately dark automotive night work, so the
   overlays are heavier than a typical light site would need.
   ========================================================================== */

/* --- Design tokens ------------------------------------------------------- */
:root {
  /* surfaces */
  --bg-primary:  #07080B;   /* near-black, main page background   */
  --bg-surface:  #0D1015;   /* cards, alternating sections        */
  --bg-elevated: #141821;   /* header, footer, hover surfaces     */

  /* ice-cyan accent ramp */
  --accent:       #22D3EE;  /* primary ice cyan                   */
  --accent-light: #8AEDFB;  /* gradient highlight, hover          */
  --accent-dark:  #0E7C93;  /* borders, pressed                   */
  --accent-2:     #6366F1;  /* indigo, gradient partner only      */

  /* text */
  --text-primary: #F5F8FC;  /* headings + body on dark            */
  --text-muted:   #97A0B2;  /* secondary text                     */
  --on-accent:    #04222B;  /* text on cyan fills only            */

  /* derived accents */
  --accent-border:        rgba(34, 211, 238, .22);
  --accent-border-strong: rgba(34, 211, 238, .55);
  --accent-glow:          rgba(34, 211, 238, .32);
  --hairline:             rgba(255, 255, 255, .09);
  --hairline-soft:        rgba(255, 255, 255, .055);
  --accent-grad:          linear-gradient(115deg, var(--accent-light), var(--accent) 55%, var(--accent-2));

  /* semantic (used sparingly: the pricing "what you pay" callouts) */
  --good: #34D399;
  --warn: #FBBF24;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.55), 0 2px 10px rgba(0,0,0,.4);
  --shadow-md: 0 14px 34px rgba(0,0,0,.55);
  --shadow-lg: 0 30px 70px rgba(0,0,0,.65);
  --shadow-accent: 0 10px 30px var(--accent-glow);

  --radius:      12px;
  --radius-lg:   18px;
  --radius-pill: 999px;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 54px);
  --section-pad: clamp(72px, 11vw, 140px);

  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Space Grotesk", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--accent-light); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; color: var(--text-primary); letter-spacing: -.022em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.28rem, 2.2vw, 1.58rem); }
p  { color: var(--text-muted); }
strong { color: var(--text-primary); font-weight: 600; }
ul { padding-left: 1.1rem; }
::selection { background: var(--accent); color: var(--on-accent); }

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

/* --- Layout helpers ------------------------------------------------------ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-pad); position: relative; }
.section--soft { background: var(--bg-surface); }
.section--ink  { background: var(--bg-elevated); }
.section--hair { border-top: 1px solid var(--hairline-soft); }
.section--tight { padding-block: clamp(48px, 7vw, 88px); }
.narrow { max-width: 760px; }
.center { text-align: center; margin-inline: auto; }

/* Eyebrow: short cyan bar + letter-spaced uppercase label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-weight: 600;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--accent); flex: none; }
.center .eyebrow, .eyebrow.is-centered { justify-content: center; }

.lead { font-size: 1.18rem; line-height: 1.65; color: var(--text-muted); }
.small { font-size: .92rem; }
.cy { color: var(--accent); }
.text-grad {
  background: var(--accent-grad); -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius-pill); border: 1px solid transparent;
  font-family: var(--font-body); font-weight: 600; font-size: .97rem; letter-spacing: .01em;
  cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }

.btn--primary { background: var(--accent); color: var(--on-accent); box-shadow: 0 6px 18px rgba(34,211,238,.2); }
.btn--primary:hover { background: var(--accent-light); color: var(--on-accent); box-shadow: var(--shadow-accent); }

.btn--ghost { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--ghost:hover { background: var(--accent); color: var(--on-accent); }

.btn--outline-light { background: rgba(7,8,11,.3); color: var(--text-primary); border-color: rgba(138,237,251,.7); backdrop-filter: blur(2px); }
.btn--outline-light:hover { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }

.btn--light { background: var(--bg-elevated); color: var(--accent); border-color: var(--accent-border); }
.btn--light:hover { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }

.btn--block { width: 100%; }
.btn--lg { padding: 17px 36px; font-size: 1.04rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* --- Header / nav -------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,13,18,.86); backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--hairline-soft);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { background: rgba(11,13,18,.95); box-shadow: 0 10px 30px rgba(0,0,0,.5); }
.site-header.over-hero:not(.is-scrolled) { background: transparent; border-color: transparent; backdrop-filter: none; }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand__logo { width: auto; height: 40px; flex: none; }
@media (max-width: 420px) { .brand__logo { height: 32px; } }

.nav__links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
.nav__links > li { position: relative; }
.nav__links a { display: inline-flex; align-items: center; gap: 5px; padding: 9px 13px; border-radius: 9px; color: var(--text-primary); font-weight: 500; font-size: .94rem; white-space: nowrap; }
.nav__links a:hover { color: var(--accent); }
.nav__links a[aria-current="page"] { color: var(--accent); }
.nav__links .btn { display: none; }  /* mobile-only CTA, revealed in the small-screen menu */

.has-menu > a svg { width: 13px; height: 13px; transition: transform .2s ease; color: var(--accent); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-8px);
  min-width: 296px; background: var(--bg-elevated); border: 1px solid var(--accent-border);
  border-radius: 14px; padding: 9px; list-style: none; margin: 0; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.has-menu:hover .dropdown, .has-menu:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-menu:hover > a svg, .has-menu:focus-within > a svg { transform: rotate(180deg); }
.dropdown a { display: flex; flex-direction: column; gap: 2px; padding: 11px 13px; border-radius: 9px; }
.dropdown a:hover { background: rgba(34,211,238,.08); }
.dropdown a span { font-weight: 600; font-size: .94rem; color: var(--text-primary); }
.dropdown a small { color: var(--text-muted); font-size: .79rem; font-weight: 400; line-height: 1.4; }
.dropdown a:hover span { color: var(--accent); }

.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; color: var(--text-primary); font-weight: 600; font-size: .92rem; white-space: nowrap; }
.nav__phone svg { width: 17px; height: 17px; color: var(--accent); }
.nav__phone:hover { color: var(--accent); }
.nav__cta-phone { display: none; }
.nav__toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--text-primary); }
.nav__toggle svg { width: 28px; height: 28px; }

/* Nav collapses to the burger below 1120px: the desktop row (6 links + phone
   + button) stops fitting before that on most laptops. */
@media (max-width: 1120px) {
  .nav__links {
    position: fixed; inset: 78px 0 auto; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--bg-elevated); border-bottom: 1px solid var(--accent-border);
    padding: 16px var(--gutter) 28px; box-shadow: var(--shadow-lg);
    max-height: calc(100svh - 78px); overflow-y: auto; flex-wrap: wrap;
    transform: translateY(-14px); opacity: 0; visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }
  [data-open="true"] .nav__links { opacity: 1; visibility: visible; transform: none; }
  .nav__links a { padding: 13px 4px; font-size: 1.02rem; border-bottom: 1px solid var(--hairline-soft); border-radius: 0; white-space: normal; }
  .nav__links .btn { display: inline-flex; margin-top: 16px; border-bottom: 0; }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible; min-width: 0;
    background: transparent; border: 0; box-shadow: none; padding: 0 0 6px 14px; margin-top: 2px;
  }
  .dropdown a { padding: 10px 4px; border-bottom: 1px solid var(--hairline-soft); }
  .dropdown a span { font-size: .95rem; font-weight: 500; }
  .has-menu > a svg { display: none; }
  .nav__cta-phone { display: block; }
  .nav__cta-phone a { color: var(--accent); font-weight: 600; }
  .nav__phone, .nav__actions .btn { display: none; }
  .nav__toggle { display: inline-flex; }
}

/* --- Cinematic hero (homepage) ------------------------------------------ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; color: var(--text-primary); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 20s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero__media img { animation: none; } }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,8,11,.93) 0%, rgba(7,8,11,.74) 45%, rgba(7,8,11,.4) 100%),
    linear-gradient(180deg, rgba(7,8,11,.7) 0%, transparent 30%, rgba(7,8,11,.85) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(120px, 20vh, 200px) clamp(80px, 12vh, 120px); }
.hero h1 { font-size: clamp(2.7rem, 6.4vw, 5.4rem); line-height: 1.02; max-width: 17ch; text-shadow: 0 2px 30px rgba(0,0,0,.55); }
.hero__sub { font-size: clamp(1.08rem, 1.6vw, 1.3rem); color: #d5dae2; margin-top: 26px; max-width: 54ch; line-height: 1.62; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 18px 30px; margin-top: 48px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.16); max-width: 660px; }
.hero__trust div { display: flex; align-items: center; gap: 10px; font-size: .91rem; color: #e2e6ec; font-weight: 500; }
.hero__trust svg { width: 20px; height: 20px; color: var(--accent); flex: none; }
.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; color: var(--accent); opacity: .8; animation: bob 2.4s ease-in-out infinite; }
.hero__scroll svg { width: 26px; height: 26px; }
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,9px); } }
@media (prefers-reduced-motion: reduce) { .hero__scroll { animation: none; } }

/* --- Intro / statement block -------------------------------------------- */
.statement { max-width: 940px; }
.statement h2 { font-size: clamp(2rem, 4vw, 3rem); }
.statement p { margin-top: 22px; font-size: 1.14rem; }

/* --- Section heading block ---------------------------------------------- */
.head { max-width: 780px; margin-bottom: clamp(40px, 6vw, 64px); }
.head.center { margin-inline: auto; }
.head h2 { margin-bottom: 4px; }
.head .lead { margin-top: 18px; }

/* --- Grids / cards ------------------------------------------------------ */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-surface); border: 1px solid var(--accent-border); border-radius: var(--radius-lg);
  padding: 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { border-color: var(--accent-border-strong); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  background: rgba(34,211,238,.1); border: 1px solid var(--accent-border); color: var(--accent); flex: none;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .97rem; }

/* Service card = photo header + body, whole card is a link */
.service-card { text-decoration: none; color: inherit; padding: 0; overflow: hidden; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.card__media { display: block; aspect-ratio: 16 / 11; overflow: hidden; position: relative; background: var(--bg-elevated); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.service-card:hover .card__media img { transform: scale(1.07); }
.card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(7,8,11,.6)); }
.card__step {
  position: absolute; left: 16px; top: 16px; z-index: 2;
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(7,8,11,.72); border: 1px solid var(--accent-border-strong); backdrop-filter: blur(6px);
  font-family: var(--font-mono); font-size: .82rem; font-weight: 600; color: var(--accent);
}
.card__body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: 8px; }
.card__body p { font-size: .96rem; }
.card__link { margin-top: auto; padding-top: 18px; font-family: var(--font-body); font-weight: 600; font-size: .89rem; color: var(--accent); display: inline-flex; align-items: center; gap: 7px; letter-spacing: .02em; }
.service-card:hover .card__link { gap: 12px; }
.card__link svg { width: 15px; height: 15px; transition: transform .2s ease; }

/* --- Full-bleed image breaker ------------------------------------------- */
.breaker { position: relative; padding-block: clamp(110px, 20vw, 220px); overflow: hidden; isolation: isolate; }
.breaker__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
@media (min-width: 900px) and (hover: hover) { .breaker__bg { background-attachment: fixed; } }
.breaker::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7,8,11,.74), rgba(7,8,11,.86)); }
.breaker__inner { max-width: 900px; }
.breaker .eyebrow { color: var(--accent-light); }
.breaker h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); text-shadow: 0 2px 24px rgba(0,0,0,.55); }
.breaker p { color: #d5dae2; margin-top: 20px; font-size: 1.1rem; max-width: 62ch; }
.breaker .btn-row { margin-top: 34px; }

/* --- Feature / two-column split ----------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split--reverse .split__media { order: 2; }
/* headings inside a split need the same breathing room the centred .head gets */
.split__body h2 + .lead, .split__body h2 + p { margin-top: 18px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

.media-frame {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--accent-border); background: var(--bg-elevated); box-shadow: var(--shadow-md);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame > iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.media-frame--wide { aspect-ratio: 16 / 9; }

.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--text-primary); font-weight: 600; }
.check-list li svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 2px; }
.check-list li span { color: var(--text-muted); font-weight: 400; display: block; font-size: .94rem; margin-top: 2px; }

/* --- Steps --------------------------------------------------------------- */
.steps { display: grid; gap: 26px; grid-template-columns: repeat(4, 1fr); }
.steps--3 { grid-template-columns: repeat(3, 1fr); }
.steps--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1000px) { .steps--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .steps, .steps--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .steps, .steps--3, .steps--5 { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 12px; border-top: 1px solid var(--accent-border); }
.step__num {
  font-family: var(--font-mono); font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  color: var(--accent); margin-bottom: 12px;
}
.step h3 { font-size: 1.14rem; margin-bottom: 8px; }
.step p { font-size: .94rem; }

/* --- Stats (huge cyan numbers, count-up) -------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stats--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; } .stats--3 { grid-template-columns: 1fr; } }
.stat { text-align: center; padding: 0 8px; }
.stat strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 5.2vw, 3.9rem); line-height: 1; color: var(--accent); letter-spacing: -.03em; }
.stat span { font-size: .79rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-top: 14px; display: block; }
.stats--bordered .stat { border-left: 1px solid var(--hairline); }
.stats--bordered .stat:first-child { border-left: 0; }
@media (max-width: 700px) { .stats--bordered .stat:nth-child(odd) { border-left: 0; } }

/* --- Testimonials -------------------------------------------------------- */
.quote-item { background: var(--bg-surface); border: 1px solid var(--accent-border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: border-color .25s ease; }
.quote-item:hover { border-color: var(--accent-border-strong); }
.quote-item .stars { display: flex; gap: 3px; margin-bottom: 14px; }
.quote-item .stars svg { width: 18px; height: 18px; color: var(--accent); }
.quote-item blockquote { margin: 0; font-size: 1.03rem; color: var(--text-primary); line-height: 1.55; }
.quote-item figcaption { margin-top: 18px; font-size: .87rem; color: var(--text-muted); }
.quote-item figcaption b { color: var(--accent); font-weight: 600; }
/* placeholder testimonial: we ship NO fabricated reviews */
.quote-item--ph { align-items: flex-start; justify-content: center; text-align: left; border-style: dashed; }
.quote-item--ph .ph-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .71rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.quote-item--ph .ph-badge svg { width: 15px; height: 15px; }
.quote-item--ph p { font-size: .97rem; color: var(--text-muted); }

/* --- Chips --------------------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 24px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: var(--radius-pill); background: rgba(34,211,238,.07); border: 1px solid var(--accent-border); color: var(--text-primary); font-weight: 500; font-size: .91rem; }
.chip svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

/* --- FAQ ----------------------------------------------------------------- */
.faq { max-width: 880px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--accent-border); border-radius: var(--radius); background: var(--bg-surface); overflow: hidden; transition: border-color .2s ease; }
.faq-item[open] { border-color: var(--accent-border-strong); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 24px; font-family: var(--font-body); font-weight: 600;
  font-size: 1.03rem; color: var(--text-primary); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; width: 12px; height: 12px; flex: none; border-right: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent);
  transform: rotate(45deg); transition: transform .2s ease; margin-top: -4px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 3px; }
.faq-item summary:hover { color: var(--accent); }
.faq-item .faq-body { padding: 0 24px 22px; }
.faq-item .faq-body p { margin: 0 0 14px; color: var(--text-muted); }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* --- CTA band ------------------------------------------------------------ */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--bg-surface); border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg); padding: clamp(44px, 6vw, 80px); text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 140% at 50% -10%, rgba(34,211,238,.13), transparent 60%); pointer-events: none; }
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.cta-band p { color: var(--text-muted); max-width: 58ch; margin-inline: auto; margin-top: 16px; font-size: 1.08rem; }
.cta-band .btn-row { margin-top: 34px; justify-content: center; }

/* --- Forms --------------------------------------------------------------- */
.quote-card {
  background: var(--bg-surface); color: var(--text-primary); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: clamp(26px, 3vw, 38px); border: 1px solid var(--accent-border);
}
.quote-card h2 { font-size: clamp(1.55rem, 2.4vw, 1.95rem); }
.quote-card p.small { font-size: .92rem; margin-top: 6px; color: var(--text-muted); }
.form-field { margin-top: 16px; }
.form-field label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 7px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; font: inherit; font-size: .96rem; color: var(--text-primary);
  padding: 13px 15px; border: 1px solid var(--hairline); border-radius: 11px; background: var(--bg-primary);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.form-field select option { color: #111; }
.form-field textarea { min-height: 112px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #626b7c; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-note { font-size: .82rem; color: var(--text-muted); margin-top: 14px; text-align: center; }

/* SMS consent (A2P 10DLC). Small but must stay legible: carriers review this.
   Do not drop below .78rem. */
.consent { border: 1px solid var(--hairline); border-radius: 12px; padding: 16px 16px 5px; margin-top: 18px; background: var(--bg-primary); }
.consent legend { font-size: .79rem; font-weight: 600; color: var(--text-primary); padding: 0 6px; font-family: var(--font-body); }
.consent__item { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; cursor: pointer; }
.consent__item input[type="checkbox"] { margin: 3px 0 0; width: 16px; height: 16px; flex: none; accent-color: var(--accent); cursor: pointer; }
.consent__item span { font-size: .78rem; line-height: 1.55; color: var(--text-muted); }
.consent__links { font-size: .78rem; margin-top: 11px; color: var(--text-muted); }
.consent__links a { font-weight: 600; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-status { margin-top: 16px; padding: 13px 15px; border-radius: 11px; font-size: .92rem; font-weight: 500; display: none; }
.form-status.is-ok { display: block; background: rgba(34,211,238,.12); color: var(--accent-light); border: 1px solid var(--accent-border); }

/* --- Trust strip --------------------------------------------------------- */
.strip { background: var(--bg-elevated); border-block: 1px solid var(--hairline); }
.strip__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 44px; padding-block: 24px; text-align: center; }
.strip__row div { display: inline-flex; align-items: center; gap: 10px; font-weight: 500; font-size: .91rem; color: var(--text-muted); }
.strip__row svg { width: 20px; height: 20px; color: var(--accent); flex: none; }

/* --- Breadcrumbs --------------------------------------------------------- */
.crumbs { font-size: .84rem; color: var(--text-muted); padding-block: 16px; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.crumbs li { display: flex; align-items: center; gap: 8px; }
.crumbs li::after { content: "/"; color: var(--hairline); }
.crumbs li:last-child::after { content: none; }
.crumbs a { color: var(--text-muted); }
.crumbs a:hover { color: var(--accent); }
.crumbs [aria-current] { color: var(--text-primary); font-weight: 500; }

/* --- Subhero (inner page intro) ----------------------------------------- */
.subhero { position: relative; overflow: hidden; background: var(--bg-elevated); color: var(--text-primary); isolation: isolate; }
.subhero__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.subhero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7,8,11,.72), rgba(7,8,11,.9)), linear-gradient(90deg, rgba(7,8,11,.66), rgba(7,8,11,.32)); }
.subhero:not(.subhero--img)::after { background: radial-gradient(120% 140% at 100% 0%, rgba(34,211,238,.1), transparent 55%); }
.subhero__inner { position: relative; z-index: 1; padding-block: clamp(64px, 10vw, 128px); max-width: 840px; }
.subhero h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); }
.subhero p { color: #d5dae2; font-size: 1.13rem; margin-top: 18px; max-width: 62ch; }
.subhero .btn-row { margin-top: 30px; }
.subhero .crumbs { color: var(--text-muted); padding-top: 0; }
.subhero .crumbs a { color: #c8cedb; }
.subhero .crumbs a:hover { color: var(--accent); }
.subhero .crumbs li::after { color: rgba(255,255,255,.25); }
.subhero .crumbs [aria-current] { color: #fff; }

/* --- Prose (rich text sections) ----------------------------------------- */
.prose h2 { margin-top: 8px; font-size: clamp(1.7rem, 3.2vw, 2.3rem); }
.prose h3 { margin-top: 38px; margin-bottom: 8px; font-size: clamp(1.2rem, 2vw, 1.45rem); }
.prose h4 { margin-top: 28px; margin-bottom: 6px; font-size: 1.05rem; color: var(--accent); font-family: var(--font-body); letter-spacing: .01em; }
.prose p { margin-top: 16px; color: var(--text-muted); }
.prose ul, .prose ol { margin-top: 16px; display: grid; gap: 10px; }
.prose li { color: var(--text-muted); }
.prose li::marker { color: var(--accent); }
.prose strong { color: var(--text-primary); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose > *:first-child { margin-top: 0; }

/* --- Sidebar layout ------------------------------------------------------ */
.layout-aside { display: grid; grid-template-columns: 1.6fr .9fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .layout-aside { grid-template-columns: 1fr; } }
.sticky-box { position: sticky; top: 100px; }
@media (max-width: 900px) { .sticky-box { position: static; } }
.aside-card { background: var(--bg-surface); border: 1px solid var(--accent-border); border-radius: var(--radius-lg); padding: 30px; }
.aside-card h3 { font-size: 1.28rem; }
.aside-card p { font-size: .93rem; margin-top: 10px; color: var(--text-muted); }
.aside-card .btn { margin-top: 14px; }
.aside-card hr { border: 0; border-top: 1px solid var(--hairline); margin: 22px 0; }
.aside-contact { display: grid; gap: 12px; font-size: .91rem; }
.aside-contact a { display: flex; align-items: center; gap: 11px; color: var(--text-primary); font-weight: 500; }
.aside-contact a:hover { color: var(--accent); }
.aside-contact svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* ==========================================================================
   Dom Digital specific components
   ========================================================================== */

/* --- Price block --------------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } }

.tier {
  position: relative; overflow: hidden;
  background: var(--bg-surface); border: 1px solid var(--accent-border-strong);
  border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 46px); box-shadow: var(--shadow-md);
}
.tier::before { content: ""; position: absolute; inset: 0; background: radial-gradient(110% 130% at 0% 0%, rgba(34,211,238,.11), transparent 55%); pointer-events: none; }
.tier > * { position: relative; }
.tier__label { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.tier__price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.tier__price b { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 4.6rem); line-height: 1; color: var(--text-primary); letter-spacing: -.035em; font-weight: 700; }
.tier__price span { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.tier__sub { margin-top: 14px; font-size: 1.03rem; }
.tier hr { border: 0; border-top: 1px solid var(--hairline); margin: 26px 0; }

/* the two-line "what you actually pay" breakdown */
.cost-split { display: grid; gap: 14px; margin-top: 4px; }
.cost-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; border-radius: var(--radius); background: var(--bg-primary); border: 1px solid var(--hairline); }
.cost-row__amt { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--accent); flex: none; min-width: 4.6em; letter-spacing: -.02em; }
.cost-row__body b { display: block; font-size: .97rem; color: var(--text-primary); }
.cost-row__body span { display: block; font-size: .87rem; color: var(--text-muted); margin-top: 3px; line-height: 1.5; }
.cost-total { border-color: var(--accent-border-strong); background: rgba(34,211,238,.06); }

/* --- Deliverables checklist (big, numbered) ------------------------------ */
.deliver { display: grid; gap: 16px; counter-reset: d; }
.deliver__item {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  padding: 22px 24px; border-radius: var(--radius); background: var(--bg-surface);
  border: 1px solid var(--hairline); transition: border-color .2s ease, transform .2s ease;
}
.deliver__item:hover { border-color: var(--accent-border-strong); transform: translateX(3px); }
.deliver__item::before {
  counter-increment: d; content: counter(d, decimal-leading-zero);
  font-family: var(--font-mono); font-size: .82rem; font-weight: 600; color: var(--accent);
  padding-top: 3px; letter-spacing: .06em;
}
.deliver__item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.deliver__item p { font-size: .94rem; margin: 0; }

/* --- Timeline (the founder story / onboarding weeks) --------------------- */
.timeline { display: grid; gap: 0; margin-top: 8px; }
.tl-item { display: grid; grid-template-columns: 132px 1fr; gap: 28px; padding: 26px 0; border-top: 1px solid var(--hairline); }
.tl-item:last-child { border-bottom: 1px solid var(--hairline); }
@media (max-width: 640px) { .tl-item { grid-template-columns: 1fr; gap: 8px; } }
.tl-item__when { font-family: var(--font-mono); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); padding-top: 4px; }
.tl-item__body h3 { font-size: 1.16rem; margin-bottom: 8px; }
.tl-item__body p { font-size: .96rem; }

/* --- Callout ------------------------------------------------------------- */
.callout {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start;
  margin-top: 28px; padding: 22px 24px; border-radius: var(--radius);
  background: rgba(34,211,238,.06); border: 1px solid var(--accent-border);
}
.callout svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 3px; }
.callout p { margin: 0; font-size: .96rem; }
.callout p + p { margin-top: 10px; }
.callout b { color: var(--text-primary); }
.callout--warn { background: rgba(251,191,36,.06); border-color: rgba(251,191,36,.3); }
.callout--warn svg { color: var(--warn); }

/* --- Comparison table ---------------------------------------------------- */
.table-wrap { overflow-x: auto; margin-top: 24px; -webkit-overflow-scrolling: touch; }
.ptable { width: 100%; border-collapse: collapse; font-size: .95rem; border: 1px solid var(--accent-border); border-radius: var(--radius); overflow: hidden; min-width: 520px; }
.ptable th, .ptable td { text-align: left; padding: 15px 18px; border-bottom: 1px solid var(--hairline); vertical-align: top; }
.ptable thead th { background: var(--bg-elevated); color: var(--accent); font-family: var(--font-body); font-weight: 600; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.ptable tbody tr { background: var(--bg-surface); }
.ptable tbody tr:nth-child(even) { background: var(--bg-primary); }
.ptable tbody td { color: var(--text-muted); }
.ptable tbody td:first-child { font-weight: 600; color: var(--text-primary); }
.ptable caption { caption-side: bottom; font-size: .8rem; color: var(--text-muted); padding-top: 12px; text-align: left; }

/* --- Booking embed (GoHighLevel calendar) -------------------------------- */
/* The GHL widget posts its own height back to the parent and form_embed.js
   resizes the iframe. min-height keeps the card from collapsing to nothing
   while the widget boots, or if the script is blocked. */
.embed-card {
  background: var(--bg-surface); border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg); padding: clamp(14px, 2vw, 22px); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.embed-card iframe { width: 100%; border: 0; display: block; min-height: 720px; border-radius: var(--radius); background: transparent; }
@media (max-width: 640px) { .embed-card iframe { min-height: 820px; } }
.embed-fallback { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--hairline); font-size: .88rem; color: var(--text-muted); text-align: center; }

/* --- Illustrative UI mockups (NOT screenshots) --------------------------- */
/* Hand-built in CSS so nothing here can be mistaken for a real screenshot of
   a real business. Every name shown is a generic placeholder. */
.mock {
  background: var(--bg-primary); border: 1px solid var(--hairline);
  border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow-md); font-size: .88rem;
}
.mock__bar { display: flex; align-items: center; gap: 7px; padding-bottom: 14px; border-bottom: 1px solid var(--hairline); margin-bottom: 14px; }
.mock__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--hairline); flex: none; }
.mock__title { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-left: 6px; font-weight: 600; }

/* map-pack style ranked list */
.mock-rank { display: grid; gap: 10px; }
.mock-rank li { display: grid; grid-template-columns: auto 1fr auto; gap: 13px; align-items: center; padding: 13px 14px; border-radius: 10px; background: var(--bg-surface); border: 1px solid var(--hairline); list-style: none; }
.mock-rank li.is-you { border-color: var(--accent-border-strong); background: rgba(34,211,238,.07); }
.mock-rank__pin { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: var(--bg-elevated); color: var(--text-muted); font-family: var(--font-mono); font-size: .76rem; font-weight: 600; flex: none; }
.mock-rank li.is-you .mock-rank__pin { background: var(--accent); color: var(--on-accent); }
.mock-rank__name { font-weight: 600; color: var(--text-primary); font-size: .93rem; }
.mock-rank__meta { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }
.mock-rank__stars { color: var(--accent); font-size: .8rem; letter-spacing: .06em; white-space: nowrap; }
.mock-rank ul { padding: 0; margin: 0; }

/* phone-shaped CRM mock */
.mock-phone { max-width: 300px; margin-inline: auto; border-radius: 30px; padding: 14px; background: var(--bg-elevated); border: 1px solid var(--hairline); box-shadow: var(--shadow-lg); }
.mock-phone__screen { background: var(--bg-primary); border-radius: 20px; padding: 16px 14px; display: grid; gap: 10px; }
.mock-msg { padding: 11px 13px; border-radius: 13px; font-size: .84rem; line-height: 1.45; max-width: 88%; }
.mock-msg--in { background: var(--bg-surface); border: 1px solid var(--hairline); color: var(--text-muted); border-bottom-left-radius: 4px; }
.mock-msg--out { background: rgba(34,211,238,.14); border: 1px solid var(--accent-border); color: var(--text-primary); margin-left: auto; border-bottom-right-radius: 4px; }
.mock-msg__tag { display: block; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 5px; font-weight: 600; }

/* stat tiles inside a mock */
.mock-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-tile { padding: 14px 12px; border-radius: 10px; background: var(--bg-surface); border: 1px solid var(--hairline); text-align: center; }
.mock-tile b { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--accent); line-height: 1.1; }
.mock-tile span { display: block; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; }

/* --- Playbook: table of contents ---------------------------------------- */
.toc { background: var(--bg-surface); border: 1px solid var(--accent-border); border-radius: var(--radius-lg); padding: 28px 30px; }
.toc h2 { font-size: 1.1rem; font-family: var(--font-body); letter-spacing: .04em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.toc ol { margin: 0; padding-left: 1.25rem; display: grid; gap: 11px; }
.toc li { color: var(--text-muted); font-size: .95rem; }
.toc li::marker { color: var(--accent); font-family: var(--font-mono); font-size: .85rem; }
.toc a { color: var(--text-primary); font-weight: 500; }
.toc a:hover { color: var(--accent); }

/* --- Blog ---------------------------------------------------------------- */
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin-top: 20px; font-size: .87rem; color: var(--text-muted); }
.post-meta svg { width: 15px; height: 15px; color: var(--accent); vertical-align: -2px; margin-right: 6px; }
.post-body { max-width: 760px; }
.post-body h2 { margin-top: 48px; }
.post-body h2:first-child { margin-top: 0; }
.post-body h3 { margin-top: 34px; }
.post-body p, .post-body ul, .post-body ol { margin-top: 16px; }
.post-body ul, .post-body ol { display: grid; gap: 9px; }

/* --- Footer -------------------------------------------------------------- */
.site-footer { background: var(--bg-elevated); color: var(--text-muted); padding-block: 68px 32px; font-size: .92rem; border-top: 1px solid var(--accent-border); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand { display: inline-flex; align-items: center; }
.footer__brand img, .footer__brand svg { width: auto; height: 42px; }
.site-footer p { color: var(--text-muted); margin-top: 16px; max-width: 38ch; }
.footer__col h4 { color: var(--accent); font-size: .77rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-body); }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer__col a { color: var(--text-muted); }
.footer__col a:hover { color: var(--accent); }
.footer__contact { display: grid; gap: 13px; }
.footer__contact a, .footer__contact address, .footer__contact div { display: flex; gap: 12px; align-items: flex-start; color: var(--text-muted); font-style: normal; }
.footer__contact a:hover { color: var(--accent); }
.footer__contact svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 3px; }
.footer__bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--hairline); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: var(--text-muted); font-size: .83rem; }
.footer__bottom a { color: var(--text-muted); }
.footer__bottom a:hover { color: var(--accent); }
.footer__disclaimer { margin-top: 18px; font-size: .78rem; line-height: 1.6; color: #6d768a; max-width: none; }

/* --- Utilities / reveal animation --------------------------------------- */
/* Content only ever starts hidden when we are sure JS is running and can put
   it back (the inline snippet in <head> sets .js). With JS off, blocked or
   broken, the .js class is missing or .reveal-ready is set, so every reveal
   element -- and every photo inside one -- paints normally. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.js .reveal.is-in,
.js.reveal-ready .reveal { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--accent); color: var(--on-accent); padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 200; font-weight: 600; }
.skip-link:focus { left: 0; }

/* --- Brand lockup -------------------------------------------------------- */
/* Mark is inline SVG, wordmark is real text: it inherits the page font, stays
   crisp at any size, and needs no separate image request. */
.brand { gap: 11px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__word {
  font-family: var(--font-display); font-weight: 700; font-size: 1.22rem;
  letter-spacing: -.03em; color: var(--text-primary); white-space: nowrap; line-height: 1;
}
.brand__word b { color: var(--accent); font-weight: 700; }
.brand:hover .brand__word { color: var(--text-primary); }
@media (max-width: 420px) { .brand__mark { width: 28px; height: 28px; } .brand__word { font-size: 1.06rem; } }
.footer__brand .brand__mark { width: 38px; height: 38px; }
.footer__brand .brand__word { font-size: 1.3rem; }
