/* =========================================================
   Gasink Printing — Design System
   Palet CMYK · bersih · minimalis · berjiwa muda
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  --cyan: #00afef;
  --cyan-600: #0089c4;
  --magenta: #ec268f;
  --magenta-600: #c4126f;
  --yellow: #fff212;
  --gold: #d99b00;
  --yellow-600: #b87d00;
  --key: #373435;

  --ink: #2a2729;
  --ink-2: #4a4649;
  --muted: #6a6569;
  --line: #e8e6ea;
  --bg: #ffffff;
  --bg-soft: #f7f6f9;
  --bg-dark: #241f22;

  --grad: linear-gradient(120deg, var(--cyan) 0%, var(--magenta) 58%, var(--gold) 100%);
  --grad-cm: linear-gradient(135deg, var(--cyan) 0%, var(--magenta) 100%);

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --pill: 999px;

  --sh-1: 0 1px 2px rgba(42, 39, 41, .06), 0 4px 14px rgba(42, 39, 41, .05);
  --sh-2: 0 10px 30px rgba(42, 39, 41, .1);
  --sh-3: 0 22px 60px rgba(42, 39, 41, .16);

  --container: 1200px;
  --gap: clamp(18px, 2.4vw, 30px);
  --section-y: clamp(42px, 5.2vw, 80px);

  --font: "Poppins", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
/* scroll-padding-top = tinggi header sticky (113px; 95px di ≤640px) + 16px ruang */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 129px; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4, h5 { color: var(--ink); line-height: 1.16; font-weight: 700; letter-spacing: -.022em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.45rem); font-weight: 800; line-height: 1.18; }
h3 { font-size: clamp(1.08rem, 1.8vw, 1.32rem); font-weight: 700; }
h4 { font-size: 1.02rem; font-weight: 700; }
p { color: var(--muted); }
.lead { font-size: clamp(1rem, 1.6vw, 1.14rem); color: var(--muted); max-width: 62ch; }
.text-grad {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.small { font-size: .875rem; }
.muted { color: var(--muted); }

/* ---------- 4. Layout ---------- */
.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: #cfd8e2; }
.section--dark h2, .section--dark h3 { color: #fff; }
.grid { display: grid; gap: var(--gap); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ---------- 5. Section header ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--magenta); background: rgba(236, 38, 143, .08);
  padding: .42rem .82rem; border-radius: var(--pill); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--grad-cm); }
.sec-head { max-width: 720px; margin-bottom: clamp(1.4rem, 2.8vw, 2.2rem); }
.sec-head.center { margin-inline: auto; }
.sec-head p { margin-top: .9rem; }

/* ---------- 6. Buttons ---------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: #fff; letter-spacing: -.01em;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .88rem 1.5rem; border-radius: var(--pill); border: 1.5px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 700; font-size: .95rem; cursor: pointer; white-space: nowrap;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease), color .2s;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.btn:active { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { --btn-bg: var(--magenta); }
.btn--primary:hover { --btn-bg: var(--magenta-600); }
.btn--cyan { --btn-bg: var(--cyan); }
.btn--cyan:hover { --btn-bg: var(--cyan-600); }
.btn--grad { background: var(--grad-cm); color: #fff; background-size: 160% 160%; }
.btn--grad:hover { background-position: 100% 0; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn--outline-light:hover { background: rgba(255, 255, 255, .12); }
.btn--sm { padding: .62rem 1.1rem; font-size: .86rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--magenta); }
.link-arrow::after { content: "→"; transition: transform .25s var(--ease); }
.link-arrow:hover::after { transform: translateX(5px); }

/* ---------- 7. Header ---------- */
.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s;
}
.header.is-stuck { border-color: var(--line); box-shadow: 0 6px 24px rgba(42, 39, 41, .07); }
.topbar { background: var(--ink); color: #c7d0da; font-size: .8rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 40px; flex-wrap: wrap; }
.topbar a:hover { color: #fff; }
.topbar-links { display: flex; gap: 1.1rem; align-items: center; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand-logo { height: 40px; width: auto; flex: none; transition: transform .3s var(--ease); }
.brand:hover .brand-logo { transform: scale(1.03); }
.footer .brand-logo { height: 46px; }
@media (max-width: 480px) { .brand-logo { height: 32px; } }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-weight: 800; font-size: 1.24rem; color: var(--ink); letter-spacing: -.03em; }
.brand-sub { font-size: .62rem; font-weight: 700; letter-spacing: .34em; color: var(--magenta); margin-top: 3px; }
.menu { display: flex; align-items: center; gap: .25rem; }
.menu .menu-lokasi { display: none; } /* hanya di menu burger ponsel, lihat @media 640px */
.menu a {
  position: relative; padding: .55rem .8rem; border-radius: var(--pill);
  font-size: .93rem; font-weight: 600; color: var(--ink-2); transition: color .2s, background .2s;
}
.menu a:hover { color: var(--ink); background: var(--bg-soft); }
.menu a.is-active { color: var(--magenta); }
.menu a.is-active::after {
  content: ""; position: absolute; left: 50%; bottom: 2px; translate: -50% 0;
  width: 18px; height: 3px; border-radius: 3px; background: var(--grad-cm);
}
.nav-cta { display: flex; align-items: center; gap: .6rem; }
.burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px;
  background: #fff; cursor: pointer; position: relative;
}
.burger span { position: absolute; left: 12px; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 21px; rotate: 45deg; }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 21px; rotate: -45deg; }

