/* ==========================================================================
   Lekker Websites — stylesheet
   Single source of truth for the whole site. No frameworks, no CDNs.
   ========================================================================== */

/* --- Design tokens ------------------------------------------------------ */
:root {
  --ink:        #0b0d12;
  --ink-2:      #11141c;
  --ink-3:      #171b26;
  --line:       #262b39;
  --line-soft:  #1d2130;

  --text:       #e8eaf0;
  --text-muted: #9aa2b6;
  --text-dim:   #6d7488;

  --brand:      #ff8a3d;   /* lekker warm orange */
  --brand-2:    #ffc14d;   /* amber */
  --accent:     #38e0b0;   /* mint, used sparingly */

  --radius:     14px;
  --radius-lg:  22px;
  --maxw:       1140px;

  --shadow:     0 18px 50px -18px rgba(0, 0, 0, .75);
  --shadow-sm:  0 8px 24px -12px rgba(0, 0, 0, .7);

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

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

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

/* --- Base --------------------------------------------------------------- */
body {
  background: var(--ink);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient glow behind the whole page — cheap, no images. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60rem 40rem at 78% -8%,  rgba(255, 138, 61, .13), transparent 60%),
    radial-gradient(50rem 34rem at 8%  12%,  rgba(56, 224, 176, .07), transparent 60%);
  pointer-events: none;
}

h1, h2, h3, h4 {
  line-height: 1.15;
  letter-spacing: -.022em;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.75rem); }
h3 { font-size: 1.2rem; }

p { color: var(--text-muted); }
strong { color: var(--text); font-weight: 650; }

::selection { background: var(--brand); color: #1a0d02; }

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

/* --- Layout helpers ----------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding: clamp(64px, 9vw, 116px) 0; }
.section--tight { padding: clamp(48px, 6vw, 76px) 0; }
.section--alt { background: linear-gradient(180deg, transparent, var(--ink-2) 18%, var(--ink-2) 82%, transparent); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--brand);
}

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head p { margin-top: 14px; font-size: 1.06rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.lede { font-size: clamp(1.05rem, 1.7vw, 1.22rem); color: var(--text-muted); }

.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 650;
  font-size: .97rem;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), border-color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #23120a;
  box-shadow: 0 10px 30px -12px rgba(255, 138, 61, .8);
}
.btn--primary:hover { box-shadow: 0 16px 38px -12px rgba(255, 138, 61, .95); }

.btn--ghost {
  background: rgba(255, 255, 255, .03);
  border-color: var(--line);
  color: var(--text);
}
.btn--ghost:hover { border-color: #3b4257; background: rgba(255, 255, 255, .06); }

.btn--block { width: 100%; }
.btn--sm { padding: 10px 20px; font-size: .9rem; }

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

/* --- Header / nav ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11, 13, 18, .72);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line-soft);
  background: rgba(11, 13, 18, .92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 750;
  font-size: 1.08rem;
  letter-spacing: -.02em;
  text-decoration: none;
}
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #23120a;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  font-weight: 800;
  flex: none;
  box-shadow: 0 6px 18px -8px rgba(255, 138, 61, .9);
}
.brand__text em { font-style: normal; color: var(--brand-2); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__links a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 550;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .16s var(--ease), background-color .16s var(--ease);
}
.nav__links a:hover { color: var(--text); background: rgba(255, 255, 255, .05); }
.nav__links a[aria-current="page"] { color: var(--text); }

.nav__cta { margin-left: 10px; }

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, .03);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  display: block;
  width: 17px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .22s var(--ease), opacity .18s var(--ease);
}
.nav__toggle span::before,
.nav__toggle span::after { content: ""; position: absolute; }
.nav__toggle span::before { transform: translateY(-6px); }
.nav__toggle span::after  { transform: translateY(6px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav__toggle { display: grid; position: relative; }
  .nav__links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px 22px 22px;
    background: rgba(11, 13, 18, .98);
    border-bottom: 1px solid var(--line-soft);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 13px 14px; font-size: 1rem; border-radius: 12px; }
  .nav__cta { margin: 10px 0 0; }
}

/* --- Hero --------------------------------------------------------------- */
.hero { padding: clamp(58px, 8vw, 104px) 0 clamp(52px, 7vw, 92px); }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .03);
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.hero__badge b { color: var(--text); font-weight: 600; }
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(56, 224, 176, .16);
  flex: none;
}

.hero h1 { max-width: 15ch; }
.hero h1 .hl {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub { max-width: 54ch; margin: 22px 0 32px; font-size: clamp(1.05rem, 1.8vw, 1.2rem); }

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 40px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line-soft);
}
.stat b {
  display: block;
  font-size: 1.7rem;
  font-weight: 750;
  letter-spacing: -.03em;
  color: var(--text);
  line-height: 1.1;
}
.stat span { font-size: .87rem; color: var(--text-muted); }

