/* =====================================================================
   Pretorius Digital — Garden Route Coastal Professional
   Design system: navy + ocean on warm paper. Montserrat + Source Sans 3.
   ===================================================================== */

:root {
  /* Palette */
  --navy:        #1A2E5E;
  --navy-800:    #14203D;
  --ocean:       #2B7FE8;
  --ocean-deep:  #1E5FBF;   /* link / small text on light — passes 4.5:1 */
  --paper:       #F5F1EC;
  --paper-2:     #EFE9E1;
  --sand:        #E7DDCB;
  --ink:         #14203D;   /* body text */
  --ink-soft:    #46536E;   /* muted body */
  --white:       #FFFFFF;
  --wa-green:    #25D366;
  --wa-green-d:  #128C4A;

  /* Type */
  --f-head: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing / radius / shadow */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(26,46,94,.06);
  --shadow-md: 0 12px 30px rgba(26,46,94,.10);
  --shadow-lg: 0 24px 60px rgba(26,46,94,.16);
  --container: 1120px;
  --nav-h: 76px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* -------------------- Reset / base -------------------- */
*, *::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; } }

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

/* Subtle grain — kills the flat-vector AI look */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ocean-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { font-weight: 700; }

h1, h2, h3, h4 {
  font-family: var(--f-head);
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
}
h1 { font-size: clamp(2.3rem, 6.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4.4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.6vw, 1.6rem); font-weight: 700; }
p  { color: var(--ink-soft); }

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

/* -------------------- Layout -------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { position: relative; z-index: 1; padding: clamp(56px, 9vw, 104px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.section--navy { background: var(--navy); color: #DCE6F7; }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: #B9C7E4; }
.section--sand { background: var(--paper-2); }

.eyebrow {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ocean-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 30px; height: 3px; border-radius: 3px;
  background: var(--ocean);
}
.section--navy .eyebrow { color: #7FB0F5; }
/* White cards sitting inside a navy section keep dark text (translucent cards
   on other pages override this with inline colors). */
.section--navy .card h3 { color: var(--navy); }
.section--navy .card p  { color: var(--ink-soft); }