/* ---------- 8. Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(34px, 4.5vw, 64px) clamp(40px, 5.5vw, 76px); }
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(72px); opacity: .28; z-index: 0;
  animation: float 14s ease-in-out infinite;
}
.hero::before { width: 460px; height: 460px; background: var(--cyan); top: -160px; left: -140px; }
.hero::after { width: 420px; height: 420px; background: var(--magenta); bottom: -180px; right: -120px; animation-delay: -6s; }
@keyframes float { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(24px, -26px, 0); } }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.hero h1 { margin-bottom: 1rem; }
.hero .slogan {
  font-size: clamp(1rem, 1.9vw, 1.24rem); font-weight: 600; color: var(--ink-2); margin-bottom: .85rem;
}
.hero .lead { margin-bottom: 1.7rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.chip {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 600;
  padding: .4rem .8rem; border-radius: var(--pill); background: #fff; border: 1px solid var(--line); color: var(--ink-2);
}
.chip i { width: 8px; height: 8px; border-radius: 50%; display: block; }
.chip .c { background: var(--cyan); } .chip .m { background: var(--magenta); }
.chip .y { background: var(--yellow); } .chip .k { background: var(--key); }

.hero-visual { position: relative; }
.hero-visual .frame {
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-3);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform .6s var(--ease);
}
.hero-visual .frame:hover { transform: perspective(1200px) rotateY(0) rotateX(0); }
.hero-visual img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.float-card {
  position: absolute; background: #fff; border-radius: var(--r); box-shadow: var(--sh-2);
  padding: .8rem 1rem; display: flex; align-items: center; gap: .7rem; animation: bob 6s ease-in-out infinite;
}
.float-card b { display: block; color: var(--ink); font-size: .95rem; line-height: 1.2; }
.float-card span { font-size: .76rem; color: var(--muted); }
.float-card .ico { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: #fff; background: var(--grad-cm); font-size: 1rem; }
.float-card--a { left: -18px; bottom: 46px; }
.float-card--b { right: -10px; top: 34px; animation-delay: -3s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- 9. Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.stat { text-align: center; padding: 1.2rem .6rem; border-radius: var(--r); background: #fff; border: 1px solid var(--line); }
.stat b { display: block; font-size: clamp(1.75rem, 3.4vw, 2.45rem); font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1.1; }
.stat span { font-size: .85rem; color: var(--muted); font-weight: 600; }

/* ---------- 10. Marquee logo ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; animation: slide 46s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee--rev .marquee-track { animation-direction: reverse; animation-duration: 52s; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-item {
  display: grid; place-items: center; min-width: 150px; height: 68px; padding-inline: 1.5rem;
  filter: grayscale(1); opacity: .62; transition: .3s var(--ease);
}
.logo-item:hover { filter: none; opacity: 1; transform: translateY(-3px); }
.logo-item img { max-height: 54px; width: auto; }

/* ---------- 11. Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-2); border-color: transparent; }
.card-media { position: relative; overflow: hidden; background: var(--bg-soft); }
.card-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 1.1rem 1.2rem 1.35rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.card-body h3 { font-size: 1.08rem; }
.card-body p { font-size: .9rem; }
.card-foot { margin-top: auto; padding-top: .85rem; display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
/* Kartu produk tanpa harga: tautan Detail tetap rata kanan seperti sebelumnya. */
.card-foot--solo { justify-content: flex-end; }
.price { font-weight: 800; color: var(--magenta); font-size: .95rem; }
.price small { display: block; font-weight: 600; color: var(--muted); font-size: .72rem; }
.tag {
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  background: rgba(255, 255, 255, .95); color: var(--ink); font-size: .72rem; font-weight: 800;
  padding: .3rem .65rem; border-radius: var(--pill); letter-spacing: .02em;
}
.tag--hot { background: var(--magenta); color: #fff; }

/* feature cards */
.feature { padding: 1.6rem; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); transition: .35s var(--ease); }
.feature:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.feature .ico {
  width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center;
  font-size: 1.25rem; color: #fff; margin-bottom: 1rem; background: var(--grad-cm);
}
.feature:nth-child(2) .ico { background: linear-gradient(135deg, var(--magenta), var(--yellow)); }
.feature:nth-child(3) .ico { background: linear-gradient(135deg, var(--yellow), var(--cyan)); }
.feature:nth-child(4) .ico { background: linear-gradient(135deg, var(--key), var(--cyan)); }
.feature h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.feature p { font-size: .92rem; }