/* Fake browser window used as hero artwork */
.mock {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-7deg) rotateX(3deg);
  transition: transform .5s var(--ease);
}
.mock:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.mock__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 15px;
  background: var(--ink-3);
  border-bottom: 1px solid var(--line-soft);
}
.mock__bar i { width: 10px; height: 10px; border-radius: 50%; background: #39405a; }
.mock__bar i:first-child { background: #ff5f57; }
.mock__bar i:nth-child(2) { background: #febc2e; }
.mock__bar i:nth-child(3) { background: #28c840; }
.mock__url {
  margin-left: 10px;
  flex: 1;
  height: 22px;
  border-radius: 999px;
  background: #0e111a;
  border: 1px solid var(--line-soft);
  font-size: .68rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  padding: 0 11px;
  letter-spacing: .01em;
}
.mock__body { padding: 24px; display: grid; gap: 13px; }
.bar { height: 11px; border-radius: 6px; background: #1e2331; }
.bar--lg { height: 24px; width: 72%; background: linear-gradient(90deg, var(--brand), var(--brand-2)); opacity: .9; }
.bar--md { width: 88%; }
.bar--sm { width: 55%; }
.mock__tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; margin-top: 8px; }
.mock__tiles div {
  height: 58px;
  border-radius: 10px;
  background: #171c28;
  border: 1px solid var(--line-soft);
}
.mock__tiles div:nth-child(2) { background: #1b2130; }

/* --- Cards -------------------------------------------------------------- */
.card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012));
  transition: border-color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}
.card:hover {
  border-color: #333a4d;
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: .96rem; }

.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: rgba(255, 138, 61, .12);
  border: 1px solid rgba(255, 138, 61, .26);
  color: var(--brand-2);
  font-size: 1.25rem;
}

/* --- Icons --------------------------------------------------------------
   Inline SVG rather than emoji or geometric glyphs. Emoji carry their own
   colour (a red 📍 fought the amber palette) and text-presentation glyphs
   like ✉ rendered monochrome grey; both also change shape per platform.
   These inherit currentColor and look identical everywhere. */
.icon {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--fill { fill: currentColor; stroke: none; }

.card__list { margin-top: 18px; display: grid; gap: 9px; }
.card__list li {
  position: relative;
  padding-left: 24px;
  font-size: .93rem;
  color: var(--text-muted);
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .58em;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* --- Process steps ------------------------------------------------------ */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px 28px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .018);
}
.step__num {
  counter-increment: step;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 750;
  font-size: 1.02rem;
  background: rgba(255, 193, 77, .1);
  border: 1px solid rgba(255, 193, 77, .28);
  color: var(--brand-2);
  flex: none;
}
.step__num::before { content: "0" counter(step); }
.step h3 { margin-bottom: 6px; }
.step p { font-size: .96rem; }

/* --- Pricing ------------------------------------------------------------ */
.price-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); align-items: start; }

.plan {
  display: flex;
  flex-direction: column;
  padding: 32px 30px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01));
}
.plan--featured {
  border-color: rgba(255, 138, 61, .45);
  background: linear-gradient(180deg, rgba(255, 138, 61, .09), rgba(255, 255, 255, .012));
  box-shadow: var(--shadow-sm);
}
.plan__tag {
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #23120a;
  margin-bottom: 16px;
}
.plan__name { font-size: 1.28rem; font-weight: 700; }
.plan__for { font-size: .92rem; color: var(--text-muted); margin-top: 6px; }
.plan__price {
  margin: 22px 0 4px;
  font-size: 2.5rem;
  font-weight: 750;
  letter-spacing: -.035em;
  line-height: 1;
}
.plan__price small { font-size: .95rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.plan__note { font-size: .84rem; color: var(--text-muted); }
.plan ul { margin: 24px 0 28px; display: grid; gap: 11px; }
.plan li {
  position: relative;
  padding-left: 26px;
  font-size: .94rem;
  color: var(--text-muted);
}
.plan li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: .55em;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--brand-2);
  border-bottom: 2px solid var(--brand-2);
  transform: rotate(-45deg);
}
.plan .btn { margin-top: auto; }