.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--ink-soft); max-width: 62ch; }
.section--navy .lead { color: #C7D4EE; }
.measure { max-width: 66ch; }
.center { text-align: center; margin-inline: auto; }

/* -------------------- Buttons -------------------- */
.btn {
  --_bg: var(--navy); --_fg: #fff; --_bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-head); font-weight: 700; font-size: 1rem;
  line-height: 1; text-align: center; text-decoration: none;
  padding: 15px 26px; min-height: 52px;
  border-radius: 999px; border: 2px solid var(--_bd);
  background: var(--_bg); color: var(--_fg);
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn--ocean { --_bg: var(--ocean); --_fg: #fff; }
.btn--wa    { --_bg: var(--wa-green); --_fg: #08351d; }
.btn--wa:hover { --_bg: #1fbf5c; }
.btn--ghost { --_bg: transparent; --_fg: var(--navy); --_bd: rgba(26,46,94,.22); box-shadow: none; }
.btn--ghost:hover { --_bd: var(--navy); background: rgba(26,46,94,.04); }
.section--navy .btn--ghost { --_fg: #fff; --_bd: rgba(255,255,255,.35); }
.section--navy .btn--ghost:hover { background: rgba(255,255,255,.08); --_bd:#fff; }
.btn--lg { padding: 17px 32px; min-height: 58px; font-size: 1.06rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* Price chips */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: var(--white); border: 1px solid var(--sand);
  border-radius: 999px; padding: 10px 18px;
  box-shadow: var(--shadow-sm);
  font-family: var(--f-head); font-weight: 700; color: var(--navy);
  font-size: 1rem;
}
.chip b { font-size: 1.15rem; font-weight: 800; }
.chip span { font-family: var(--f-body); font-weight: 600; color: var(--ink-soft); font-size: .9rem; }

/* -------------------- Header / Nav -------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(26,46,94,.09);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); gap: 20px;
}
.nav__brand {
  display: inline-flex; align-items: center; flex: none;
  width: 174px; height: 44px; overflow: hidden;
  background: var(--white); border: 1px solid rgba(26,46,94,.08);
  border-radius: 12px; box-shadow: var(--shadow-sm);
}
.nav__brand img {
  width: 174px; height: auto; max-width: none;
}
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: var(--f-head); font-weight: 600; font-size: .96rem;
  color: var(--navy); padding: 9px 13px; border-radius: 8px;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.nav__links a:hover { text-decoration: none; background: rgba(26,46,94,.06); }
.nav__links a[aria-current="page"] { color: var(--ocean-deep); }
.nav__links a[aria-current="page"]::after {
  content: ""; display: block; height: 3px; border-radius: 3px;
  background: var(--ocean); margin-top: 5px;
}
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__cta .btn { padding: 11px 20px; min-height: 44px; font-size: .95rem; }

.nav__toggle {
  display: none; width: 46px; height: 46px; border: 0; background: transparent;
  cursor: pointer; padding: 10px; color: var(--navy);
}
.nav__toggle svg { width: 100%; height: 100%; }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav[data-open="true"] .nav__links,
  .nav[data-open="true"] .nav__cta {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: var(--nav-h);
    background: var(--white); padding: 14px 22px 22px;
    border-bottom: 1px solid rgba(26,46,94,.1);
    box-shadow: var(--shadow-md); gap: 4px;
  }
  .nav[data-open="true"] .nav__links a { padding: 13px 12px; font-size: 1.05rem; }
  .nav[data-open="true"] .nav__links a[aria-current="page"]::after { display: none; }
  .nav[data-open="true"] .nav__cta { top: auto; position: static; box-shadow: none; border: 0; padding: 10px 0 0; }
  .nav[data-open="true"] .nav__cta .btn { width: 100%; min-height: 52px; }
}

/* -------------------- Hero -------------------- */
.hero { position: relative; z-index: 1; padding: clamp(48px, 8vw, 92px) 0 clamp(30px, 5vw, 56px); }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--ocean); }
.hero__lead { margin-bottom: 26px; }
.hero__cta { margin-bottom: 26px; }
.hero__card {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: 26px; transform: rotate(-1.2deg);
}
.hero__card:hover { transform: rotate(0); }
.hero__card { transition: transform .35s var(--ease); }
.hero__card img { border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.hero__card-label {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; font-family: var(--f-head); font-weight: 700; color: var(--navy);
}
.hero__card-label span { font-family: var(--f-body); font-weight: 600; color: var(--ink-soft); font-size: .9rem; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__card { transform: none; max-width: 460px; }
}

/* -------------------- Wave divider -------------------- */
.wave { display: block; width: 100%; height: auto; position: relative; z-index: 1; margin: 0; }
.wave svg { display: block; width: 100%; height: 100%; }

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

.card {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; }
.card__ico {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px;
  display: grid; place-items: center;
  background: rgba(43,127,232,.12); color: var(--ocean-deep);
}
.card__ico svg { width: 26px; height: 26px; }

/* -------------------- Portfolio -------------------- */
.work-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.work {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
  display: flex; flex-direction: column;
}
.work:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.work__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--navy); }
.work__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.work:hover .work__media img { transform: scale(1.04); }
.work__tags { position: absolute; top: 14px; left: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-family: var(--f-head); font-weight: 700; font-size: .72rem; letter-spacing: .04em;
  text-transform: uppercase; color: var(--navy); background: rgba(255,255,255,.92);
  padding: 6px 11px; border-radius: 999px; backdrop-filter: blur(4px);
}
.work__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.work__body h3 { margin: 0; }
.work__link { margin-top: auto; font-family: var(--f-head); font-weight: 700; color: var(--ocean-deep); display: inline-flex; align-items: center; gap: 6px; }
.work:hover .work__link { text-decoration: underline; }

/* Placeholder "next project" tile */
.work--ghost {
  border: 2px dashed rgba(26,46,94,.22); background: transparent; box-shadow: none;
  align-items: center; justify-content: center; text-align: center; padding: 40px 24px; min-height: 260px;
}
.work--ghost:hover { transform: none; box-shadow: none; border-color: var(--ocean); }
.work--ghost h3 { color: var(--ink-soft); }

/* Case study blocks */
.case { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.case + .case { margin-top: 40px; }
.case__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); border: 1px solid var(--sand); }
.case:nth-child(even) .case__media { order: 2; }
@media (max-width: 820px) { .case { grid-template-columns: 1fr; } .case:nth-child(even) .case__media { order: 0; } }

.factlist { list-style: none; padding: 0; display: grid; gap: 14px; margin-top: 8px; }
.factlist li { display: flex; gap: 12px; align-items: flex-start; }
.factlist svg { width: 22px; height: 22px; color: var(--ocean); flex: none; margin-top: 3px; }
.factlist b { color: var(--navy); font-family: var(--f-head); }

/* -------------------- Pricing -------------------- */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
@media (max-width: 820px) { .price-grid { grid-template-columns: 1fr; } }
.price {
  background: var(--white); border: 1px solid var(--sand); border-radius: var(--r-lg);
  padding: 32px; box-shadow: var(--shadow-sm); position: relative; height: 100%;
}
.price--feature { border: 2px solid var(--ocean); box-shadow: var(--shadow-md); }
.price__flag {
  position: absolute; top: -13px; left: 32px;
  background: var(--ocean); color: #fff; font-family: var(--f-head); font-weight: 700;
  font-size: .78rem; letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}
.price__name { font-family: var(--f-head); font-weight: 700; color: var(--ink-soft); font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 12px; }
.price__amount { font-family: var(--f-head); font-weight: 800; color: var(--navy); font-size: clamp(2.4rem, 6vw, 3.2rem); line-height: 1; }
.price__amount small { font-size: 1rem; font-weight: 600; color: var(--ink-soft); font-family: var(--f-body); }
.price__note { margin: 8px 0 22px; font-size: .98rem; }
.price ul { list-style: none; padding: 0; display: grid; gap: 13px; margin: 0 0 26px; }
.price li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.price li svg { width: 21px; height: 21px; color: var(--wa-green-d); flex: none; margin-top: 3px; }
.price li.no { color: var(--ink-soft); }
.price li.no svg { color: #C1553E; }

.terms { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
@media (max-width: 700px){ .terms { grid-template-columns: 1fr; } }
.term { background: var(--white); border: 1px solid var(--sand); border-radius: var(--r-md); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.term b { display: block; font-family: var(--f-head); color: var(--navy); font-size: 1.05rem; margin-bottom: 4px; }

/* -------------------- Process timeline -------------------- */
.steps { display: grid; gap: 4px; margin-top: 12px; counter-reset: step; }
.step { position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 26px 0; border-top: 1px solid rgba(26,46,94,.12); }
.step:first-child { border-top: 0; }
.step__num {
  counter-increment: step; grid-row: span 2;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: #fff; display: grid; place-items: center;
  font-family: var(--f-head); font-weight: 800; font-size: 1.4rem;
}
.step--feature .step__num { background: var(--ocean); }
.step__num::before { content: counter(step); }
.step h3 { margin-bottom: 8px; }
.step p { margin-bottom: 0; }
.step__meta { font-family: var(--f-head); font-weight: 700; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ocean-deep); margin-bottom: 6px; }
@media (max-width: 640px){ .step { grid-template-columns: 48px 1fr; gap: 16px; } .step__num { width: 46px; height: 46px; font-size: 1.15rem; } }

/* -------------------- About -------------------- */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px,5vw,56px); align-items: center; }
@media (max-width: 820px){ .about-grid { grid-template-columns: 1fr; } }
.about-brandmark {
  width: clamp(136px, 18vw, 176px); height: auto;
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}
.statline { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 26px; }
.stat b { display: block; font-family: var(--f-head); font-weight: 800; color: var(--navy); font-size: 2rem; line-height: 1; }
.stat span { color: var(--ink-soft); font-size: .95rem; }
.section--navy .stat b { color: #fff; }
.section--navy .stat span { color: #B9C7E4; }

/* -------------------- Contact / form -------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,52px); align-items: start; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }
.form { background: var(--white); border: 1px solid var(--sand); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--f-head); font-weight: 700; font-size: .92rem; color: var(--navy); margin-bottom: 7px; }
.field .req { color: #C1553E; }
.field input, .field textarea {
  width: 100%; font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--sand); border-radius: var(--r-sm);
  padding: 13px 15px; min-height: 50px; transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(43,127,232,.18); }
.field input::placeholder, .field textarea::placeholder { color: #97A0B4; }
.form__hint { font-size: .88rem; color: var(--ink-soft); margin-top: 4px; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 16px; align-items: center; background: var(--white); border: 1px solid var(--sand); border-radius: var(--r-md); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.contact-card__ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(43,127,232,.12); color: var(--ocean-deep); flex: none; }
.contact-card__ico svg { width: 24px; height: 24px; }
.contact-card b { display: block; font-family: var(--f-head); color: var(--navy); }
.contact-card a, .contact-card span { color: var(--ink-soft); }

/* -------------------- CTA band -------------------- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { margin-inline: auto; margin-bottom: 26px; }

/* -------------------- Footer -------------------- */
.site-footer { position: relative; z-index: 1; background: var(--navy-800); color: #A9B7D6; padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
@media (max-width: 760px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } .footer-brandcol { grid-column: 1 / -1; } }
.footer-brandcol p { color: #9FADCC; max-width: 34ch; margin-top: 14px; }
.footer-logo {
  display: inline-flex; align-items: flex-start;
  width: 220px; height: 62px; overflow: hidden;
  background: var(--white); border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px; box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.footer-logo img {
  width: 220px; height: auto; max-width: none;
  transform: translateY(-31px);
}
.site-footer h3 { font-family: var(--f-head); font-weight: 700; color: #fff; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-links a { color: #A9B7D6; }
.footer-links a:hover { color: #fff; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #DCE6F7; transition: background .15s var(--ease);
}
.socials a:hover { background: var(--ocean); color: #fff; }
.socials svg { width: 20px; height: 20px; }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center;
  font-size: .88rem; color: #8595B8;
}

/* -------------------- Floating WhatsApp -------------------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wa-green); color: #08351d;
  font-family: var(--f-head); font-weight: 700; font-size: .98rem;
  padding: 13px 20px 13px 16px; border-radius: 999px;
  box-shadow: 0 10px 26px rgba(18,140,74,.4);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.wa-float:hover { transform: translateY(-2px); text-decoration: none; box-shadow: 0 16px 34px rgba(18,140,74,.5); }
.wa-float svg { width: 26px; height: 26px; flex: none; }
@media (max-width: 560px){ .wa-float .wa-float__txt { display: none; } .wa-float { padding: 15px; } }

/* -------------------- Utilities / motion -------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.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;
}
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 18px; border-radius: 8px; font-family: var(--f-head); font-weight: 700;
}
.skip-link:focus { left: 12px; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__card { transform: none; }
}

.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 42px; }
.mb-0 { margin-bottom: 0; }
