/* ===========================================================
   Ningbo Gangjie Co., Ltd — design system
   Industrial-modern: graphite + signal amber, zero web-font cost
   =========================================================== */

:root {
  --ink: #14161b;
  --ink-soft: #2a2e37;
  --paper: #f7f5f1;
  --paper-dim: #eeebe4;
  --steel: #3e4c59;
  --steel-light: #7c8a99;
  --amber: #ff6a1a;
  --amber-dark: #e2570d;
  --amber-soft: #ffe4d1;
  --line: #e2ded4;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px -12px rgba(20, 22, 27, 0.25);
  --shadow-sm: 0 4px 14px -6px rgba(20, 22, 27, 0.18);
  --font: -apple-system, "Segoe UI", "Inter", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; display: block; height: auto; }
/* safety net: our 24x24-viewBox icon svgs must never fall back to the 300x150 replaced-element default */
svg[viewBox="0 0 24 24"] { width: 1em; height: 1em; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dark);
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}

h1 { font-size: clamp(34px, 5vw, 60px); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
h3 { font-size: 20px; font-weight: 700; }
.lede { font-size: 18px; color: var(--steel); max-width: 60ch; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--amber); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); background: var(--amber-dark); color: var(--white); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn-light { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-light:hover { background: var(--white); color: var(--ink); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 245, 241, 0.98);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
/* note: intentionally no backdrop-filter here — it would make this header the
   containing block for the fixed-position .main-nav mobile overlay inside it,
   collapsing the overlay to the header's own height instead of the full viewport */
.site-header.scrolled { border-color: var(--line); background: rgba(247, 245, 241, 0.97); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -0.01em; }
.brand .mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); font-weight: 900; font-size: 17px;
  box-shadow: var(--shadow-sm);
}
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a { font-weight: 600; font-size: 15px; color: var(--ink-soft); position: relative; padding: 6px 0; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--amber);
  transition: right .25s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.main-nav a.active { color: var(--ink); }
