/* ==========================================================================
   S.S Trading — Design System
   Single stylesheet, no external requests. Mobile-first.
   ========================================================================== */

:root {
  /* Brand palette (sampled from the S.S Trading logo) */
  --brand:        #ED7D1C;
  --brand-600:    #D66A0E;
  --brand-700:    #B4550A;
  --brand-200:    #FAD3AC;
  --brand-50:     #FEF4EA;

  --ink:          #0E1113;
  --charcoal:     #171B1F;
  --slate:        #2A3238;
  --steel:        #5A666F;
  --mute:         #7E8A93;
  --line:         #E4E7EA;
  --mist:         #F4F6F7;
  --paper:        #FFFFFF;

  --ok:           #1D8A55;

  /* Type */
  --sans: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, "Noto Sans Bengali", sans-serif;
  --serif: Georgia, "Times New Roman", serif;

  /* Space + shape */
  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(14,17,19,.06), 0 1px 3px rgba(14,17,19,.05);
  --shadow:    0 4px 12px rgba(14,17,19,.07), 0 2px 4px rgba(14,17,19,.05);
  --shadow-lg: 0 18px 44px rgba(14,17,19,.13), 0 6px 14px rgba(14,17,19,.07);

  --container: 1180px;
  --header-h: 68px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-700); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--brand-600); }
button { font: inherit; }
ul, ol { padding-left: 1.15rem; }

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
  font-weight: 800;
}
h1 { font-size: clamp(2rem, 1.35rem + 2.9vw, 3.35rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.7vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.02rem + .55vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

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

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

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding: clamp(56px, 7vw, 104px) 0; }
.section--mist { background: var(--mist); }
.section--ink  { background: var(--charcoal); color: #C9D1D7; }
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }

.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.g-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.g-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.g-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand); color: #fff; padding: 12px 20px; font-weight: 700;
}
.skip:focus { left: 8px; top: 8px; }

/* ---------- Section headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  color: var(--brand-700); margin: 0 0 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--brand); }
.section--ink .eyebrow { color: var(--brand); }

.lede { font-size: clamp(1.02rem, .98rem + .35vw, 1.2rem); color: var(--steel); max-width: 68ch; }
.section--ink .lede { color: #A9B4BC; }
.head-center { max-width: 760px; margin-inline: auto; text-align: center; }
.head-center .eyebrow { justify-content: center; }
.head-center .lede { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 700; font-size: .97rem; letter-spacing: .01em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(237,125,28,.32); }
.btn--primary:hover { background: var(--brand-600); color: #fff; box-shadow: 0 10px 24px rgba(237,125,28,.38); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--slate); color: #fff; }
.btn--ghost { border-color: var(--line); color: var(--ink); background: var(--paper); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-700); }
.btn--onink { border-color: rgba(255,255,255,.3); color: #fff; background: transparent; }
.btn--onink:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.btn--wa { background: #1FA855; color: #fff; }
.btn--wa:hover { background: #17914A; color: #fff; }
.btn--sm { padding: 10px 18px; font-size: .88rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Top utility bar ---------- */
.util {
  background: var(--ink); color: #9AA6AE; font-size: .82rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.util .wrap { display: flex; flex-wrap: wrap; gap: 6px 22px; align-items: center; justify-content: space-between; padding-block: 8px; }
.util a { color: #D6DCE1; text-decoration: none; font-weight: 600; }
.util a:hover { color: var(--brand); }
.util-list { display: flex; flex-wrap: wrap; gap: 6px 20px; align-items: center; }
.util-badge { color: var(--brand); font-weight: 700; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 18px; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__txt { display: grid; line-height: 1.1; }
.brand__name { font-weight: 900; font-size: 1.16rem; color: var(--ink); letter-spacing: -.02em; }
.brand__sub { font-size: .66rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: var(--brand-700); }

.nav { display: none; }
.nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav a {
  display: block; padding: 9px 13px; border-radius: var(--r-sm);
  color: var(--slate); text-decoration: none; font-weight: 600; font-size: .95rem;
}
.nav a:hover { background: var(--brand-50); color: var(--brand-700); }
.nav a[aria-current="page"] { color: var(--brand-700); background: var(--brand-50); }

.header-cta { display: none; }

.burger {
  margin-left: auto; display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm); cursor: pointer;
}
.burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; border-top: 1px solid var(--line); background: var(--paper);
  padding: 12px 0 20px; max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; margin: 0 0 14px; padding: 0; }
.mobile-nav a {
  display: block; padding: 12px 4px; border-bottom: 1px solid var(--line);
  color: var(--ink); text-decoration: none; font-weight: 600;
}
.mobile-nav a:hover { color: var(--brand-700); }

@media (min-width: 1000px) {
  .nav, .header-cta { display: block; }
  .burger { display: none; }
  .mobile-nav { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 460px at 88% -8%, rgba(237,125,28,.26), transparent 62%),
    radial-gradient(700px 420px at 6% 108%, rgba(237,125,28,.10), transparent 60%),
    linear-gradient(165deg, #14181B 0%, #0E1113 58%, #191D21 100%);
  color: #C4CDD4;
  padding: clamp(52px, 7vw, 96px) 0 clamp(60px, 7vw, 104px);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .55;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: clamp(34px, 4vw, 60px); align-items: center; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--brand); }
.hero__lede { font-size: clamp(1.04rem, 1rem + .4vw, 1.24rem); color: #A7B2BA; max-width: 58ch; margin-bottom: 28px; }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 11px; border-radius: 999px;
  background: rgba(237,125,28,.13); border: 1px solid rgba(237,125,28,.34);
  color: #FBD9B4; font-size: .8rem; font-weight: 700; letter-spacing: .03em;
  margin-bottom: 22px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(237,125,28,.22); }

.hero-chips { display: flex; flex-wrap: wrap; gap: 8px 10px; margin-top: 28px; padding: 0; list-style: none; }
.hero-chips li {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .84rem; font-weight: 600; color: #B7C1C8;
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1);
  padding: 7px 13px; border-radius: 999px;
}
.hero-chips svg { flex: none; color: var(--brand); }

