  /* ───────────────────────── tokens */
  :root {
    --teal:   #193935;
    --teal-2: #244e48;
    --teal-3: #0f2724;
    --lav:    #F1ECF3;
    --mint:   #DDF1E6;
    --mint-2: #c7e7d5;
    --gray:   #FAFAFA;
    --paper:  #ffffff;
    --ink:    #14201e;
    --ink-2:  #4a5b58;
    --ink-3:  #8a9a96;
    --line:   #e8e6ea;
    --line-2: #1f4540;

    --font:   "Plus Jakarta Sans", system-ui, sans-serif;
    --body:   "Inter", system-ui, sans-serif;
    --mono:   "JetBrains Mono", ui-monospace, monospace;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: var(--body);
    color: var(--ink);
    background: var(--gray);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: none; background: none; }

  /* ───────────────────────── primitives */
  .wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
  .display {
    font-family: var(--font);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.04;
    color: var(--ink);
  }
  .kicker {
    font-family: var(--body);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .kicker::before, .kicker::after { content: "«"; opacity: 0.55; font-weight: 500; }
  .kicker::after { content: "»"; }
  .lede {
    color: var(--ink-2);
    font-size: 17px;
    line-height: 1.65;
    max-width: 56ch;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 999px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: -0.005em;
    transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
    white-space: nowrap;
  }
  .btn--primary { background: var(--teal); color: #fff; }
  .btn--primary:hover { background: var(--teal-3); transform: translateY(-1px); }
  .btn--outline { border: 1.5px solid var(--teal); color: var(--teal); }
  .btn--outline:hover { background: var(--teal); color: #fff; }
  .btn--mint { background: var(--mint); color: var(--teal); }
  .btn--mint:hover { background: #cbe9d8; }
  .btn--ghost { color: var(--teal); padding: 14px 0; }
  .btn--ghost:hover { text-decoration: underline; }
  .btn .arr { display: inline-block; transition: transform .2s ease; }
  .btn:hover .arr { transform: translateX(3px); }
  .btn--lg { padding: 18px 30px; font-size: 16px; }

  /* ───────────────────────── nav */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.72);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(232, 230, 234, 0.6);
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
  }
  .nav.is-scrolled {
    background: rgba(255,255,255,0.92);
    box-shadow: 0 1px 0 rgba(20, 32, 30, 0.04), 0 8px 24px -16px rgba(20, 32, 30, 0.18);
  }
  .nav__inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0;
    gap: 24px;
  }
  .brand {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font);
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 18px;
    color: var(--ink);
  }
  .brand__mark {
    width: 32px; height: 32px;
    border-radius: 9px;
    background: var(--teal);
    color: var(--mint);
    display: grid; place-items: center;
    font-family: var(--font);
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.04em;
  }
  .brand__sub {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--ink-3);
    text-transform: uppercase;
    margin-left: 2px;
    margin-top: 1px;
  }
  .nav__links { display: flex; gap: 4px; }
  .nav__links a {
    padding: 10px 14px;
    font-size: 14.5px;
    color: var(--ink-2);
    font-weight: 500;
    border-radius: 999px;
    transition: color .15s, background .15s;
  }
  .nav__links a:hover { color: var(--teal); background: rgba(25,57,53,0.06); }
  .nav__cta { display: flex; align-items: center; gap: 12px; }
  .nav__phone {
    font-size: 13.5px;
    color: var(--ink-2);
    font-weight: 500;
    display: none;
  }
  @media (min-width: 980px) { .nav__phone { display: inline-flex; align-items: center; gap: 6px; } }
  .nav__links { display: none; }
  @media (min-width: 880px) { .nav__links { display: flex; } }

  /* ───────────────────────── hero */
  .hero {
    background: var(--gray);
    padding: 64px 0 100px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(25,57,53,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(25,57,53,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    background-position: -1px -1px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 20% 30%, black 30%, transparent 75%);
            mask-image: radial-gradient(ellipse 80% 60% at 20% 30%, black 30%, transparent 75%);
    pointer-events: none;
  }
  .hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
  }
  @media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; gap: 40px; } }

  .hero__eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 14px 7px 8px;
    background: var(--mint);
    color: var(--teal);
    border-radius: 999px;
    font-family: var(--body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
  }
  .hero__eyebrow .dot {
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--teal); color: var(--mint);
    display: grid; place-items: center;
    font-size: 11px;
    font-weight: 700;
  }
  .hero h1 {
    margin: 0 0 22px;
    font-size: clamp(40px, 5.6vw, 72px);
  }
  .hero h1 em {
    font-style: normal;
    color: var(--teal);
    position: relative;
    white-space: nowrap;
  }
  .hero h1 em::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0.06em; height: 0.22em;
    background: var(--mint);
    z-index: -1;
    border-radius: 2px;
  }
  .hero__sub { color: var(--ink-2); font-size: 18px; max-width: 50ch; margin: 0 0 32px; }
  .hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

  .hero__stats {
    display: flex;
    gap: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .stat__num {
    font-family: var(--font);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -0.025em;
    color: var(--teal);
    line-height: 1;
  }
  .stat__lbl {
    font-size: 12.5px;
    color: var(--ink-2);
    margin-top: 6px;
    letter-spacing: 0.01em;
  }

  /* hero visual */
  .hero__visual {
    position: relative;
    aspect-ratio: 5 / 6;
    border-radius: 28px;
    background: var(--teal);
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(25,57,53,0.45);
  }
  .hero__visual-stage {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 70% 50% at 50% 75%, rgba(221,241,230,0.16), transparent 60%),
      linear-gradient(180deg, #122b28 0%, #193935 55%, #0c1f1c 100%);
    overflow: hidden;
  }
  .hero__visual-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.85;
  }
  .hero__visual-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(221,241,230,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(221,241,230,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  /* faux signboard */
  .signboard {
    position: absolute;
    left: 50%; top: 46%;
    transform: translate(-50%, -50%) rotate(-1.5deg);
    width: 72%;
    aspect-ratio: 5 / 3;
    background: #f7f4ec;
    border-radius: 8px;
    box-shadow:
      0 0 0 6px #2a2622,
      0 30px 70px -10px rgba(0,0,0,0.55),
      inset 0 0 0 1px rgba(0,0,0,0.05);
    display: grid; place-items: center;
    padding: 6%;
  }
  .signboard__name {
    font-family: var(--font);
    font-weight: 800;
    letter-spacing: -0.04em;
    font-size: clamp(34px, 5.2vw, 76px);
    color: #c84d24;
    line-height: 0.92;
    text-align: center;
  }
  .signboard__sub {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.32em;
    color: #6a5946;
    margin-top: 8px;
  }
  .signboard__glow {
    position: absolute;
    inset: -8%;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 200, 130, 0.22), transparent 65%);
    pointer-events: none;
  }
  .signboard__pole {
    position: absolute;
    left: 50%; bottom: -12px;
    width: 18px;
    height: 28%;
    background: linear-gradient(180deg, #3a342c, #1b1814);
    transform: translateX(-50%);
    border-radius: 3px;
    z-index: -1;
  }
  /* hero floating stat card (mint, bottom-right) */
  .hero__floatcard {
    position: absolute;
    left: 5%;
    bottom: 22px;
    background: var(--mint);
    color: var(--teal);
    padding: 16px 18px;
    border-radius: 14px;
    box-shadow: 0 20px 40px -16px rgba(0,0,0,0.35);
    display: flex; align-items: center; gap: 14px;
    max-width: 260px;
  }
  .hero__floatcard .av {
    display: flex;
  }
  .hero__floatcard .av i {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--teal);
    border: 2px solid var(--mint);
    display: block;
    margin-left: -10px;
  }
  .hero__floatcard .av i:first-child { margin-left: 0; }
  .hero__floatcard .av i:nth-child(2) { background: #c84d24; }
  .hero__floatcard .av i:nth-child(3) { background: #244e48; }
  .hero__floatcard b { font-weight: 700; font-size: 14.5px; display: block; font-family: var(--font); letter-spacing: -0.01em; }
  .hero__floatcard span { font-size: 12px; opacity: 0.75; }
  .hero__chip {
    position: absolute;
    right: 18px; top: 18px;
    background: rgba(255,255,255,0.94);
    color: var(--teal);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--body);
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  }
  .hero__chip::before {
    content: "";
    width: 7px; height: 7px; border-radius: 50%;
    background: #34a853;
    box-shadow: 0 0 0 4px rgba(52,168,83,0.22);
  }

  /* ───────────────────────── section base */
  section { padding: 96px 0; }
  .section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 56px;
  }
  .section__head .left { max-width: 640px; }
  .section__head h2 {
    margin: 14px 0 0;
    font-size: clamp(34px, 4vw, 52px);
  }
  .section__head p { margin: 18px 0 0; color: var(--ink-2); }
  @media (max-width: 780px) { .section__head { flex-direction: column; align-items: flex-start; } }

  /* ───────────────────────── services (#layanan) */
  #layanan { background: var(--lav); }
  .services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 920px) { .services { grid-template-columns: 1fr; } }
  .svc {
    background: var(--paper);
    border-radius: 18px;
    padding: 32px 28px 28px;
    position: relative;
    display: flex; flex-direction: column;
    min-height: 360px;
    transition: transform .25s ease, box-shadow .25s ease;
    overflow: hidden;
  }
  .svc:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(25,57,53,0.28); }
  .svc__num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--ink-3);
    margin-bottom: 18px;
  }
  .svc__ic {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--mint);
    color: var(--teal);
    display: grid; place-items: center;
    margin-bottom: 22px;
  }
  .svc h3 {
    margin: 0 0 8px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: var(--ink);
  }
  .svc p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }
  .svc__list { margin: 18px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
  .svc__list li {
    font-size: 13px;
    color: var(--ink-2);
    display: flex; align-items: center; gap: 8px;
  }
  .svc__list li::before {
    content: "";
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--teal);
  }
  .svc__more {
    margin-top: auto;
    padding-top: 24px;
    color: var(--teal);
    font-family: var(--font);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .svc__more .arr { transition: transform .2s ease; }
  .svc:hover .svc__more .arr { transform: translateX(4px); }

  /* ───────────────────────── tentang */
  #tentang { background: var(--gray); }
  .about {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 72px;
    align-items: center;
  }
  @media (max-width: 920px) { .about { grid-template-columns: 1fr; gap: 40px; } }
  .about__copy h2 { font-size: clamp(32px, 3.6vw, 48px); margin: 14px 0 24px; }
  .about__copy p { color: var(--ink-2); margin: 0 0 18px; max-width: 52ch; }
  .about__bullets { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; }
  @media (max-width: 560px) { .about__bullets { grid-template-columns: 1fr; } }
  .about__bullets li { display: flex; gap: 14px; align-items: flex-start; }
  .about__bullets .ic {
    flex: 0 0 36px;
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--mint);
    color: var(--teal);
    display: grid; place-items: center;
  }
  .about__bullets h4 {
    margin: 2px 0 4px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  .about__bullets p { font-size: 13.5px; color: var(--ink-2); margin: 0; line-height: 1.55; }

  .about__addr {
    margin: 32px 0 24px;
    padding: 16px 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    display: flex; gap: 12px; align-items: flex-start;
    max-width: 520px;
  }
  .about__addr .pin {
    flex: 0 0 36px;
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--teal);
    color: var(--mint);
    display: grid; place-items: center;
  }
  .about__addr small {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--ink-3);
    margin-bottom: 4px;
    text-transform: uppercase;
  }
  .about__addr p { font-size: 13.5px; color: var(--ink); margin: 0; line-height: 1.5; }

  /* map / image side */
  .about__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    background: var(--mint);
    overflow: hidden;
    box-shadow: 0 30px 60px -32px rgba(25,57,53,0.32);
  }
  .about__map {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0;
  }
  .about__pin {
    position: absolute;
    left: 48%; top: 46%;
    transform: translate(-50%, -100%);
    background: var(--teal);
    color: #fff;
    padding: 10px 14px 11px;
    border-radius: 12px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 18px 32px -16px rgba(0,0,0,0.45);
  }
  .about__pin::after {
    content: "";
    position: absolute;
    bottom: -7px; left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px; height: 14px;
    background: var(--teal);
  }
  .about__pin small {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    opacity: 0.8;
    font-weight: 500;
  }
  .about__rating {
    position: absolute;
    left: 24px; bottom: 24px;
    background: var(--paper);
    padding: 14px 16px;
    border-radius: 14px;
    box-shadow: 0 20px 40px -16px rgba(0,0,0,0.25);
    display: flex; align-items: center; gap: 12px;
  }
  .about__rating b {
    font-family: var(--font);
    font-weight: 700;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: -0.02em;
  }
  .about__rating .stars { color: #f1a500; font-size: 13px; letter-spacing: 2px; line-height: 1; }
  .about__rating small { font-size: 11.5px; color: var(--ink-2); }

  /* ───────────────────────── projects */
  #portofolio { background: var(--paper); }
  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  @media (max-width: 920px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .gallery { grid-template-columns: 1fr; } }
  .card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: var(--gray);
    aspect-ratio: 4 / 5;
    cursor: pointer;
  }
  .card__art {
    position: absolute; inset: 0;
    transition: transform .5s ease;
    display: grid; place-items: center;
    padding: 28px;
  }
  .card__art img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .card:hover .card__art { transform: scale(1.04); }
  .card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(25,57,53,0.85) 100%);
    opacity: 0;
    transition: opacity .3s ease;
  }
  .card:hover .card__overlay { opacity: 1; }
  .card__meta {
    position: absolute;
    left: 18px; right: 18px; bottom: 18px;
    color: #fff;
    transform: translateY(8px);
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
    z-index: 2;
  }
  .card:hover .card__meta { opacity: 1; transform: translateY(0); }
  .card__meta h4 {
    margin: 6px 0 4px;
    font-family: var(--font);
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 19px;
  }
  .card__meta p { margin: 0; font-size: 12.5px; opacity: 0.85; }
  .card__badge {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--mint);
    color: var(--teal);
    padding: 6px 11px;
    border-radius: 999px;
    font-family: var(--body);
    font-weight: 700;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    z-index: 3;
  }

  /* faux signage tiles (placeholders styled as signage mockups) */
  .tile { width: 100%; height: 100%; display: grid; place-items: center; padding: 18px; border-radius: 8px; text-align: center; }
  .tile--neon {
    background:
      radial-gradient(ellipse 70% 50% at 50% 50%, rgba(255, 70, 60, 0.18), transparent 70%),
      #1a1620;
    color: #ff5a3c;
    font-family: var(--font);
    font-weight: 800;
    letter-spacing: -0.04em;
    font-size: 44px;
    text-shadow:
      0 0 8px rgba(255,90,60,0.85),
      0 0 22px rgba(255,90,60,0.65),
      0 0 40px rgba(255,90,60,0.35);
  }
  .tile--neon span { display:block; font-size: 18px; color: #ffd1c3; opacity: .7; letter-spacing: 0.06em; font-weight: 600; margin-top: 6px; text-shadow: 0 0 12px rgba(255,90,60,0.5); }
  .tile--brass {
    background:
      radial-gradient(ellipse 70% 60% at 50% 30%, rgba(255,220,140,0.18), transparent 70%),
      linear-gradient(180deg, #2b2823 0%, #1c1a15 100%);
    color: #d4a35a;
    font-family: var(--font);
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: 38px;
    line-height: 1.05;
  }
  .tile--brass span { display:block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.32em; color: #826a45; margin-top: 12px; font-weight: 500; }
  .tile--store {
    background:
      linear-gradient(180deg, #d3422e 0%, #b22f1d 100%);
    color: #fff;
    font-family: var(--font);
    font-weight: 800;
    letter-spacing: -0.025em;
    font-size: 40px;
    line-height: 1;
  }
  .tile--store span { display:block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em; opacity: 0.78; margin-top: 10px; font-weight: 500; }
  .tile--clinic {
    background: linear-gradient(180deg, #f4f1ea 0%, #e7e1d2 100%);
    color: #193935;
    font-family: var(--font);
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 32px;
    border: 6px solid #fff;
    position: relative;
  }
  .tile--clinic::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(25,57,53,0.16); border-radius: 4px; pointer-events: none; }
  .tile--clinic span { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em; color: #6a7370; margin-top: 8px; }
  .tile--cafe {
    background: #1a4a3c;
    color: #f7ead0;
    font-family: "Plus Jakarta Sans", serif;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: 40px;
    font-style: italic;
  }
  .tile--cafe span { display:block; font-family: var(--mono); font-style: normal; font-size: 10px; letter-spacing: 0.3em; color: #b6a373; margin-top: 8px; font-weight: 500; }
  .tile--blue {
    background: linear-gradient(180deg, #1f56b8 0%, #133b8a 100%);
    color: #fff;
    font-family: var(--font);
    font-weight: 800;
    letter-spacing: -0.04em;
    font-size: 44px;
    line-height: 0.95;
  }
  .tile--blue span { display:block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em; opacity: 0.7; margin-top: 10px; font-weight: 500; }

  .gallery__foot {
    display: flex;
    justify-content: center;
    margin-top: 42px;
  }

  /* ───────────────────────── stats (dark) */
  #stats {
    background: var(--teal);
    color: #fff;
    padding: 84px 0;
    position: relative;
    overflow: hidden;
  }
  #stats::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(221,241,230,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(221,241,230,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
  }
  .stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  @media (max-width: 820px) { .stats { grid-template-columns: repeat(2, 1fr); } }
  .stats__item {
    padding: 8px 4px;
  }
  .stats__item:not(:last-child) { border-right: 1px solid rgba(221,241,230,0.14); }
  @media (max-width: 820px) {
    .stats__item:not(:last-child) { border-right: none; }
    .stats__item:nth-child(odd) { border-right: 1px solid rgba(221,241,230,0.14); }
  }
  .stats__num {
    font-family: var(--font);
    font-weight: 700;
    font-size: clamp(48px, 5.4vw, 72px);
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--mint);
  }
  .stats__num sup { font-size: 0.5em; vertical-align: top; margin-left: 4px; opacity: 0.7; }
  .stats__lbl {
    margin-top: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    letter-spacing: -0.005em;
  }
  .stats__lbl b { color: #fff; font-weight: 600; display: block; font-family: var(--font); font-size: 15px; letter-spacing: -0.01em; margin-bottom: 2px; }

  /* ───────────────────────── testimonials */
  #testimoni { background: var(--mint); }
  .testi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 920px) { .testi { grid-template-columns: 1fr; } }
  .testi__card {
    background: var(--paper);
    border-radius: 18px;
    padding: 30px 28px;
    display: flex; flex-direction: column; gap: 20px;
    box-shadow: 0 10px 30px -16px rgba(25,57,53,0.18);
  }
  .testi__stars { color: #f1a500; font-size: 14px; letter-spacing: 3px; line-height: 1; }
  .testi__quote {
    margin: 0;
    font-family: var(--font);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.01em;
    line-height: 1.45;
    color: var(--ink);
    flex-grow: 1;
  }
  .testi__author { display: flex; align-items: center; gap: 12px; }
  .testi__avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--mint);
    display: grid; place-items: center;
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    flex: 0 0 42px;
  }
  .testi__name { font-family: var(--font); font-weight: 700; font-size: 14.5px; color: var(--ink); letter-spacing: -0.01em; }
  .testi__role { font-size: 12.5px; color: var(--ink-2); }

  /* ───────────────────────── final cta */
  #kontak {
    background: var(--teal);
    color: #fff;
    padding: 110px 0 96px;
    position: relative;
    overflow: hidden;
  }
  #kontak::before {
    content: "";
    position: absolute; left: -10%; bottom: -40%;
    width: 60%; aspect-ratio: 1;
    background: radial-gradient(circle, rgba(221,241,230,0.10) 0%, transparent 60%);
    pointer-events: none;
  }
  .cta {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  @media (max-width: 920px) { .cta { grid-template-columns: 1fr; } }
  .cta h2 {
    margin: 18px 0 24px;
    font-size: clamp(36px, 4.6vw, 64px);
    color: #fff;
    font-family: var(--font);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
  }
  .cta h2 em { font-style: normal; color: var(--mint); }
  .cta p { color: rgba(255,255,255,0.8); margin: 0 0 32px; max-width: 48ch; }
  .cta .kicker { color: var(--mint); }
  .cta__btns { display: flex; gap: 12px; flex-wrap: wrap; }
  .cta__info {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(221,241,230,0.18);
    border-radius: 22px;
    padding: 32px;
  }
  .cta__info h4 {
    margin: 0 0 4px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: #fff;
  }
  .cta__info-row { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(221,241,230,0.12); }
  .cta__info-row:last-child { border-bottom: none; padding-bottom: 0; }
  .cta__info-row:first-child { padding-top: 0; }
  .cta__info-row .ic {
    flex: 0 0 38px;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(221,241,230,0.12);
    color: var(--mint);
    display: grid; place-items: center;
  }
  .cta__info-row small { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: rgba(221,241,230,0.6); text-transform: uppercase; margin-bottom: 4px; }
  .cta__info-row p { margin: 0; color: rgba(255,255,255,0.88); font-size: 13.5px; line-height: 1.5; }

  .btn--wa {
    background: #25d366; color: #0a1f17;
    box-shadow: 0 8px 20px -8px rgba(37, 211, 102, 0.6);
  }
  .btn--wa:hover { background: #21c25c; }
  .btn--white { background: #fff; color: var(--teal); }
  .btn--white:hover { background: var(--mint); }

  /* ───────────────────────── footer */
  footer { background: #0d2421; color: #b6c9c5; padding: 60px 0 32px; }
  .foot { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
  @media (max-width: 820px) { .foot { grid-template-columns: 1fr 1fr; gap: 32px; } }
  @media (max-width: 480px) { .foot { grid-template-columns: 1fr; } }
  .foot .brand { color: #fff; margin-bottom: 18px; }
  .foot p { font-size: 13.5px; line-height: 1.55; margin: 0 0 20px; }
  .foot h5 {
    margin: 0 0 16px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.62);
    font-weight: 500;
  }
  .foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .foot ul a { font-size: 14px; color: #b6c9c5; transition: color .15s; }
  .foot ul a:hover { color: var(--mint); }
  .foot__socials { display: flex; gap: 10px; }
  .foot__socials a {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: grid; place-items: center;
    color: #c5d6d2;
    transition: background .15s, color .15s;
  }
  .foot__socials a:hover { background: var(--mint); color: var(--teal); }
  .foot__bottom {
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
  }

  /* ───────────────────────── fade-in */
  .fade { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
  .fade.in { opacity: 1; transform: none; }

  /* sticky WA bubble */
  .wa-bubble {
    position: fixed;
    right: 22px; bottom: 22px;
    z-index: 60;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.55);
    transition: transform .2s ease;
  }
  .wa-bubble:hover { transform: scale(1.06); }

  /* ─────────────────────────────────────────────────────────────
     RESPONSIVE — tablet & mobile
     ───────────────────────────────────────────────────────────── */

  /* Mobile menu button (hidden on desktop) */
  .nav__toggle {
    display: none;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(25,57,53,0.06);
    color: var(--teal);
    align-items: center;
    justify-content: center;
    margin-left: 4px;
  }
  .nav__toggle:hover { background: rgba(25,57,53,0.12); }
  .nav__toggle svg { transition: transform .2s ease; }
  .nav__toggle.is-open svg { transform: rotate(90deg); }

  /* Mobile drawer */
  .drawer {
    position: fixed;
    inset: 64px 0 0 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
    z-index: 49;
    padding: 28px 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .2s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid var(--line);
  }
  .drawer.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .drawer a {
    padding: 14px 18px;
    border-radius: 12px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }
  .drawer a:hover, .drawer a:active { background: var(--mint); color: var(--teal); }
  .drawer .btn { margin-top: 16px; justify-content: center; }

  /* Tablet ≤ 1024 */
  @media (max-width: 1024px) {
    .wrap { padding: 0 28px; }
    section { padding: 80px 0; }
    .section__head { margin-bottom: 44px; }
    .hero { padding: 56px 0 88px; }
    .about { gap: 56px; }
    .cta { gap: 48px; }
  }

  /* Tablet ≤ 880 — collapse nav to hamburger */
  @media (max-width: 879px) {
    .nav__links { display: none !important; }
    .nav__phone { display: none !important; }
    .nav__toggle { display: inline-flex; }
    .nav__cta .btn--primary {
      padding: 10px 16px;
      font-size: 13px;
    }
    .brand__sub { display: none; }
    .brand > div:not(.brand__mark) { font-size: 16px; }
  }

  /* Tablet ≤ 820 (services 2-up was 1-up, restore 2-up here) */
  @media (max-width: 920px) and (min-width: 561px) {
    .services { grid-template-columns: repeat(2, 1fr); }
    .services > .svc:last-child { grid-column: 1 / -1; max-width: 50%; }
  }

  /* Mobile ≤ 640 */
  @media (max-width: 640px) {
    .wrap { padding: 0 20px; }
    section { padding: 64px 0; }
    .nav__inner { padding: 14px 0; gap: 12px; }
    .brand__mark { width: 30px; height: 30px; font-size: 16px; }
    .brand > div:not(.brand__mark) { font-size: 15px; }
    .drawer { inset: 60px 0 0 0; padding: 22px 18px; }

    .hero { padding: 36px 0 64px; }
    .hero h1 { font-size: clamp(34px, 9vw, 44px); }
    .hero__sub { font-size: 16px; margin-bottom: 28px; }
    .hero__ctas { gap: 10px; margin-bottom: 36px; }
    .hero__ctas .btn { flex: 1; justify-content: center; min-width: 140px; }
    .hero__eyebrow { font-size: 11.5px; padding: 6px 12px 6px 6px; margin-bottom: 22px; }
    .hero__visual { aspect-ratio: 4/4.5; border-radius: 22px; }
    .signboard { width: 78%; }
    .signboard__name { font-size: 44px; }
    .hero__floatcard { left: 16px; bottom: 14px; padding: 12px 14px; max-width: 220px; }
    .hero__floatcard b { font-size: 13px; }
    .hero__floatcard span { font-size: 11px; }
    .hero__chip { right: 12px; top: 12px; font-size: 11px; padding: 7px 12px; }
    .hero__stats { gap: 22px; padding-top: 24px; flex-wrap: wrap; }
    .hero__stats > div { flex: 1 1 100px; }
    .stat__num { font-size: 24px; }
    .stat__lbl { font-size: 12px; }

    .section__head { margin-bottom: 36px; gap: 16px; }
    .section__head h2 { font-size: clamp(28px, 7.5vw, 36px); }
    .section__head p { font-size: 15px; }
    .kicker { font-size: 10.5px; }

    /* services single column */
    .services { grid-template-columns: 1fr !important; gap: 14px; }
    .services > .svc:last-child { max-width: none !important; }
    .svc { padding: 26px 22px 24px; min-height: 0; }
    .svc__ic { width: 48px; height: 48px; margin-bottom: 18px; }
    .svc h3 { font-size: 22px; }

    .about { gap: 36px; }
    .about__copy h2 { font-size: clamp(28px, 7vw, 34px); }
    .about__bullets { grid-template-columns: 1fr; gap: 18px; }
    .about__addr { margin: 26px 0 22px; padding: 14px 16px; }
    .about__visual { aspect-ratio: 1/1; border-radius: 20px; }
    .about__rating { left: 16px; bottom: 16px; padding: 12px 14px; }
    .about__rating b { font-size: 18px; }

    .gallery { grid-template-columns: 1fr; gap: 14px; }
    .card { aspect-ratio: 4/3.6; }
    .card__overlay { opacity: 1; background: linear-gradient(180deg, transparent 50%, rgba(25,57,53,0.78) 100%); }
    .card__meta { opacity: 1; transform: none; }
    .gallery__foot { margin-top: 32px; }

    #stats { padding: 64px 0; }
    .stats { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
    .stats__item:not(:last-child) { border-right: none; }
    .stats__item:nth-child(odd) { border-right: 1px solid rgba(221,241,230,0.14); }
    .stats__num { font-size: 44px; }
    .stats__lbl { font-size: 12.5px; margin-top: 10px; }
    .stats__lbl b { font-size: 13.5px; }

    .testi { gap: 14px; }
    .testi__card { padding: 24px 22px; gap: 16px; }
    .testi__quote { font-size: 16px; }

    #kontak { padding: 72px 0 64px; }
    .cta { gap: 32px; }
    .cta h2 { font-size: clamp(32px, 8vw, 40px); }
    .cta p { font-size: 15px; margin-bottom: 24px; }
    .cta__btns { gap: 10px; }
    .cta__btns .btn { flex: 1; justify-content: center; min-width: 0; }
    .cta__info { padding: 24px 22px; border-radius: 18px; }

    .foot { gap: 28px; }
    .foot__bottom { font-size: 11.5px; gap: 10px; }

    .wa-bubble { width: 50px; height: 50px; right: 16px; bottom: 16px; }
    .wa-bubble svg { width: 22px; height: 22px; }
  }

  /* Very small ≤ 380 */
  @media (max-width: 380px) {
    .hero h1 { font-size: 30px; }
    .hero__ctas { flex-direction: column; }
    .hero__ctas .btn { width: 100%; }
    .cta__btns { flex-direction: column; }
  }

  /* ─────────────────────────────────────────────────────────────
     TWEAKS PANEL
     ───────────────────────────────────────────────────────────── */
  .tweaks {
    position: fixed;
    right: 20px; bottom: 90px;
    z-index: 70;
    width: 320px;
    max-height: calc(100vh - 120px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 30px 80px -16px rgba(20,32,30,0.32), 0 8px 24px -12px rgba(20,32,30,0.18);
    font-family: var(--body);
    color: var(--ink);
    display: none;
    flex-direction: column;
    overflow: hidden;
  }
  .tweaks.is-open { display: flex; }
  .tweaks__head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px 14px;
    border-bottom: 1px solid var(--line);
  }
  .tweaks__head h3 {
    margin: 0;
    font-family: var(--font);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.01em;
    display: flex; align-items: center; gap: 8px;
  }
  .tweaks__head h3::before {
    content: ""; width: 8px; height: 8px; background: var(--teal); border-radius: 50%;
  }
  .tweaks__close {
    width: 30px; height: 30px;
    border-radius: 8px;
    color: var(--ink-2);
    display: grid; place-items: center;
  }
  .tweaks__close:hover { background: var(--gray); color: var(--ink); }
  .tweaks__body { overflow-y: auto; padding: 6px 0; }
  .tweaks__sec { padding: 14px 18px 16px; border-bottom: 1px solid var(--line); }
  .tweaks__sec:last-child { border-bottom: none; }
  .tweaks__sec h4 {
    margin: 0 0 10px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-3);
    font-weight: 500;
  }
  .seg {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    background: var(--gray);
    border-radius: 10px;
    padding: 3px;
    gap: 2px;
  }
  .seg button {
    padding: 8px 10px;
    border-radius: 8px;
    font-family: var(--body);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink-2);
    background: transparent;
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .seg button:hover { color: var(--ink); }
  .seg button.is-active { background: #fff; color: var(--teal); box-shadow: 0 1px 2px rgba(20,32,30,0.08); font-weight: 600; }
  .swatches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .sw {
    display: flex; flex-direction: column; align-items: stretch;
    background: var(--gray);
    border: 1.5px solid transparent;
    border-radius: 12px;
    padding: 8px;
    cursor: pointer;
    transition: border-color .15s ease;
  }
  .sw:hover { border-color: var(--ink-3); }
  .sw.is-active { border-color: var(--teal); background: #fff; }
  .sw__chips { display: flex; gap: 3px; margin-bottom: 6px; }
  .sw__chips i { display: block; flex: 1; height: 18px; border-radius: 4px; }
  .sw small { font-size: 11px; color: var(--ink-2); font-weight: 500; letter-spacing: -0.005em; }
  .sw.is-active small { color: var(--teal); font-weight: 600; }

  .tweaks__fab {
    position: fixed;
    right: 20px; bottom: 22px;
    z-index: 69;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: none;
    align-items: center; justify-content: center;
    box-shadow: 0 12px 28px -8px rgba(20,32,30,0.4);
    transition: transform .15s ease;
  }
  .tweaks__fab.is-visible { display: inline-flex; }
  .tweaks__fab:hover { transform: scale(1.06); }
  /* hide WA bubble when tweaks fab visible (they'd stack) */
  .tweaks__fab.is-visible ~ .wa-bubble { bottom: 90px; }

  /* device preview frame — force responsive rules via body classes so the
     preview actually reflows (real viewport may still be wide). */
  body.tw-device-mobile .nav__links,
  body.tw-device-mobile .nav__phone { display: none !important; }
  body.tw-device-mobile .nav__toggle { display: inline-flex !important; }
  body.tw-device-mobile .brand__sub { display: none; }
  body.tw-device-mobile .brand > div:not(.brand__mark) { font-size: 15px; }
  body.tw-device-mobile .brand__mark { width: 30px; height: 30px; font-size: 16px; }
  body.tw-device-mobile .nav__inner { padding: 14px 0; gap: 12px; }
  body.tw-device-mobile .nav__cta .btn--primary { padding: 10px 16px; font-size: 13px; }
  body.tw-device-tablet .nav__links,
  body.tw-device-tablet .nav__phone { display: none !important; }
  body.tw-device-tablet .nav__toggle { display: inline-flex !important; }
  body.tw-device-tablet .brand__sub { display: none; }

  body.tw-device-mobile .hero__grid,
  body.tw-device-tablet .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  body.tw-device-mobile .section__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  body.tw-device-mobile .services { grid-template-columns: 1fr !important; gap: 14px; }
  body.tw-device-mobile .about { grid-template-columns: 1fr; gap: 36px; }
  body.tw-device-mobile .about__bullets { grid-template-columns: 1fr; gap: 18px; }
  body.tw-device-mobile .gallery { grid-template-columns: 1fr; gap: 14px; }
  body.tw-device-mobile .stats { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  body.tw-device-mobile .stats__item:not(:last-child) { border-right: none; }
  body.tw-device-mobile .stats__item:nth-child(odd) { border-right: 1px solid rgba(221,241,230,0.14); }
  body.tw-device-mobile .testi { grid-template-columns: 1fr; gap: 14px; }
  body.tw-device-mobile .cta { grid-template-columns: 1fr; gap: 32px; }
  body.tw-device-mobile .foot { grid-template-columns: 1fr 1fr; gap: 28px; }

  body.tw-device-tablet .services { grid-template-columns: repeat(2, 1fr); }
  body.tw-device-tablet .services > .svc:last-child { grid-column: 1 / -1; max-width: 50%; }
  body.tw-device-tablet .gallery { grid-template-columns: repeat(2, 1fr); }
  body.tw-device-tablet .stats { grid-template-columns: repeat(2, 1fr); }
  body.tw-device-tablet .stats__item:not(:last-child) { border-right: none; }
  body.tw-device-tablet .stats__item:nth-child(odd) { border-right: 1px solid rgba(221,241,230,0.14); }
  body.tw-device-tablet .about { grid-template-columns: 1fr; gap: 40px; }
  body.tw-device-tablet .testi { grid-template-columns: 1fr; gap: 14px; }
  body.tw-device-tablet .cta { grid-template-columns: 1fr; gap: 48px; }
  body.tw-device-tablet .foot { grid-template-columns: 1fr 1fr; gap: 32px; }

  body.tw-device-mobile .hero h1 { font-size: 36px !important; }
  body.tw-device-mobile .section__head h2 { font-size: 32px !important; }
  body.tw-device-mobile .signboard__name { font-size: 44px; }
  body.tw-device-mobile .card { aspect-ratio: 4/3.6; }
  body.tw-device-mobile .card__overlay { opacity: 1; }
  body.tw-device-mobile .card__meta { opacity: 1; transform: none; }
  body.tw-device-mobile .stats__num { font-size: 44px; }

  /* device preview frame */
  body.tw-device-tablet,
  body.tw-device-mobile {
    background: #ecedf0;
  }
  body.tw-device-tablet .nav,
  body.tw-device-mobile .nav { position: relative; }
  body.tw-device-tablet > :is(header, section, footer, .wa-bubble) {
    max-width: 820px;
  }
  body.tw-device-mobile > :is(header, section, footer) {
    max-width: 412px;
  }
  body.tw-device-tablet > :is(header, section, footer),
  body.tw-device-mobile > :is(header, section, footer) {
    margin-left: auto;
    margin-right: auto;
  }
  body.tw-device-tablet,
  body.tw-device-mobile {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  body.tw-device-tablet > header,
  body.tw-device-mobile > header {
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border: 1px solid #d8d9dd;
    border-bottom: none;
    overflow: hidden;
  }
  body.tw-device-tablet > footer,
  body.tw-device-mobile > footer {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    border: 1px solid #d8d9dd;
    border-top: none;
    overflow: hidden;
  }
  body.tw-device-tablet > section,
  body.tw-device-mobile > section {
    border-left: 1px solid #d8d9dd;
    border-right: 1px solid #d8d9dd;
  }

  /* Density */
  body.tw-density-compact section { padding: 64px 0; }
  body.tw-density-spacious section { padding: 128px 0; }

  /* Hero layout */
  body.tw-hero-left .hero__grid { direction: rtl; }
  body.tw-hero-left .hero__grid > * { direction: ltr; }

  /* Accent palettes overrides via body classes */
  body.tw-accent-plum {
    --teal: #4a2a52;
    --teal-2: #5e3a67;
    --teal-3: #321a3a;
    --mint: #f3e3d4;
    --mint-2: #ead2bc;
    --lav: #efe9f1;
  }
  body.tw-accent-plum .hero h1 em::after { background: #f3e3d4; }
  body.tw-accent-plum .stats__num { color: #f3e3d4; }
  body.tw-accent-plum .cta h2 em { color: #f3e3d4; }

  body.tw-accent-midnight {
    --teal: #15233e;
    --teal-2: #243557;
    --teal-3: #0b1426;
    --mint: #ffd7c2;
    --mint-2: #f5c0a6;
    --lav: #ece9f0;
  }
  body.tw-accent-midnight .hero h1 em::after { background: #ffd7c2; }
  body.tw-accent-midnight .stats__num { color: #ffd7c2; }
  body.tw-accent-midnight .cta h2 em { color: #ffd7c2; }

  /* Small screens — tweaks panel becomes full-bleed bottom sheet */
  @media (max-width: 480px) {
    .tweaks {
      right: 12px; left: 12px;
      width: auto;
      bottom: 82px;
      max-height: 70vh;
    }
    .tweaks__fab { right: 16px; bottom: 16px; width: 50px; height: 50px; }
  }