.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; flex-shrink: 0; white-space: nowrap; }
.header-phone svg { flex: none; width: 20px; height: 20px; }
.nav-toggle svg { width: 20px; height: 20px; }
.header-phone .txt { white-space: nowrap; }
.brand { flex-shrink: 0; white-space: nowrap; }
.main-nav { flex-shrink: 1; }
.main-nav a { white-space: nowrap; }
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .main-nav { position: fixed; inset: 78px 0 0 0; background: var(--paper); flex-direction: column; justify-content: flex-start; padding: 30px 24px; gap: 22px; transform: translateX(100%); transition: transform .35s var(--ease); }
  .main-nav.open { transform: translateX(0); }
  .header-phone span.txt { display: none; }
  .nav-toggle { display: flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid var(--line); background: var(--white); }
}
@media (max-width: 560px) {
  .header-cta .btn-primary { display: none; }
  .brand span:last-child { display: none; }
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  padding: 90px 0 70px;
}
.hero-waves { position: absolute; inset: 0; z-index: 0; opacity: 0; transition: opacity 1.6s var(--ease); }
.hero-waves.is-ready { opacity: 1; }
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(100deg, rgba(20,22,27,.94) 0%, rgba(20,22,27,.62) 38%, rgba(20,22,27,.18) 65%, rgba(20,22,27,.5) 100%),
    radial-gradient(circle at 85% 15%, rgba(255,106,26,.22), transparent 45%);
  pointer-events: none;
}
.hero > .container, .hero > .hero-grid { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.hero-copy .lede { color: rgba(255,255,255,.72); }
.hero-copy h1 { margin: 16px 0 20px; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat .num { font-size: 34px; font-weight: 900; color: var(--amber); line-height: 1; }
.hero-stat .lbl { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 6px; }
.hero-visual {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5;
  background: radial-gradient(circle at 50% 38%, #363b45 0%, var(--ink-soft) 55%, var(--ink) 100%);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
}
.hero-visual img { width: 100%; height: 100%; object-fit: contain; padding: 34px 34px 70px; }
.hero-visual .badge-float {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  background: rgba(20,22,27,.75); backdrop-filter: blur(8px);
  border-radius: var(--radius-sm); padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.hero-visual .badge-float .dot { width: 10px; height: 10px; border-radius: 50%; background: #38d97a; box-shadow: 0 0 0 4px rgba(56,217,122,.2); flex: none; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/9; }
}

/* ---------------- Marquee ---------------- */
.marquee-strip { background: var(--ink); border-top: 1px solid rgba(255,255,255,.08); overflow: hidden; padding: 18px 0; }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track span { font-size: 20px; font-weight: 800; color: rgba(255,255,255,.35); letter-spacing: .04em; white-space: nowrap; }
.marquee-track span b { color: rgba(255,255,255,.85); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------- Sections ---------------- */
.section { padding: 84px 0; }
.section-alt { background: var(--white); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------------- Category grid ---------------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--ink); aspect-ratio: 1/1;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-card .cat-img-wrap {
  position: absolute; inset: 14px 14px 38%;
  border-radius: 12px;
  background: linear-gradient(160deg, #f5f2ea, #e6e2d6);
  display: flex; align-items: center; justify-content: center;
  padding: 16px; overflow: hidden;
}
.cat-card img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .4s var(--ease);
}
.cat-card:hover img { transform: scale(1.06) translateY(-4px); }
.cat-card .cat-body {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
  color: var(--white);
  background: linear-gradient(180deg, transparent 0%, rgba(20,22,27,.55) 46%, rgba(20,22,27,.96) 100%);
}
.cat-card .cat-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--amber); display: flex; align-items: center; justify-content: center; margin-bottom: auto; color: var(--ink); }
.cat-card .cat-icon svg { width: 22px; height: 22px; }
.cat-card h3 { font-size: 19px; }
.cat-card .cat-count { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 4px; }

@media (max-width: 1000px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; } .cat-card h3 { font-size: 15px; } }

/* ---------------- Product grid / cards ---------------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: transparent; }
.product-thumb { position: relative; aspect-ratio: 1/1; background: var(--paper-dim); overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .4s var(--ease); }
.product-card:hover .product-thumb img { transform: scale(1.06); }
.product-thumb .tag-new { position: absolute; top: 10px; left: 10px; background: var(--amber); color: var(--ink); font-size: 11px; font-weight: 800; padding: 4px 9px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.product-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-size: 12px; font-weight: 700; color: var(--amber-dark); text-transform: uppercase; letter-spacing: .05em; }
.product-name { font-size: 15px; font-weight: 700; line-height: 1.35; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.product-link { font-size: 13px; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 6px; }
.product-link svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.product-card:hover .product-link svg { transform: translateX(3px); }

@media (max-width: 1000px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } .product-body { padding: 12px; } }

/* ---------------- Pills / chips (subcategory filters) ---------------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.chip { padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); font-size: 14px; font-weight: 600; color: var(--steel); transition: all .2s var(--ease); }
.chip:hover { border-color: var(--amber); color: var(--ink); }
.chip.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ---------------- Breadcrumb ---------------- */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; color: var(--steel-light); padding: 22px 0 0; }
.breadcrumb a:hover { color: var(--amber-dark); }
.breadcrumb .sep { opacity: .5; }

/* ---------------- Pagination ---------------- */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 52px; flex-wrap: wrap; }
.pagination a, .pagination span { min-width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; font-weight: 700; font-size: 14px; border: 1px solid var(--line); background: var(--white); }
.pagination a:hover { border-color: var(--amber); color: var(--amber-dark); }
.pagination .current { background: var(--ink); color: var(--white); border-color: var(--ink); }
.pagination .disabled { opacity: .35; pointer-events: none; }

/* ---------------- Process steps ---------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); position: relative; overflow: hidden; }
.step .step-no { font-size: 42px; font-weight: 900; color: var(--paper-dim); position: absolute; top: 8px; right: 14px; line-height: 1; z-index: 0; }
.step h3, .step p { position: relative; z-index: 1; }
.step h3 { margin: 0 40px 10px 0; }
.step p { color: var(--steel); font-size: 14px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------------- Split / about ---------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split ul.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink-soft); }
.check-list svg { flex: none; width: 22px; height: 22px; color: var(--amber-dark); margin-top: 1px; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 30px; } }

/* ---------------- Brand cards ---------------- */
.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.brand-card { background: var(--ink); color: var(--white); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 6px; transition: transform .3s var(--ease); }
.brand-card:hover { transform: translateY(-6px); }
.brand-card .brand-name { font-size: 24px; font-weight: 900; }
.brand-card .brand-count { color: var(--amber); font-weight: 700; font-size: 14px; }
.brand-card p { color: rgba(255,255,255,.6); font-size: 13px; margin-top: 8px; }
@media (max-width: 900px) { .brand-grid { grid-template-columns: 1fr 1fr; } }

