/* ================================================================
   grafeio.IT — Bright Precision
   Syne (headings) · JetBrains Mono (code/accents) · DM Sans (body)
   Palette: white content · original CI gold (#d4af37) + navy (#26426c)
   Navbar stays the original dark chrome — brightening is scoped to
   the content area only. See --gold-ink below for why.
   Signature: open corner-bracket "viewfinder" frame — echoes the
   </grafeio.IT> logo and the icon set's own bracket motif.
   ================================================================ */

:root {
  --bg:          #ffffff;
  --bg-surface:  #f4f6fa;
  --bg-card:     #ffffff;
  --bg-card-h:   #eef1f6;

  /* CI brand colors — exact values, unchanged. Use these for fills,
     borders, icons, and large text (>= ~24px) where WCAG's large-text
     3:1 bar applies. */
  --gold:        #d4af37;
  --gold-bright: #e8c84a;
  /* --gold-dim: near the brightest version of --gold's own hue/
     saturation that still clears the 3:1 large-text contrast bar on
     white (3.11:1, computed — the floor is 3:1). This is close to the
     ceiling; pushing lighter drops below 3:1, pushing more saturated
     cuts blue and reads more orange/bronze than gold. The glow below
     adds richness/brightness on top without touching the text color's
     contrast. */
  --gold-dim:    #b08e2a;
  --gold-glow:   rgba(212,175,55,.18);
  --navy:        #26426c;
  --navy-glow:   rgba(38,66,108,.12);

  /* --gold-ink: the CI gold darkened for normal-size TEXT on the white
     content background — raw --gold is only 2.1:1 on white (fails even
     the lenient 3:1 large-text bar), so small labels/links/tags need
     this instead to stay legible. Never used for fills/borders/large
     text — those keep the real brand gold. */
  --gold-ink:    #8a6417;

  --navy-deep:   #0f1f38;
  --text:        #0f1f38;
  --text-muted:  #5b6472;
  --border:      #dfe4ea;
  --border-h:    rgba(38,66,108,.35);
  --radius:      6px;
  --max-w:       1100px;

  --font-head:      'Syne', sans-serif;
  --font-tech:      'Oxanium', sans-serif;
  --font-mono:      'JetBrains Mono', monospace;
  --font-body:      'DM Sans', sans-serif;

  --hero-type-size: clamp(2.6rem, 6vw, 4.4rem);
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .15s; }
a:hover { color: var(--gold-ink); }