/* about */
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.about-visual { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-2); }
.about-visual img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.check-list { display: grid; gap: .7rem; margin: 1.4rem 0; }
.check-list li { display: flex; gap: .65rem; align-items: flex-start; font-size: 1rem; color: var(--ink-2); }
.check-list li::before {
  content: "✓"; flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(0, 175, 239, .12); color: var(--cyan-600); font-size: .74rem; font-weight: 800; margin-top: 2px;
}

/* ---------- 12. Slider (portofolio & testimoni) ---------- */
.slider { position: relative; }
.slider-track {
  display: flex; gap: var(--gap); overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: .6rem; scrollbar-width: none;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-track > * { scroll-snap-align: start; flex: 0 0 clamp(260px, 32%, 380px); }
.slider-nav { display: flex; gap: .5rem; }
.sl-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff;
  cursor: pointer; display: grid; place-items: center; color: var(--ink); transition: .25s var(--ease);
}
.sl-btn:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.slider-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.slider-head .sec-head { margin-bottom: 0; }

.shot { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1); }
.shot img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .7s var(--ease); }
.shot:hover img { transform: scale(1.07); }
.shot figcaption {
  position: absolute; inset: auto 0 0 0; padding: 2.6rem 1.1rem 1rem; color: #fff;
  background: linear-gradient(transparent, rgba(20, 16, 18, .35) 35%, rgba(20, 16, 18, .88));
  font-weight: 700; font-size: .95rem;
}
.shot figcaption span { display: block; font-weight: 500; font-size: .8rem; opacity: .82; }

/* testimoni */
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem;
  display: flex; flex-direction: column; gap: 1rem; transition: .35s var(--ease);
}
.quote:hover { box-shadow: var(--sh-2); transform: translateY(-5px); }
.stars { color: var(--gold); letter-spacing: .12em; font-size: .95rem; }
.quote p { color: var(--ink-2); font-size: .96rem; }
.who { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: var(--grad-cm); color: #fff; font-weight: 800; font-size: .95rem;
}
.who b { display: block; color: var(--ink); font-size: .92rem; }
.who span { font-size: .8rem; color: var(--muted); }

/* ---------- 13. Proses ---------- */
.steps { counter-reset: s; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.step { position: relative; padding: 1.5rem 1.2rem; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); }
.step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  font-size: 2rem; font-weight: 800; letter-spacing: -.04em; line-height: 1.1; color: transparent; background: var(--grad-cm);
  -webkit-background-clip: text; background-clip: text; display: block; margin-bottom: .4rem; letter-spacing: -.04em;
}
.step h3 { font-size: 1.02rem; margin-bottom: .35rem; }
.step p { font-size: .9rem; }

/* ---------- 14. Artikel ---------- */
.post-media img { aspect-ratio: 16 / 9; }
.post-meta { display: flex; gap: .8rem; align-items: center; font-size: .78rem; color: var(--muted); font-weight: 600; }
.post-meta .cat { color: var(--cyan-600); }