/* ---------------- FAQ accordion ---------------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; background: none; border: none; text-align: left; font-size: 16px; font-weight: 700; }
.faq-q .plus { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--paper-dim); display: flex; align-items: center; justify-content: center; position: relative; transition: transform .3s var(--ease), background .3s var(--ease); }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; }
.faq-q .plus::before { width: 12px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 12px; transition: opacity .25s var(--ease); }
.faq-item.open .faq-q .plus { background: var(--amber); transform: rotate(180deg); }
.faq-item.open .faq-q .plus::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 22px 20px; color: var(--steel); font-size: 15px; line-height: 1.6; }

/* ---------------- Contact ---------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-card { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-card:last-child { border-bottom: none; }
.contact-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--amber-soft); color: var(--amber-dark); display: flex; align-items: center; justify-content: center; flex: none; }
.contact-icon svg { width: 22px; height: 22px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--steel); }
.form-field input, .form-field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 15px; background: var(--white);
  transition: border-color .2s var(--ease);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--amber); }
.form-field textarea { resize: vertical; min-height: 120px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------------- Map embed ---------------- */
.map-embed {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); aspect-ratio: 16/6; background: var(--paper-dim);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 700px) { .map-embed { aspect-ratio: 4/5; } }

/* ---------------- Product detail ---------------- */
.product-detail { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; padding: 40px 0 0; }
.pd-gallery-main { border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--line); aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.pd-gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 30px; }
.pd-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.pd-thumbs button { width: 74px; height: 74px; border-radius: 10px; border: 2px solid var(--line); background: var(--white); overflow: hidden; padding: 6px; }
.pd-thumbs button.active { border-color: var(--amber); }
.pd-thumbs img { width: 100%; height: 100%; object-fit: contain; }
.pd-info .product-cat { margin-bottom: 10px; }
.pd-info h1 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 16px; }
.pd-meta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0 28px; }
.pd-meta-pill { background: var(--paper-dim); border-radius: 999px; padding: 9px 16px; font-size: 13px; font-weight: 700; color: var(--steel); }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table td { padding: 12px 4px; font-size: 14px; }
.spec-table td:first-child { color: var(--steel); width: 55%; }
.spec-table td:last-child { font-weight: 700; text-align: right; }
.pd-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
@media (max-width: 900px) { .product-detail { grid-template-columns: 1fr; gap: 30px; } }

/* ---------------- CTA banner ---------------- */
.cta-banner {
  background: linear-gradient(120deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--white); border-radius: 24px; padding: 60px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 20% 20%, rgba(255,106,26,.3), transparent 50%); z-index: 1; }
.cta-banner > * { position: relative; z-index: 2; }
.cta-waves { position: absolute; inset: 0; z-index: 0; opacity: 0; transition: opacity 1.2s var(--ease); }
.cta-waves.is-ready { opacity: 1; }
.cta-banner::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(20,22,27,.55) 0%, rgba(20,22,27,.15) 55%, rgba(20,22,27,.35) 100%); z-index: 1; pointer-events: none; }
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,.7); margin: 16px auto 30px; max-width: 56ch; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-grid h4 { color: var(--white); font-size: 14px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em; }
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-grid ul a:hover { color: var(--amber); }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; color: var(--white); margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 10px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------------- Misc ---------------- */
.empty-state { text-align: center; padding: 80px 20px; color: var(--steel); }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--amber); color: var(--ink); padding: 10px 16px; z-index: 200; }
.skip-link:focus { left: 12px; top: 12px; }
::selection { background: var(--amber); color: var(--ink); }

@media (max-width: 700px) {
  .section { padding: 56px 0; }
  .split-media { order: -1; }
}
