@import url('../fonts/fonts.css');

/* =========================================================
   Digimomo — stylesheet
   1. Tokens          5. Buttons
   2. Reset / base    6. Sections & components
   3. Layout          7. Header & footer
   4. Typography      8. Utilities & motion
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Colour */
  --ink:        #14171f;
  --ink-2:      #333a47;
  --muted:      #5a6472;
  --line:       #e6dfd3;
  --line-soft:  #f0eae0;
  --cream:      #fbf8f3;
  --cream-2:    #f5efe5;
  --white:      #ffffff;

  --brand:      #0f5750;
  --brand-700:  #0a403b;
  --brand-600:  #12655c;
  --brand-300:  #74aca4;
  --brand-50:   #e7f1ef;

  --accent:     #e08a2e;
  --accent-700: #92530f;
  --accent-50:  #fdf2e3;

  --wa:         #128c7e;
  --wa-700:     #0c6c61;

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;

  /* Space */
  --gap: 1.25rem;
  --section-y: clamp(3.5rem, 2.2rem + 5vw, 6.5rem);
  --radius: 14px;
  --radius-lg: 22px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(20, 23, 31, .05), 0 2px 8px rgba(20, 23, 31, .04);
  --shadow-md: 0 2px 4px rgba(20, 23, 31, .05), 0 12px 28px rgba(20, 23, 31, .07);
  --shadow-lg: 0 4px 10px rgba(20, 23, 31, .06), 0 24px 60px rgba(20, 23, 31, .10);

  --maxw: 1140px;
  --measure: 68ch;
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
picture { display: block; }

a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand-700); }

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

button { font: inherit; }

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

::selection { background: var(--accent-50); color: var(--ink); }

/* ---------- 3. Layout ---------- */
.container {
  width: min(100% - 2.5rem, var(--maxw));
  margin-inline: auto;
}
@media (max-width: 480px) {
  .container { width: min(100% - 2rem, var(--maxw)); }
}

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 1.8rem + 3vw, 4.25rem); }
.section--cream { background: var(--cream-2); }
.section--white { background: var(--white); }
.section--ink {
  background: var(--brand-700);
  color: #dcece9;
}
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink a { color: #ffd9a8; }

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }

.stack > * + * { margin-top: 1rem; }

/* ---------- 4. Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.012em;
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.15rem, 1.35rem + 3.3vw, 3.75rem); letter-spacing: -0.022em; }
h2 { font-size: clamp(1.7rem, 1.25rem + 1.9vw, 2.55rem); letter-spacing: -0.018em; }
h3 { font-size: clamp(1.18rem, 1.08rem + .45vw, 1.45rem); }
h4 { font-size: 1.05rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1.1rem; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.08rem, 1.0rem + .45vw, 1.28rem);
  line-height: 1.6;
  color: var(--ink-2);
}

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent-700);
  margin: 0 0 1rem;
}
.section--ink .eyebrow { color: #f0b46a; }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 1.5rem + 1.6vw, 3rem); }
.section-head p:last-child { margin-bottom: 0; }

ul.ticks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  max-width: var(--measure);
}
ul.ticks li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: .6rem;
}
ul.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 1.05rem;
  height: .55rem;
  border-left: 2.5px solid var(--brand);
  border-bottom: 2.5px solid var(--brand);
  transform: rotate(-45deg);
  border-radius: 1px;
}
.section--ink ul.ticks li::before { border-color: #7fc9bf; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 50px;
  padding: .75rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brand-700); color: #fff; box-shadow: var(--shadow-md); }

.btn--accent { background: var(--accent); color: #2b1a05; box-shadow: var(--shadow-sm); }
.btn--accent:hover { background: #cf7b21; color: #2b1a05; box-shadow: var(--shadow-md); }

.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-700); color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--brand-700);
  border-color: rgba(15, 87, 80, .3);
}
.btn--ghost:hover { background: var(--brand-50); border-color: var(--brand); color: var(--brand-700); }

.section--ink .btn--ghost,
.cta-band .btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.section--ink .btn--ghost:hover,
.cta-band .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

.btn--sm { min-height: 42px; padding: .5rem 1.05rem; font-size: .92rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--brand);
}
.textlink::after {
  content: "→";
  transition: transform .18s ease;
}
.textlink:hover::after { transform: translateX(3px); }

/* ---------- 6. Sections & components ---------- */