/* ---------- 15. Kontak ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(26px, 4vw, 52px); align-items: start; }
.info-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.info-item { display: flex; gap: .9rem; align-items: flex-start; }
.info-item .ico {
  width: 42px; height: 42px; border-radius: 13px; flex: none; display: grid; place-items: center;
  background: rgba(0, 175, 239, .1); color: var(--cyan-600); font-size: 1.05rem;
}
.info-item:nth-child(2) .ico { background: rgba(236, 38, 143, .1); color: var(--magenta); }
.info-item:nth-child(3) .ico { background: rgba(255, 242, 18, .3); color: var(--yellow-600); }
.info-item:nth-child(4) .ico { background: rgba(42, 39, 41, .07); color: var(--ink); }
.info-item b { display: block; color: var(--ink); font-size: .95rem; }
.info-item a, .info-item p { font-size: .92rem; color: var(--muted); }
.info-item a:hover { color: var(--magenta); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(1.3rem, 3vw, 2rem); box-shadow: var(--sh-1); }
.field { display: grid; gap: .38rem; margin-bottom: .95rem; }
.field label { font-size: .84rem; font-weight: 700; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--bg-soft); transition: border-color .2s, background .2s, box-shadow .2s; font-size: .95rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); background: #fff; box-shadow: 0 0 0 4px rgba(0, 175, 239, .12);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: .8rem; }
.map-wrap { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-1); margin-top: 2.5rem; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- 16. CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(2rem, 5vw, 3.6rem);
  background: var(--ink); color: #fff; text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: .55;
  background: radial-gradient(circle at 12% 18%, rgba(0, 175, 239, .55), transparent 45%),
              radial-gradient(circle at 88% 78%, rgba(236, 38, 143, .5), transparent 46%),
              radial-gradient(circle at 65% 12%, rgba(255, 242, 18, .32), transparent 40%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .82); margin: .9rem auto 1.7rem; max-width: 56ch; }

/* ---------- 17. Footer ---------- */
.footer { background: var(--bg-dark); color: #97a3b0; padding-block: clamp(40px, 5vw, 62px) 0; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; letter-spacing: .01em; }
.footer a { color: #97a3b0; font-size: .92rem; transition: color .2s; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.35fr; gap: clamp(24px, 3vw, 46px); }
.footer .brand-name { color: #fff; }
.footer ul { display: grid; gap: .6rem; }
.footer p { font-size: .92rem; color: #97a3b0; }
.socials { display: flex; gap: .55rem; margin-top: 1.1rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .07); color: #cfd8e2; transition: .25s var(--ease);
}
.socials a:hover { background: var(--magenta); color: #fff; transform: translateY(-3px); }
.footer-bottom {
  margin-top: clamp(32px, 4vw, 52px); border-top: 1px solid rgba(255, 255, 255, .09);
  padding-block: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem;
}
.cmyk-bar { display: flex; height: 5px; }
.cmyk-bar i { flex: 1; }
.cmyk-bar i:nth-child(1) { background: var(--cyan); }
.cmyk-bar i:nth-child(2) { background: var(--magenta); }
.cmyk-bar i:nth-child(3) { background: var(--yellow); }
.cmyk-bar i:nth-child(4) { background: var(--key); }

/* ---------- 18. Floating actions ---------- */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 80; display: grid; gap: .6rem;
}
.fab a, .fab button {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; border: 0; cursor: pointer;
  box-shadow: var(--sh-2); transition: .3s var(--ease); color: #fff;
}
.fab .wa { background: #25d366; }
.fab .top { background: var(--ink); opacity: 0; pointer-events: none; transform: translateY(10px); }
.fab .top.is-on { opacity: 1; pointer-events: auto; transform: none; }
.fab a:hover, .fab button:hover { transform: translateY(-4px) scale(1.05); }
.fab svg { width: 26px; height: 26px; }

/* ---------- 19. Page hero (halaman dalam) ---------- */
.page-hero { position: relative; background: var(--bg-soft); padding-block: clamp(32px, 4.2vw, 56px); border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; width: 420px; height: 420px; right: -140px; top: -180px;
  background: var(--grad-cm); filter: blur(90px); opacity: .18; border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.crumb { display: flex; gap: .45rem; align-items: center; font-size: .82rem; color: var(--muted); margin-bottom: .9rem; flex-wrap: wrap; }
.crumb a:hover { color: var(--magenta); }
.crumb span { opacity: .5; }

/* ---------- 20. Filter ---------- */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filter-btn {
  padding: .55rem 1.05rem; border-radius: var(--pill); border: 1.5px solid var(--line); background: #fff;
  font-size: .88rem; font-weight: 700; color: var(--ink-2); cursor: pointer; transition: .25s var(--ease);
}
.filter-btn:hover { border-color: var(--ink); }
.filter-btn.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------- 21. Tabel harga ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; }
table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: .93rem; }
thead th { background: var(--bg-soft); text-align: left; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); padding: .95rem 1.1rem; }
tbody td { padding: .9rem 1.1rem; border-top: 1px solid var(--line); color: var(--ink-2); }
tbody tr:hover { background: rgba(0, 175, 239, .05); }
tbody td.p { font-weight: 700; color: var(--magenta); white-space: nowrap; }
tbody td.p-none { color: var(--muted); }

/* ---------- 22. Accordion / FAQ ---------- */
.acc { border: 1px solid var(--line); border-radius: var(--r); background: #fff; overflow: hidden; }
.acc + .acc { margin-top: .7rem; }
.acc summary {
  cursor: pointer; padding: 1.05rem 1.2rem; font-weight: 700; color: var(--ink); list-style: none;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center; font-size: .98rem;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-size: 1.35rem; color: var(--magenta); transition: transform .3s var(--ease); line-height: 1; }
.acc[open] summary::after { transform: rotate(45deg); }
.acc .acc-body { padding: 0 1.2rem 1.15rem; font-size: .93rem; color: var(--muted); }

/* ---------- 23. Prose (legal & artikel) ---------- */
.prose { max-width: 78ch; }
.prose h2 { font-weight: 700; line-height: 1.3; font-size: clamp(1.24rem, 2.2vw, 1.55rem); margin: 2.2rem 0 .8rem; }
.prose h3 { font-size: 1.12rem; margin: 1.6rem 0 .55rem; }
.prose p, .prose li { color: var(--muted); font-size: .98rem; }
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.25rem; display: grid; gap: .5rem; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose strong { color: var(--ink); }
.prose a { color: var(--magenta); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
  border-left: 4px solid var(--cyan); background: var(--bg-soft); padding: 1rem 1.2rem;
  border-radius: 0 var(--r) var(--r) 0; margin: 1.4rem 0; color: var(--ink-2);
}
.prose img { border-radius: var(--r-lg); margin: 1.4rem 0; }
.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.toc { position: sticky; top: 100px; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.2rem; background: #fff; }
.toc h4 { margin-bottom: .8rem; }
.toc ul { display: grid; gap: .45rem; }
.toc a { font-size: .88rem; color: var(--muted); }
.toc a:hover { color: var(--magenta); }
.note {
  border: 1px dashed var(--line); background: var(--bg-soft); border-radius: var(--r);
  padding: 1rem 1.15rem; font-size: .9rem; color: var(--muted);
}

/* ---------- 24. Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .09s; }
.reveal[data-d="2"] { transition-delay: .18s; }
.reveal[data-d="3"] { transition-delay: .27s; }
.reveal[data-d="4"] { transition-delay: .36s; }

/* ---------- 25. Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual .frame { transform: none; }
  .g-4, .steps, .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-layout { grid-template-columns: 1fr; }
  .toc { position: static; }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1080px) {
  .menu { display: none; }
  .burger { display: block; }
  .header.is-open .menu {
    display: flex; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: .8rem 1.2rem 1.2rem; gap: .2rem;
    box-shadow: var(--sh-2); animation: drop .3s var(--ease);
  }
  .header.is-open .menu a { padding: .8rem .6rem; border-radius: var(--r-sm); }
  .header.is-open .menu a.is-active::after { display: none; }
  @keyframes drop { from { opacity: 0; transform: translateY(-10px); } }
  .nav { position: relative; }
  .topbar-links .hide-sm { display: none; }
}
@media (max-width: 640px) {
  .g-2, .g-3, .g-4, .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .slider-track > * { flex: 0 0 82%; }
  .float-card { padding: .6rem .75rem; max-width: 64%; animation: none; }
  .float-card b { font-size: .82rem; }
  .float-card span { font-size: .68rem; }
  .float-card .ico { width: 30px; height: 30px; border-radius: 9px; }
  .float-card--a { left: 8px; bottom: 10px; }
  .float-card--b { right: 8px; top: 10px; }
  .btn { padding: .8rem 1.25rem; }
  .map-wrap iframe { height: 320px; }
  .fab a, .fab button { width: 48px; height: 48px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 26. Print ---------- */
@media print {
  .header, .footer, .fab, .cta-band, .marquee { display: none !important; }
  body { color: #000; }
}

/* ---------- 27. Mesin & bahan ---------- */
.machine-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.machine {
  display: flex; gap: .9rem; align-items: flex-start; padding: 1.15rem 1.2rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); transition: .35s var(--ease);
}
.machine:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.machine .badge {
  width: 46px; height: 46px; flex: none; border-radius: 13px; display: grid; place-items: center;
  font-size: .82rem; font-weight: 800; letter-spacing: -.01em; color: #fff; background: var(--ink);
}
.machine:nth-child(4n+1) .badge { background: linear-gradient(135deg, var(--cyan), var(--cyan-600)); }
.machine:nth-child(4n+2) .badge { background: linear-gradient(135deg, var(--magenta), var(--magenta-600)); }
.machine:nth-child(4n+3) .badge { background: linear-gradient(135deg, var(--gold), var(--yellow-600)); }
.machine b { display: block; color: var(--ink); font-size: .97rem; line-height: 1.3; }
.machine span { display: block; font-size: .82rem; color: var(--muted); margin-top: .2rem; }

.material-box { margin-top: var(--gap); padding: 1.4rem 1.5rem; border: 1px dashed var(--line); border-radius: var(--r-lg); background: #fff; }
.material-box h3 { font-size: 1rem; margin-bottom: .9rem; }
.chip-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip-list li {
  font-size: .84rem; font-weight: 600; color: var(--ink-2); background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: var(--pill); padding: .38rem .85rem;
}

/* ---------- 28. Layout artikel + sidebar ---------- */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(28px, 4vw, 56px); align-items: start; }
.sidebar { position: sticky; top: 100px; display: grid; gap: 1.2rem; }
.widget { border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; padding: 1.3rem; }
.widget h3 { font-size: 1rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.widget h3::before { content: ""; width: 4px; height: 18px; border-radius: 3px; background: var(--grad-cm); }
.pop-list { display: grid; gap: .9rem; counter-reset: p; }
.pop-item { display: flex; gap: .8rem; align-items: center; padding-bottom: .9rem; border-bottom: 1px solid var(--line); }
.pop-list li:last-child .pop-item { border-bottom: 0; padding-bottom: 0; }
.pop-item img { width: 68px; height: 48px; object-fit: cover; border-radius: 9px; flex: none; }
.pop-item .t { font-size: .86rem; font-weight: 600; color: var(--ink); line-height: 1.35; display: block; transition: color .2s; }
.pop-item:hover .t { color: var(--magenta); }
.pop-item .m { font-size: .72rem; color: var(--muted); margin-top: .2rem; display: block; }
.pop-num {
  counter-increment: p; font-size: .82rem; font-weight: 800; color: var(--muted);
  opacity: .55; flex: none; width: 18px; text-align: center;
}
.pop-num::before { content: counter(p, decimal-leading-zero); }

/* ---------- 29. Tombol berbagi ---------- */
.share { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem; margin: 2rem 0 .5rem; }
.share > span { font-size: .84rem; font-weight: 700; color: var(--ink); margin-right: .2rem; }
.share a, .share button {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
  border: 1px solid var(--line); background: #fff; color: var(--ink-2); transition: .25s var(--ease);
}
.share a:hover, .share button:hover { transform: translateY(-3px); color: #fff; border-color: transparent; box-shadow: var(--sh-1); }
.share .s-wa:hover { background: #25d366; }
.share .s-fb:hover { background: #1877f2; }
.share .s-x:hover { background: #101418; }
.share .s-tg:hover { background: #29a9eb; }
.share .s-copy:hover { background: var(--magenta); }
.share svg { width: 18px; height: 18px; }
.share .ok { font-size: .8rem; font-weight: 600; color: var(--cyan-600); }

@media (max-width: 1024px) {
  .machine-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .machine-grid { grid-template-columns: 1fr; }
}

/* ---------- 30. Penyeragaman ukuran teks Tentang Kami ---------- */
.about-grid p, .about-grid .lead, .about-grid li { font-size: 1rem; line-height: 1.75; }
.about-grid .lead { max-width: none; }

/* ---------- 31. Kalkulator estimasi biaya ---------- */
.calc-table { min-width: 940px; table-layout: fixed; }
.calc-size input { max-width: 92px; min-width: 0; }
.calc-table thead th { white-space: nowrap; }
.calc-table td { padding: .5rem .6rem; vertical-align: middle; }
.calc-table tbody td:last-child { color: inherit; font-weight: 400; }
.calc-table input {
  width: 100%; padding: .52rem .62rem; border: 1.5px solid var(--line); border-radius: 10px;
  background: #fff; font-size: .92rem; transition: border-color .2s, box-shadow .2s;
}
.calc-table input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0, 175, 239, .14); }
.calc-no { text-align: center; font-weight: 700; color: var(--muted); }
.calc-row.is-isi .calc-no { color: var(--ink); }

.ac { position: relative; }
.ac-list {
  position: absolute; z-index: 30; top: calc(100% + 5px); left: 0; right: 0;
  max-height: 268px; overflow: auto; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--sh-3); padding: .35rem; margin: 0;
}
/* daftar saran diletakkan di <body> agar bebas dari kotak tabel yang punya scroll */
.ac-list.ac-float { position: fixed; right: auto; z-index: 120; min-width: 260px; }
.ac-list li { padding: .48rem .6rem; border-radius: 9px; cursor: pointer; display: flex; flex-direction: column; gap: 2px; }
.ac-list li b { font-size: .88rem; font-weight: 650; color: var(--ink); }
.ac-list li span { font-size: .76rem; color: var(--muted); }
.ac-list li:hover, .ac-list li.is-on { background: var(--bg-soft); }

/* Kolom ukuran ditumpuk: baris input di atas, keterangan luas di bawahnya.
   Grup input sendiri tidak pernah wrap — kalau sempit, kotaknya yang mengecil. */
.calc-size { display: flex; flex-direction: column; gap: .3rem; }
.calc-fields { display: flex; align-items: center; gap: .35rem; min-width: 0; }
.calc-size .calc-x { color: var(--muted); font-size: .85rem; }
.calc-size .calc-sat { color: var(--muted); font-size: .78rem; font-weight: 700; }
.calc-size .calc-kosong { display: none; color: var(--muted); }
/* Keterangan luas selalu menempati baris sendiri dengan tinggi yang dicadangkan,
   supaya panjang teksnya tidak pernah menggeser lebar kolom atau tinggi baris. */
.calc-hint {
  min-width: 0; min-height: 1.02rem;
  font-size: .72rem; line-height: 1.02rem; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.calc-size.is-kosong .calc-l, .calc-size.is-kosong .calc-p,
.calc-size.is-kosong .calc-x, .calc-size.is-kosong .calc-sat { display: none; }
/* Placeholder "—" memakai kotak sebesar input (padding/border/font yang sama)
   agar tinggi baris tetap seragam untuk semua jenis satuan. */
.calc-size.is-kosong .calc-kosong {
  display: flex; align-items: center;
  padding: .52rem .62rem; border: 1.5px solid transparent; font-size: .92rem;
}

.calc-harga { white-space: nowrap; font-weight: 600; color: var(--ink-2); }
.calc-jumlah { white-space: nowrap; font-weight: 700; color: var(--magenta); }
.calc-del {
  width: 30px; height: 30px; border-radius: 9px; border: 1px solid var(--line); background: #fff;
  color: var(--muted); cursor: pointer; font-size: 1.05rem; line-height: 1; transition: .2s var(--ease);
}
.calc-del:hover { border-color: var(--magenta); color: var(--magenta); }

.calc-table tfoot td { border-top: 2px solid var(--ink); padding: .95rem .6rem; }
.calc-total-label { text-align: right; font-weight: 700; color: var(--ink); }
.calc-total { font-size: 1.15rem; font-weight: 800; color: var(--magenta); white-space: nowrap; }

.calc-actions { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; margin-top: 1.1rem; }
.calc-spacer { flex: 1 1 auto; }
.calc-notes { margin-top: 2.2rem; max-width: 78ch; }
.calc-notes h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.calc-notes ol { margin: 0 0 1.2rem 1.15rem; display: grid; gap: .45rem; }
.calc-notes ol li { list-style: decimal; color: var(--muted); font-size: .94rem; }

@media (max-width: 640px) {
  .calc-actions .btn { flex: 1 1 auto; justify-content: center; }
  .calc-spacer { display: none; }
}

@media print {
  .calc-actions, .calc-del, .page-hero .btn-row, .crumb { display: none !important; }
  .calc-table { min-width: 0; }
  .calc-table input { border: 0 !important; padding: 0 !important; background: transparent !important; }
  .table-wrap { overflow: visible !important; border: 0 !important; }
  .calc-notes ol { display: none; }
}

/* kartu bertumpuk untuk layar kecil */
@media (max-width: 700px) {
  .calc .table-wrap { overflow: visible; border: 0; background: transparent; }
  .calc-table, .calc-table tbody, .calc-table tfoot { display: block; min-width: 0; }
  .calc-table thead { display: none; }
  .calc-row {
    display: grid; grid-template-columns: 1fr auto; gap: .55rem .7rem; align-items: end;
    grid-template-areas: 'no del' 'bahan bahan' 'ukuran ukuran' 'qty harga' 'jumlah jumlah';
    border: 1px solid var(--line); border-radius: 16px; background: #fff;
    padding: .85rem .9rem 1rem; margin-bottom: .7rem;
  }
  .calc-row:hover { background: #fff; }
  .calc-row td { display: block; border: 0; padding: 0; }
  .calc-row td[data-l]:not(.calc-no)::before {
    content: attr(data-l); display: block; font-size: .7rem; font-weight: 700;
    letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: .25rem;
  }
  .calc-row td:nth-child(1) { grid-area: no; }
  .calc-row td:nth-child(2) { grid-area: bahan; }
  .calc-row td:nth-child(3) { grid-area: ukuran; }
  .calc-row td:nth-child(4) { grid-area: qty; }
  .calc-row td:nth-child(5) { grid-area: harga; }
  .calc-row td:nth-child(6) { grid-area: jumlah; }
  .calc-row td:nth-child(7) { grid-area: del; justify-self: end; }
  .calc-no {
    text-align: left; font-size: .74rem; font-weight: 800; letter-spacing: .05em;
    text-transform: uppercase; color: var(--muted);
  }
  .calc-row.is-isi .calc-no::before { content: 'Item '; }
  .calc-row:not(.is-isi) .calc-no::before { content: 'Baris baru'; }
  .calc-size input { max-width: none; }
  .calc-size.is-m2 .calc-fields { display: grid; grid-template-columns: 1fr auto 1fr auto; }
  .calc-harga, .calc-jumlah { font-size: 1rem; }
  .calc-jumlah {
    border-top: 1px dashed var(--line); padding-top: .6rem; margin-top: .1rem;
    display: flex; align-items: baseline; justify-content: space-between; gap: .6rem;
  }
  .calc-row td.calc-jumlah::before { margin-bottom: 0; }
  .calc-table tfoot tr {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    border-top: 2px solid var(--ink); padding-top: .9rem;
  }
  .calc-table tfoot td { border: 0; padding: 0; }
  .calc-total-label { text-align: left; }
  .calc-table tfoot td:last-child { display: none; }
}
/* ---------- 32. Foto tim di bagian Tentang Kami ---------- */
.about-visual--tim {
  background: linear-gradient(150deg, #eaf6fd 0%, #f7ecf6 52%, #fdf7e6 100%);
  aspect-ratio: 1 / 1.06;
  display: flex; align-items: flex-end; justify-content: center;
  isolation: isolate;
}
.about-visual--tim::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(42, 39, 41, .085) 1.8px, transparent 2px);
  background-size: 16px 16px;
}
.about-visual--tim::after {
  content: ""; position: absolute; z-index: 0;
  width: 76%; aspect-ratio: 1; left: 50%; bottom: 8%; translate: -50% 0;
  border-radius: 50%; background: var(--grad-cm); opacity: .17;
}
.about-visual--tim picture { position: relative; z-index: 1; display: block; width: 100%; height: 100%; }
.about-visual--tim img {
  width: 100%; height: 100%; aspect-ratio: auto;
  object-fit: contain; object-position: bottom center;
  filter: drop-shadow(0 16px 26px rgba(42, 39, 41, .22));
}

/* ---------- 33. Perapian header di layar kecil ---------- */
@media (max-width: 640px) {
  html { scroll-padding-top: 111px; }
  /* header ponsel tidak cukup ruang (logo akan terhimpit), jadi Lokasi pindah ke menu burger */
  .nav-cta .btn--ghost { display: none; }
  .menu .menu-lokasi { display: block; }
  .topbar { font-size: .72rem; }
  .topbar .container { min-height: 34px; gap: .6rem; flex-wrap: nowrap; }
  .topbar .hide-xs { display: none; }
  .topbar-links { gap: .7rem; flex: none; }
  .topbar-links a { white-space: nowrap; }
  .nav { min-height: 60px; gap: .5rem; }
  .brand-logo { height: 36px; }
  .nav-cta { gap: .45rem; }
  .nav-cta .btn--sm { padding: .48rem .8rem; font-size: .78rem; }
  .burger { width: 40px; height: 40px; }
  .burger span { left: 10px; width: 20px; }
  .burger span:nth-child(1) { top: 13px; }
  .burger span:nth-child(2) { top: 19px; }
  .burger span:nth-child(3) { top: 25px; }
  .burger[aria-expanded="true"] span:nth-child(1),
  .burger[aria-expanded="true"] span:nth-child(3) { top: 19px; }
}
@media (max-width: 380px) {
  .topbar { font-size: .68rem; }
  .brand-logo { height: 32px; }
  .nav-cta .btn--sm { padding: .45rem .7rem; font-size: .74rem; }
}