.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
.hero-card {
  position: absolute; left: 0; bottom: -22px; z-index: 2;
  background: var(--paper); border-radius: var(--r-lg); padding: 16px 20px;
  box-shadow: var(--shadow-lg); display: grid; gap: 2px; min-width: 180px;
}
.hero-card b { font-size: 1.5rem; color: var(--ink); line-height: 1; }
.hero-card span { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--mute); }

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.08fr .92fr; }
}

/* ---------- Stats bar ---------- */
.stats { background: var(--ink); border-top: 1px solid rgba(255,255,255,.07); }
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: rgba(255,255,255,.09);
}
.stat { background: var(--ink); padding: 26px 18px; text-align: center; }
.stat b { display: block; font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2.15rem); font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -.02em; }
.stat b i { font-style: normal; color: var(--brand); }
.stat span { display: block; margin-top: 5px; font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #8794A0; }
@media (min-width: 760px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Cards ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card h3 { margin-bottom: .45em; }
.card p { color: var(--steel); font-size: .96rem; }
.card--link { text-decoration: none; color: inherit; display: block; }
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-200); color: inherit; }

.icon-box {
  width: 50px; height: 50px; border-radius: 14px; margin-bottom: 18px;
  display: grid; place-items: center;
  background: var(--brand-50); color: var(--brand-700); border: 1px solid var(--brand-200);
}
.section--ink .card { background: #1E2328; border-color: rgba(255,255,255,.09); }
.section--ink .card p { color: #A2AEB6; }
.section--ink .icon-box { background: rgba(237,125,28,.14); border-color: rgba(237,125,28,.3); color: var(--brand); }

/* Product cards */
.pcard {
  display: flex; flex-direction: column; overflow: hidden; text-decoration: none; color: inherit;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--brand-200); color: inherit; }
.pcard__img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; background: var(--mist); border-bottom: 1px solid var(--line); }
.pcard__body { padding: 19px 20px 22px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.pcard__name { font-weight: 800; font-size: 1.09rem; color: var(--ink); letter-spacing: -.01em; }
.pcard__bn { font-size: .84rem; font-weight: 600; color: var(--brand-700); }
.pcard__desc { font-size: .9rem; color: var(--steel); margin: 2px 0 0; }
.pcard__meta { margin-top: auto; padding-top: 13px; font-size: .8rem; font-weight: 700; color: var(--mute); letter-spacing: .04em; text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
.pcard:hover .pcard__meta { color: var(--brand-700); }

/* Feature list */
.check { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.check li { display: flex; gap: 11px; align-items: flex-start; font-size: .97rem; }
.check li::before {
  content: ""; flex: none; width: 21px; height: 21px; margin-top: 2px; border-radius: 50%;
  background: var(--brand-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B4550A' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
  border: 1px solid var(--brand-200);
}
.section--ink .check li::before { background-color: rgba(237,125,28,.16); border-color: rgba(237,125,28,.34); }

/* ---------- Process steps ---------- */
.steps { counter-reset: s; display: grid; gap: 22px; }
.step { position: relative; padding-left: 66px; }
.step::before {
  counter-increment: s; content: "0" counter(s);
  position: absolute; left: 0; top: 0;
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--ink); color: var(--brand);
  font-weight: 900; font-size: 1rem; letter-spacing: -.02em;
}
.step h3 { margin-bottom: .35em; }
.step p { color: var(--steel); font-size: .95rem; }
.section--ink .step::before { background: var(--brand); color: #fff; }
.section--ink .step p { color: #A2AEB6; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 30px 34px; } }

/* ---------- Origins ---------- */
.origins { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.origins li {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 17px; font-weight: 600; font-size: .93rem; box-shadow: var(--shadow-sm);
}
.origins .flag { font-size: 1.15rem; line-height: 1; }

/* ---------- Segments ---------- */
.seg { display: grid; gap: 4px; padding: 22px; border-radius: var(--r); background: var(--paper); border: 1px solid var(--line); }
.seg b { color: var(--ink); font-size: 1.02rem; }
.seg span { font-size: .92rem; color: var(--steel); }

/* ---------- Quote / testimonial ---------- */
.quote {
  background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--brand);
  border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-sm);
}
.quote p { font-size: 1.02rem; color: var(--slate); font-style: italic; }
.quote footer { margin-top: 14px; font-size: .88rem; font-weight: 700; color: var(--ink); font-style: normal; }
.quote footer span { display: block; font-weight: 600; color: var(--mute); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq details {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 0; overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; list-style: none; padding: 19px 54px 19px 22px; position: relative;
  font-weight: 700; color: var(--ink); font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 13px; height: 13px;
  margin-top: -6px; transition: transform .2s ease;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ED7D1C' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details[open] summary { color: var(--brand-700); }
.faq .faq__a { padding: 0 22px 21px; color: var(--steel); font-size: .97rem; }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: var(--paper); box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; min-width: 520px; font-size: .94rem; }
caption { text-align: left; padding: 16px 18px 0; font-weight: 700; color: var(--ink); }
th, td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--line); }
thead th { background: var(--mist); font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--steel); }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: var(--brand-50); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 340px at 82% 0%, rgba(237,125,28,.3), transparent 62%),
    linear-gradient(160deg, #191D21, #0E1113);
  color: #B9C3CA; border-radius: var(--r-xl); padding: clamp(34px, 4.5vw, 62px);
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { max-width: 60ch; margin-inline: auto; color: #A5B0B8; }
.cta-band .btn-row { justify-content: center; margin-top: 26px; }

/* ---------- Forms ---------- */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 36px); box-shadow: var(--shadow); }
.field { display: grid; gap: 6px; margin-bottom: 17px; }
.field > label { font-weight: 700; font-size: .89rem; color: var(--ink); }
.field .hint { font-size: .8rem; color: var(--mute); }
.req { color: var(--brand-700); }
input, select, textarea {
  width: 100%; font: inherit; font-size: .97rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--paper); transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { min-height: 128px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(237,125,28,.16); outline: none; }
.field-row { display: grid; gap: 17px; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: .84rem; color: var(--mute); margin-top: 14px; }

/* ---------- Contact / NAP ---------- */
.nap { display: grid; gap: 20px; }
.nap-item { display: flex; gap: 14px; }
.nap-item .icon-box { width: 42px; height: 42px; border-radius: 11px; margin: 0; flex: none; }
.nap-item b { display: block; color: var(--ink); font-size: .84rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 3px; }
.nap-item a { font-weight: 600; text-decoration: none; }
.nap-item address { font-style: normal; color: var(--steel); font-size: .97rem; }
.map-frame { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--mist); }
.map-frame iframe { display: block; width: 100%; height: 340px; border: 0; }