/* Hero */
.hero {
  position: relative;
  padding-block: clamp(2.75rem, 1.5rem + 6vw, 5.5rem) clamp(3rem, 2rem + 5vw, 6rem);
  background:
    radial-gradient(1200px 520px at 78% -8%, rgba(224, 138, 46, .13), transparent 62%),
    radial-gradient(900px 480px at 8% 8%, rgba(15, 87, 80, .10), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--line);
}
.hero__inner {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 3.75rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.08fr .92fr; }
}
.hero h1 { margin-bottom: .5em; }
.hero__art { position: relative; }
.hero__art img { width: 100%; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .9rem .4rem .6rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.4rem;
}
.badge__dot {
  width: .5rem; height: .5rem; border-radius: 50%;
  background: var(--brand); flex: none;
  margin-left: .25rem;
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card h3 { margin-bottom: .45em; }
.card p { font-size: .98rem; color: var(--muted); }
.card--link:hover, .card--link:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-300);
}
.section--cream .card { border-color: #e9e2d6; }

.card__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand);
  margin-bottom: 1.05rem;
}
.card__icon svg { width: 24px; height: 24px; }
.card__icon--accent { background: var(--accent-50); color: var(--accent-700); }

/* Service detail blocks */
.service {
  display: grid;
  gap: 1.1rem 1.6rem;
  padding: 1.9rem 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr;
  scroll-margin-top: 96px;
}
@media (min-width: 760px) {
  .service { grid-template-columns: 62px 1fr; }
}
.service__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--brand-50);
  color: var(--brand);
}
.service__icon svg { width: 27px; height: 27px; }
.service h3 { margin-bottom: .4em; }
.service p { color: var(--ink-2); }
.service__note {
  font-size: .93rem;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding-left: .9rem;
  margin-top: 1rem;
}

.group-head {
  margin-top: clamp(2.5rem, 2rem + 2vw, 4rem);
  padding-bottom: .25rem;
}
.group-head:first-of-type { margin-top: 0; }
.group-head h2 { margin-bottom: .35em; }
.group-head p { color: var(--muted); }