/* --- Work / portfolio --------------------------------------------------- */
.work-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.work {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-2);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.work:hover { transform: translateY(-4px); border-color: #333a4d; }
.work__thumb {
  aspect-ratio: 16 / 10;
  position: relative;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.work__thumb span {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: rgba(255, 255, 255, .82);
  mix-blend-mode: overlay;
}
.work__thumb--a { background: linear-gradient(135deg, #ff8a3d, #b34700); }
.work__thumb--b { background: linear-gradient(135deg, #38e0b0, #0a6a55); }
.work__thumb--c { background: linear-gradient(135deg, #6b8afd, #26307a); }
.work__thumb--d { background: linear-gradient(135deg, #ffc14d, #a05c00); }
.work__thumb--e { background: linear-gradient(135deg, #b06bfd, #5a2a7a); }
.work__thumb--f { background: linear-gradient(135deg, #ff6b8a, #7a1f38); }
.work__meta { padding: 24px 26px 28px; }
.work__meta h3 { margin-bottom: 8px; }
.work__meta p { font-size: .94rem; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: .78rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, .025);
}

/* --- Testimonials ------------------------------------------------------- */
.quote {
  padding: 30px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .022);
}
.quote p { color: var(--text); font-size: 1.02rem; }
.quote__who { display: flex; align-items: center; gap: 13px; margin-top: 22px; }
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .9rem;
  color: #23120a;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  flex: none;
}
.quote__who b { display: block; font-size: .93rem; font-weight: 650; }
.quote__who span { font-size: .83rem; color: var(--text-muted); }
.stars { color: var(--brand-2); letter-spacing: 2px; font-size: .9rem; margin-bottom: 14px; }

/* --- FAQ ---------------------------------------------------------------- */
.faq { display: grid; gap: 12px; max-width: 800px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .022);
  overflow: hidden;
}
.faq details[open] { border-color: #333a4d; }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  font-weight: 600;
  position: relative;
  transition: color .16s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand-2); }
.faq summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq .faq__body { padding: 0 24px 22px; }
.faq .faq__body p { font-size: .96rem; }

/* --- CTA band ----------------------------------------------------------- */
.cta-band {
  padding: clamp(44px, 6vw, 66px);
  border: 1px solid rgba(255, 138, 61, .3);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(40rem 20rem at 80% 0%, rgba(255, 138, 61, .16), transparent 65%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .012));
  text-align: center;
}
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band p { max-width: 52ch; margin: 16px auto 30px; }
.cta-band .btn-row { justify-content: center; }

/* --- Forms -------------------------------------------------------------- */
.form-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}
@media (max-width: 900px) { .form-layout { grid-template-columns: 1fr; } }

.form {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01));
}
.field { display: grid; gap: 8px; }
.field label { font-size: .88rem; font-weight: 600; }
.field label span { color: var(--brand); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #0d1017;
  color: var(--text);
  font-size: .97rem;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 138, 61, .16);
}
.field input::placeholder, .field textarea::placeholder { color: #5c6478; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.form__note { font-size: .84rem; color: var(--text-muted); }
.form__status {
  display: none;
  padding: 13px 16px;
  border-radius: 11px;
  font-size: .92rem;
}
.form__status.is-ok   { display: block; background: rgba(56, 224, 176, .1); border: 1px solid rgba(56, 224, 176, .35); color: #9ff0d8; }
.form__status.is-err  { display: block; background: rgba(255, 107, 138, .1); border: 1px solid rgba(255, 107, 138, .35); color: #ffb3c2; }

/* Honeypot — must stay visually hidden but reachable by bots. */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.contact-side { display: grid; gap: 16px; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .022);
  text-decoration: none;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
a.contact-card:hover { border-color: rgba(255, 138, 61, .5); transform: translateY(-2px); }
/* Scoped through .contact-card so this outranks the `.contact-card span`
   muted-text rule below — the icon is itself a span inside the card, so a
   bare .contact-card__icon selector loses on specificity and the icons
   render grey instead of brand amber. */
.contact-card .contact-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(255, 138, 61, .12);
  border: 1px solid rgba(255, 138, 61, .26);
  color: var(--brand-2);
  flex: none;
}
.contact-card .contact-card__icon .icon { width: 20px; height: 20px; }
.contact-card b { display: block; font-size: .95rem; }
.contact-card span { font-size: .9rem; color: var(--text-muted); }

/* --- Footer ------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 56px 0 34px;
  margin-top: 40px;
  background: var(--ink-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer-grid p { font-size: .93rem; max-width: 38ch; margin-top: 14px; }
.footer-col h4 {
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 650;
}
.footer-col ul { display: grid; gap: 10px; list-style: none; padding: 0; margin: 0; }
.footer-col a {
  font-size: .94rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .16s var(--ease);
}
.footer-col a:hover { color: var(--brand-2); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  font-size: .87rem;
  color: var(--text-muted);
}

/* --- Floating WhatsApp -------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #06301a;
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, .8);
  transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }

/* --- Reveal on scroll ---------------------------------------------------
   Scoped to .js (set by an inline script in <head>) so that content is never
   hidden when JavaScript is off or fails to load. Without this guard a broken
   script would leave most of the page blank. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* --- Page hero (inner pages) -------------------------------------------- */
.page-hero { padding: clamp(50px, 7vw, 84px) 0 clamp(28px, 4vw, 44px); }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); max-width: 18ch; }
.page-hero .lede { max-width: 58ch; margin-top: 18px; }

/* --- 404 ---------------------------------------------------------------- */
.oops { text-align: center; padding: clamp(70px, 12vw, 140px) 0; }
.oops__code {
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.oops p { max-width: 44ch; margin: 18px auto 30px; }
.oops .btn-row { justify-content: center; }

/* --- Prose (legal pages) ------------------------------------------------ */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.45rem; margin: 40px 0 12px; }
.prose h3 { margin: 26px 0 8px; }
.prose p, .prose li { color: var(--text-muted); font-size: .98rem; }
.prose p + p { margin-top: 14px; }
.prose ul { list-style: disc; padding-left: 22px; display: grid; gap: 8px; margin-top: 12px; }
.prose a { color: var(--brand-2); }