/* ---------- Breadcrumbs ---------- */
.crumbs { font-size: .86rem; color: var(--mute); padding: 16px 0 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; }
.crumbs li + li::before { content: "/"; margin-right: 7px; color: var(--line); }
.crumbs a { color: var(--steel); text-decoration: none; font-weight: 600; }
.crumbs a:hover { color: var(--brand-700); }
.crumbs [aria-current] { color: var(--ink); font-weight: 700; }

/* ---------- Page header (inner pages) ---------- */
.page-head {
  background: linear-gradient(160deg, #14181B, #0E1113);
  color: #A9B4BC; padding: clamp(38px, 5vw, 68px) 0;
  position: relative; overflow: hidden;
}
.page-head::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(620px 300px at 88% 0%, rgba(237,125,28,.22), transparent 62%);
}
.page-head .wrap { position: relative; z-index: 1; }
.page-head h1 { color: #fff; margin-bottom: .45em; }
.page-head .lede { color: #A9B4BC; }
.page-head .crumbs { color: #7C8891; padding-bottom: 18px; }
.page-head .crumbs a { color: #B4BFC6; }
.page-head .crumbs a:hover { color: var(--brand); }
.page-head .crumbs li + li::before { color: #4A555D; }
.page-head .crumbs [aria-current] { color: #fff; }

/* ---------- Prose (blog) ---------- */
.prose { max-width: 74ch; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose ul, .prose ol { margin: 0 0 1.15rem; }
.prose li { margin-bottom: .45rem; }
.prose blockquote {
  margin: 1.6rem 0; padding: 4px 0 4px 22px;
  border-left: 3px solid var(--brand); color: var(--ink); font-size: 1.06rem;
}
.prose img { border-radius: var(--r); margin: 1.6rem 0; }
.meta-line { font-size: .87rem; color: var(--mute); font-weight: 600; display: flex; flex-wrap: wrap; gap: 6px 16px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #8C99A2; font-size: .93rem; padding: clamp(46px, 5vw, 72px) 0 0; }
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.site-footer a { color: #B0BBC3; text-decoration: none; }
.site-footer a:hover { color: var(--brand); }
.footer-grid { display: grid; gap: 34px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1040px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { margin-top: 14px; max-width: 38ch; font-size: .92rem; }
.footer-bottom {
  margin-top: 44px; border-top: 1px solid rgba(255,255,255,.09); padding: 20px 0 26px;
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; font-size: .85rem; color: #6F7C85;
}
.kw-strip { font-size: .8rem; color: #5F6B74; line-height: 1.8; padding: 18px 0 0; border-top: 1px solid rgba(255,255,255,.06); margin-top: 30px; }
.kw-strip a { color: #6F7C85; }

/* ---------- Floating actions ---------- */
.fab {
  position: fixed; right: 16px; bottom: 16px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; background: #1FA855; color: #fff;
  box-shadow: 0 10px 26px rgba(31,168,85,.42); text-decoration: none;
  transition: transform .18s ease;
}
.fab:hover { transform: scale(1.07); color: #fff; }
.fab svg { width: 29px; height: 29px; }

.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--paper); border-top: 1px solid var(--line);
  box-shadow: 0 -4px 18px rgba(14,17,19,.09);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
  display: grid; place-items: center; gap: 3px; padding: 9px 4px;
  font-size: .7rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: var(--slate); text-decoration: none; border-right: 1px solid var(--line);
}
.mobile-bar a:last-child { border-right: 0; }
.mobile-bar a svg { width: 19px; height: 19px; color: var(--brand); }
.mobile-bar a.is-accent { background: var(--brand); color: #fff; }
.mobile-bar a.is-accent svg { color: #fff; }
@media (min-width: 720px) { .mobile-bar { display: none; } }
@media (max-width: 719px) { body { padding-bottom: 58px; } .fab { bottom: 74px; } }

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 18px; }
.mt-3 { margin-top: 28px; }
.mt-4 { margin-top: 40px; }
.center { text-align: center; }
.badge {
  display: inline-block; padding: 4px 11px; border-radius: 999px;
  background: var(--brand-50); border: 1px solid var(--brand-200); color: var(--brand-700);
  font-size: .75rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .util, .site-header, .mobile-bar, .fab, .cta-band, .map-frame { display: none !important; }
  body { font-size: 12pt; color: #000; }
}