/* Process / steps */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 780px) {
  .steps { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
}
.steps li {
  counter-increment: step;
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.4rem;
}
.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--font-sans);
  margin-bottom: .85rem;
}
.steps h3 { font-size: 1.05rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; margin-bottom: .35em; }
.steps p { font-size: .93rem; color: var(--muted); margin: 0; }
.section--ink .steps li { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.section--ink .steps li::before { background: var(--accent); color: #2b1a05; }
.section--ink .steps p { color: #c3dbd7; }

/* Measure list (ROI) */
.measure-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .7rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}
.measure-list li {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: .85rem 1rem;
  font-weight: 500;
  color: #eaf5f3;
  font-size: .97rem;
}

/* Split feature */
.split {
  display: grid;
  gap: clamp(1.75rem, 1rem + 3.5vw, 3.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
.split--top { align-items: start; }
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--art-first .split__art { order: -1; }
}
.split__art img { width: 100%; border-radius: var(--radius-lg); }

/* Contact blocks */
.contact-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { margin-bottom: .5em; }
.contact-card address {
  font-style: normal;
  color: var(--ink-2);
  margin-bottom: 1.1rem;
  line-height: 1.6;
}
.contact-card .btn-row { margin-top: 1.1rem; }

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-line:last-child { border-bottom: 0; }
.contact-line__icon {
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--brand-50);
  color: var(--brand);
}
.contact-line__icon svg { width: 19px; height: 19px; }
.contact-line__label {
  display: block;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: .1rem;
}
.contact-line a { font-weight: 600; text-decoration: none; }
.contact-line a:hover { text-decoration: underline; }

/* FAQ */
.faq { max-width: 820px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq details[open] { border-color: var(--brand-300); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 3.2rem 1.15rem 1.35rem;
  position: relative;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 1.35rem;
  top: 1.5rem;
  width: 11px; height: 11px;
  border-right: 2.5px solid var(--brand);
  border-bottom: 2.5px solid var(--brand);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.75rem; }
.faq summary:hover { background: var(--cream); }
.faq .faq__body { padding: 0 1.35rem 1.35rem; }
.faq .faq__body p { font-size: .99rem; }

/* Form */
.form { max-width: 560px; }
.field { margin-bottom: 1.15rem; }
.field label {
  display: block;
  font-weight: 600;
  font-size: .94rem;
  color: var(--ink);
  margin-bottom: .4rem;
}
.field .hint { font-weight: 400; color: var(--muted); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: .75rem .9rem;
  min-height: 48px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15, 87, 80, .13);
  outline: none;
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: none; }
.field .error {
  display: none;
  color: #a3261b;
  font-size: .88rem;
  margin-top: .35rem;
  font-weight: 500;
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea { border-color: #c0392b; }
.field.is-invalid .error { display: block; }

.form__note {
  font-size: .9rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* Notice / callout */
.callout {
  background: var(--accent-50);
  border: 1px solid #f0dcbe;
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  max-width: var(--measure);
}
.callout p { font-size: .97rem; }
.callout p:last-child { margin-bottom: 0; }

/* CTA band */
.cta-band {
  background: var(--brand);
  color: #dff0ed;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 1.4rem + 3vw, 3.4rem);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #c8e2de; }
.cta-band__inner { position: relative; z-index: 1; max-width: 640px; }
.cta-band::before {
  content: "";
  position: absolute;
  right: -60px; top: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(224,138,46,.35), transparent 70%);
}

/* ---------- 7. Header & footer ---------- */
.skip-link {
  position: absolute;
  left: 1rem; top: -70px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: .7rem 1.1rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  font-weight: 600;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 243, .92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(20,23,31,.05);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.brand img { width: 34px; height: 34px; }
.brand span { line-height: 1; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  padding: .55rem .8rem;
  border-radius: 8px;
  font-size: .97rem;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
}
.nav a:hover { background: var(--cream-2); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--brand); font-weight: 600; }

.header-cta { display: inline-flex; gap: .5rem; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .55rem .8rem;
  min-height: 44px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle__bars { position: relative; width: 18px; height: 12px; flex: none; }
.nav-toggle__bars span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5px; }
.nav-toggle__bars span:nth-child(3) { top: 10px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .site-header__menu {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: .75rem 0 1.25rem;
  }
  .site-header__menu.is-open { display: block; }
  .site-header__menu .container { display: flex; flex-direction: column; gap: .15rem; }
  .nav { flex-direction: column; align-items: stretch; gap: .1rem; }
  .nav a { padding: .8rem .75rem; font-size: 1.02rem; border-radius: 10px; }
  .header-cta { flex-direction: column; margin-top: .85rem; }
  .header-cta .btn { width: 100%; }
}
@media (min-width: 941px) {
  .site-header__menu { display: flex !important; align-items: center; gap: 1.25rem; }
  .site-header__menu .container { width: auto; margin: 0; display: flex; align-items: center; gap: 1rem; }
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #a9b1bf;
  padding-block: clamp(2.75rem, 2rem + 3vw, 4rem) 2rem;
  font-size: .95rem;
}
.site-footer h2 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: .13em;
  color: #fff;
  font-size: .8rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer a { color: #d5dbe4; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .55rem; }
.site-footer .brand { color: #fff; }
.site-footer address { font-style: normal; line-height: 1.65; margin-bottom: .9rem; }
.footer-bottom {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: .88rem;
}
.footer-bottom p { margin: 0; max-width: none; }

/* Mobile contact bar */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: .5rem .75rem calc(.5rem + env(safe-area-inset-bottom));
  gap: .5rem;
}
.mobile-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 46px;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
}
.mobile-bar a svg { width: 18px; height: 18px; }
.mobile-bar .mb-call { background: var(--brand); color: #fff; }
.mobile-bar .mb-wa { background: var(--wa); color: #fff; }
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 68px; }
}

/* ---------- 8. Utilities & motion ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.center { text-align: center; }
.center p, .center .section-head { margin-inline: auto; }
.center .btn-row { justify-content: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s cubic-bezier(.22,.61,.36,1), transform .55s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .btn:hover { transform: none; }
}

@media print {
  .site-header, .mobile-bar, .btn-row, .site-footer { display: none !important; }
  body { background: #fff; color: #000; }
}