/* ── Layout ─────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.75rem; }
.section    { padding: 6.5rem 0; }
.section--alt { background: var(--bg-surface); }

/* ── Scroll-reveal ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Typography ─────────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; color: var(--navy); }
.mono { font-family: var(--font-mono); }

.section-header {
  margin-bottom: 3.5rem;
}
.section-header__label {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-ink);
  display: block;
  margin-bottom: .6rem;
}
.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: .5rem;
}
.section-header p {
  color: var(--text-muted);
  max-width: 520px;
  font-size: 1.03rem;
}

/* ── Tags ───────────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .4px;
  padding: .22em .7em;
  border-radius: 3px;
  background: rgba(212,175,55,.10);
  color: var(--gold-ink);
  border: 1px solid rgba(212,175,55,.35);
}
.tag--navy {
  background: rgba(38,66,108,.06);
  color: var(--navy);
  border-color: rgba(38,66,108,.3);
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .5px;
  padding: .75em 1.75em;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: background .15s, color .15s, box-shadow .15s, transform .12s;
  text-decoration: none;
}
.btn-primary {
  background: var(--navy);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--navy-deep);
  color: #ffffff;
  box-shadow: 0 4px 18px var(--navy-glow);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border-h);
}
.btn-outline:hover {
  background: var(--navy-glow);
  color: var(--navy-deep);
  border-color: var(--navy);
  transform: translateY(-1px);
}

/* ── Navbar ─────────────────────────────────────────────────────── */
/* Deliberately unchanged from the dark theme — the redesign brightens
   the content area only, not the chrome. Colors here are hardcoded
   rather than pulled from the shared tokens above, since --text/
   --border etc. now mean "for the white content area" and would be
   close to invisible against this dark bar. */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,13,19,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,175,55,.12);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.navbar__logo {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: #dde4ef;
  letter-spacing: -.3px;
  display: flex;
  align-items: center;
}
.logo-bracket {
  color: #838fa5;
  transition: color .2s;
}
.logo-slash,
.logo-it {
  color: var(--gold);
  transition: color .2s, text-shadow .2s;
}
.logo-name i {
  font-style: normal;
  color: #dde4ef;
  transition: color .2s;
}
.navbar__logo:hover .logo-slash,
.navbar__logo:hover .logo-it {
  color: var(--gold-bright);
  text-shadow: 0 0 10px rgba(212,175,55,.6), 0 0 22px rgba(212,175,55,.25);
}
.navbar__logo:hover .logo-bracket { color: #dde4ef; }
.navbar__logo:hover .logo-name i  { color: #fff; }

.navbar__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.navbar__links a {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #838fa5;
  transition: color .15s;
}
.navbar__links a:hover,
.navbar__links a.active { color: var(--gold); }
.navbar__cta { margin-left: 1rem; }
/* Restores the original gold-filled CTA — scoped so it doesn't affect
   .btn-primary elsewhere, which is navy in the (brightened) content
   area. Also naturally wins over .navbar__links a's higher specificity
   (class+element vs. this rule's two classes), so the button no longer
   silently inherits the muted nav-link color for its text either. */
.navbar__cta .btn-primary {
  background: var(--gold);
  color: #0a0e14;
}
.navbar__cta .btn-primary:hover {
  background: var(--gold-bright);
  color: #0a0e14;
  box-shadow: 0 0 24px var(--gold-glow);
}

/* ── Language switcher ──────────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  margin-left: 1.25rem;
  border: 1px solid rgba(212,175,55,.12);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-btn {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: .32em .65em;
  color: #838fa5;
  text-decoration: none;
  transition: color .15s, background .15s;
  line-height: 1;
  border: none;
}
.lang-btn + .lang-btn {
  border-left: 1px solid rgba(212,175,55,.12);
}
.lang-btn:hover {
  color: #dde4ef;
  background: rgba(255,255,255,.05);
}
.lang-btn.active {
  background: var(--gold);
  color: #090d13;
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 8rem 0 7rem;
  overflow: hidden;
  background: var(--bg);
}

/* very faint depth wash — no noise/scanline tricks on a bright surface */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(38,66,108,.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 200px;
  align-items: center;
  gap: 3rem;
  padding: 2.5rem 2.75rem;
}

/* signature: open corner-bracket "viewfinder" frame around the hero —
   echoes the </grafeio.IT> logo and the icon set's bracket device.
   Four real elements (not just ::before/::after) since a single element
   only gets two pseudo-elements. */
.hero__corner {
  position: absolute;
  width: 52px;
  height: 52px;
  border: 3px solid var(--gold);
  filter: drop-shadow(0 0 10px var(--gold-glow));
  pointer-events: none;
}
.hero__corner--tl {
  top: 0; left: 0;
  border-right: none;
  border-bottom: none;
}
.hero__corner--tr {
  top: 0; right: 0;
  border-left: none;
  border-bottom: none;
}
.hero__corner--br {
  bottom: 0; right: 0;
  border-left: none;
  border-top: none;
}
.hero__corner--bl {
  bottom: 0; left: 0;
  border-right: none;
  border-top: none;
}

.hero__prompt {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .3px;
  margin-top: 1.6rem;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5em;
}
.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  line-height: 1.15;
  margin-bottom: 1.4rem;
}
.hero__h1-label {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(.95rem, 1.8vw, 1.2rem);
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: .25em;
}
.hero__typed-line {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}
.hero h1 em {
  font-family: var(--font-tech);
  font-style: oblique 14deg;
  font-weight: 400;
  font-size: var(--hero-type-size);
  /* large enough (41px+) that WCAG's large-text 3:1 bar applies rather
     than 4.5:1 — gold-dim clears that; raw --gold (2.1:1) doesn't.
     text-shadow is decorative (not subject to the contrast bar) —
     it layers true-gold warmth on top without touching legibility. */
  color: var(--gold-dim);
  text-shadow:
    0 0 4px rgba(212,175,55,.5),
    0 0 18px rgba(212,175,55,.4),
    0 0 46px rgba(212,175,55,.3);
  letter-spacing: 0px;
}
.hero h1 .cursor {
  display: inline-block;
  width: 3px;
  height: calc(var(--hero-type-size) * 0.78);
  background: var(--gold-dim);
  margin-left: 3px;
  margin-bottom: .05em;
  transform: skewX(-14deg);
  animation: cursor-blink .75s step-end infinite;
}
@keyframes cursor-blink { 50% { opacity: 0; } }

.hero__sub {
  font-size: 1.06rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2.2rem;
  line-height: 1.75;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* stat badge */
.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stat-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.1rem 1.4rem;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.stat-badge:hover {
  border-color: rgba(212,175,55,.5);
  box-shadow: 0 4px 20px var(--gold-glow);
}
.stat-badge__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-dim); /* large text — 3:1 bar, gold-dim clears it */
  line-height: 1;
}
.stat-badge__label {
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .3px;
  margin-top: .35rem;
  line-height: 1.4;
}

/* ── Cards ──────────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .35;
  transition: opacity .25s;
}
.card:hover {
  border-color: var(--border-h);
  box-shadow: 0 4px 24px var(--navy-glow);
  transform: translateY(-3px);
}
.card:hover::before { opacity: 1; }

.card__icon {
  font-size: 1.75rem;
  margin-bottom: .9rem;
  display: block;
}
.card__icon--img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
}
.card__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.card__summary {
  font-size: .94rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: 1rem;
}
.card__meta {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--gold-ink);
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ── Services detail list ───────────────────────────────────────── */
.service-list { display: flex; flex-direction: column; gap: 1.5rem; }

.service-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.service-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  opacity: .35;
  transition: opacity .25s;
}
.service-item:hover {
  border-color: var(--border-h);
  box-shadow: 0 4px 24px var(--navy-glow);
}
.service-item:hover::before { opacity: 1; }

.service-item__icon {
  font-size: 2.2rem;
  display: flex;
  align-items: flex-start;
  padding-top: .15rem;
}
.service-item__icon--img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
}
.service-item__title {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .45rem;
}
.service-item__body {
  font-size: .96rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-item__body p { margin-bottom: .4rem; }
.service-item__body ul { padding-left: 1.1em; }
.service-item__body li { margin-bottom: .2rem; }

/* ── About section ──────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}

.about__portrait-wrap {
  position: relative;
  flex-shrink: 0;
}
.about__portrait-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, transparent 50%, var(--gold-dim) 100%);
  z-index: 0;
  opacity: .4;
}
.about__portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 12px;
  display: block;
  filter: grayscale(1) contrast(1.05);
}

.about__name {
  font-family: var(--font-body);
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .2rem;
}
.about__role {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 1.5rem;
}
.about__bio {
  font-size: 1.03rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about__meta-label {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .6rem;
}
.about__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.5rem; }

/* ── About aside: "why grafeio" ───────────────────────────────────── */
.about__aside {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  align-items: center;
}
.about__aside-img {
  width: 100%;
  aspect-ratio: 16 / 15;
  object-fit: cover;
  object-position: 50% 35%;
  border-radius: 10px;
}
.about__aside-label {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-ink);
  display: block;
  margin-bottom: .6rem;
}
.about__aside-text {
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.75;
}

@media (max-width: 860px) {
  .about {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about__portrait-wrap { max-width: 280px; }
  .about__aside {
    grid-template-columns: 1fr;
  }
  .about__aside-img { max-width: 420px; }
}

/* ── CTA banner ─────────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  text-align: center;
  padding: 5.5rem 1.5rem;
  overflow: hidden;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212,175,55,.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: .6rem;
}
.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.02rem;
}

/* ── Page hero (inner pages) ────────────────────────────────────── */
.page-hero {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0 3.5rem;
}
.page-hero__label {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-ink);
  display: block;
  margin-bottom: .7rem;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: .5rem;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1.06rem;
  max-width: 560px;
}

/* ── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2.25rem 0;
  font-size: .82rem;
  color: var(--text-muted);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer a { color: var(--gold-ink); }
.footer a:hover { color: var(--gold-dim); }

/* ── "More" link row ────────────────────────────────────────────── */
.more-row {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Forms ──────────────────────────────────────────────────────── */
.form-input,
.form-textarea {
  display: block;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
  padding: .85em 1em;
  transition: border-color .15s, box-shadow .15s;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--border-h);
  box-shadow: 0 0 0 3px var(--navy-glow);
}
.form-textarea {
  min-height: 260px;
  line-height: 1.6;
  resize: vertical;
}
.form-error {
  font-family: var(--font-mono);
  font-size: .85rem;
  color: #a83b23;
  background: rgba(168,59,35,.06);
  border: 1px solid rgba(168,59,35,.25);
  border-radius: var(--radius);
  padding: .85em 1em;
  margin-bottom: 1.5rem;
  white-space: pre-wrap;
}

/* ── Loading overlay ────────────────────────────────────────────── */
/* Deliberately stays dark — a dimming scrim reads correctly regardless
   of page theme, and focuses attention on the spinner. */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,31,56,.90);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  z-index: 1000;
}
.loading-overlay.active { display: flex; }
.loading-spinner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.25);
  border-top-color: var(--gold-bright);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-overlay__text {
  font-family: var(--font-mono);
  font-size: .85rem;
  letter-spacing: .5px;
  color: rgba(255,255,255,.8);
}

/* ── Cookie consent banner ─────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: var(--navy-deep);
  border-top: 1px solid rgba(212,175,55,.2);
  padding: 1.1rem 1.5rem;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  color: rgba(255,255,255,.82);
  font-size: .85rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 0;
}
.cookie-banner__actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}
.cookie-banner .btn-outline {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.3);
}
.cookie-banner .btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
  color: #fff;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: row; justify-content: flex-start; flex-wrap: wrap; }
  .stat-badge { min-width: 100px; flex: 1 1 100px; }
  .navbar__links { display: none; }
  .service-item { grid-template-columns: 1fr; gap: .75rem; }
  .service-item__icon { font-size: 1.6rem; }
}
