/* ==========================================================================
   BPP: B.P. Projects Pvt. Ltd. Site Stylesheet
   ========================================================================== */

:root {
  color-scheme: light;
  --ink: #14161a;
  --charcoal: #1c1f24;
  --charcoal-2: #23272e;
  --gold: #b6883a;
  --gold-light: #d4ac63;
  --gold-dark: #8f6a2c;
  --paper: #ffffff;
  --mist: #f5f4f1;
  --mist-2: #eeece7;
  --line: #e3e0da;
  --line-dark: #33373f;
  --text: #1c1f24;
  --text-muted: #5c5f66;
  --text-soft: #83868c;
  --on-dark: #f5f4f1;
  --on-dark-muted: #a7abb4;
  --on-dark-line: rgba(245, 244, 241, 0.14);

  --container: 1240px;
  --radius: 2px;
  --shadow-card: 0 1px 2px rgba(20, 22, 26, 0.04), 0 8px 24px rgba(20, 22, 26, 0.06);
  --shadow-lift: 0 12px 32px rgba(20, 22, 26, 0.14);

  --ff-display: "Archivo", "Inter", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.01em;
}

::selection { background: var(--gold-light); color: var(--ink); }

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

.section {
  padding-block: 96px;
}
.section--tight { padding-block: 64px; }
.section--dark {
  background: var(--ink);
  color: var(--on-dark);
}
.section--mist { background: var(--mist); }
.section--border-top { border-top: 1px solid var(--line); }

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--paper); }

.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 980px) {
  .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: 1fr; }
}

.flex { display: flex; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-center { display: flex; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }

/* ---- Type system ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.section--dark .eyebrow,
.on-dark .eyebrow { color: var(--gold-light); }

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.9;
}

.h-display {
  font-size: clamp(2.4rem, 3.4vw, 3.6rem);
  margin-top: 14px;
}
.h-section {
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  margin-top: 12px;
}
.h-card {
  font-size: 1.25rem;
  font-weight: 700;
}

.rule-gold {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin-top: 22px;
  border-radius: 2px;
}

.lede {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 62ch;
  margin-top: 22px;
}
.section--dark .lede,
.on-dark .lede { color: var(--on-dark-muted); }

.body-copy { color: var(--text-muted); max-width: 68ch; }
.body-copy + .body-copy { margin-top: 16px; }

.kicker-block { max-width: 720px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--paper); }

.btn-outline-light {
  border-color: var(--on-dark-line);
  color: var(--paper);
}
.btn-outline-light:hover { background: rgba(245,244,241,0.08); border-color: var(--gold-light); }

.btn-ghost {
  color: var(--ink);
  padding: 14px 6px;
  font-weight: 700;
}
.btn-ghost::after { content: "\2192"; margin-left: 8px; transition: transform 0.18s ease; display: inline-block; }
.btn-ghost:hover::after { transform: translateX(4px); }
.section--dark .btn-ghost, .on-dark .btn-ghost { color: var(--paper); }

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

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  height: 80px;
  width: auto;
  display: block;
}
.brand-mark {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  color: var(--gold-dark);
}
.brand-tag {
  border: 1px solid var(--ink);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 8px;
  line-height: 1.15;
  text-align: center;
}
.brand-sub {
  display: none;
}
@media (min-width: 560px) {
  .brand-sub {
    display: block;
    font-size: 0.68rem;
    color: var(--text-soft);
    letter-spacing: 0.04em;
    white-space: nowrap;
    line-height: 1.3;
    border-left: 1px solid var(--line);
    padding-left: 12px;
  }
}

.nav-main {
  display: none;
}
@media (min-width: 980px) {
  .nav-main { display: flex; align-items: center; gap: 2px; }
}
.nav-main > li { position: relative; }
.nav-main > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.nav-main > li > a:hover { color: var(--gold-dark); }
.nav-main > li > a .caret { font-size: 0.6rem; opacity: 0.6; margin-top: 1px; }
.nav-main .current > a { color: var(--gold-dark); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  min-width: 280px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.16s ease;
}
.nav-main li:hover .nav-dropdown,
.nav-main li:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 2px;
}
.nav-dropdown a:hover { background: var(--mist); color: var(--gold-dark); }
.nav-dropdown a small { display: block; color: var(--text-soft); font-weight: 400; font-size: 0.76rem; margin-top: 2px; }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: none;
  font-size: 0.85rem;
  font-weight: 600;
}
@media (min-width: 1180px) { .header-phone { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.3; } }
.header-phone span { color: var(--text-soft); font-weight: 500; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
@media (min-width: 980px) { .nav-toggle { display: none; } }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; transition: all 0.2s ease; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 84px 0 0 0;
  background: var(--paper);
  z-index: 99;
  overflow-y: auto;
  padding: 8px 0 40px;
}
.mobile-nav.is-open { display: block; }
@media (min-width: 980px) { .mobile-nav { display: none !important; } }
.mobile-nav .container { padding-top: 12px; }
.mobile-nav details { border-bottom: 1px solid var(--line); }
.mobile-nav summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary::after { content: "+"; font-size: 1.4rem; color: var(--gold-dark); font-weight: 400; }
.mobile-nav details[open] summary::after { content: "\2212"; }
.mobile-nav .sub-links { padding: 0 4px 18px; display: flex; flex-direction: column; gap: 14px; }
.mobile-nav .sub-links a { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; }
.mobile-nav .sub-links[hidden] { display: none; }
.mobile-nav .top-link {
  display: block;
  padding: 18px 4px;
  font-weight: 700;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav-item { display: flex; align-items: center; border-bottom: 1px solid var(--line); }
.mobile-nav-item .top-link { flex: 1; border-bottom: none; }
.mobile-expand {
  background: none;
  border: none;
  padding: 18px 4px 18px 14px;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold-dark);
  cursor: pointer;
  line-height: 1;
  font-family: inherit;
}
.mobile-nav .mobile-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ---- Hero ---- */
.hero {
  position: relative;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 640px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,16,19,0.92) 0%, rgba(15,16,19,0.72) 32%, rgba(15,16,19,0.28) 62%, rgba(15,16,19,0.15) 100%),
    linear-gradient(0deg, rgba(10,11,13,0.55) 0%, rgba(10,11,13,0) 45%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: 80px 64px;
}
.hero-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-top: 20px;
}
.hero h1 { color: var(--paper); font-size: clamp(2.4rem, 4.4vw, 4rem); max-width: 16ch; }
.hero .lede { color: rgba(245,244,241,0.86); }
.hero-cta { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero--page { min-height: 420px; }
.hero--page .hero-inner { padding-block: 60px 48px; }

.hero-stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(245,244,241,0.16);
}
.hero-stats .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero-stats .stat { padding: 20px 28px 20px 0; border-right: 1px solid rgba(245,244,241,0.14); }
.hero-stats .stat:last-child { border-right: none; }
.hero-stats .stat b { display: block; font-family: var(--ff-display); font-size: 1.6rem; color: var(--paper); }
.hero-stats .stat span { font-size: 0.72rem; color: var(--on-dark-muted); text-transform: uppercase; letter-spacing: 0.05em; }
@media (max-width: 900px) {
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .stat { border-right: none; border-bottom: 1px solid rgba(245,244,241,0.14); padding-block: 16px; }
}

/* ---- Breadcrumb strip on inner hero ---- */
.crumb {
  position: relative; z-index: 2;
  font-size: 0.8rem;
  color: var(--on-dark-muted);
  margin-bottom: 18px;
}
.crumb a:hover { color: var(--gold-light); }

/* ---- Stat strip (light) ---- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
}
.stat-strip .stat {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.stat-strip .stat:last-child { border-right: none; }
.stat-strip .stat b {
  display: block;
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--ink);
}
.stat-strip .stat b sup, .stat-strip .stat b sub { font-size: 0.55em; }
.stat-strip .stat span {
  display: block;
  margin-top: 6px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip .stat { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) { .stat-strip { grid-template-columns: 1fr; } }

/* ---- Cards ---- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px;
}
.card-feature .icon-badge { margin-bottom: 18px; }
.card-feature h3 { font-size: 1.1rem; margin-bottom: 10px; }
.card-feature p { color: var(--text-muted); font-size: 0.95rem; }

.icon-badge {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--mist);
  color: var(--gold-dark);
}
.icon-badge svg { width: 24px; height: 24px; }

.product-card {
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.product-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.product-card .thumb { aspect-ratio: 4/3; overflow: hidden; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .thumb img { transform: scale(1.05); }
.product-card .body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.product-card p { color: var(--text-muted); font-size: 0.92rem; flex: 1; }
.product-card .tag-row { margin-top: 14px; }
.product-card .more { margin-top: 16px; font-weight: 700; font-size: 0.85rem; color: var(--gold-dark); }
.product-card .more::after { content: "\2192"; margin-left: 6px; }

.photo-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--mist-2);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.photo-card:hover img { transform: scale(1.06); }
.photo-card .caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 18px 14px;
  background: linear-gradient(0deg, rgba(10,11,13,0.86) 0%, rgba(10,11,13,0) 100%);
  color: var(--paper);
}
.photo-card .caption b { display: block; font-size: 0.95rem; font-weight: 700; }
.photo-card .caption span { font-size: 0.78rem; color: var(--on-dark-muted); }

/* ---- Tags / pills ---- */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  background: var(--mist);
  color: var(--text-muted);
  border-radius: 2px;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-gold { background: rgba(182,136,58,0.12); color: var(--gold-dark); }

/* ---- Lists ---- */
.check-list { display: flex; flex-direction: column; }
.check-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  font-size: 0.98rem;
}
.check-list li:first-child { padding-top: 0; }
.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px; height: 8px;
  margin-top: 7px;
  background: var(--gold);
}
.check-list.on-dark li { border-color: var(--on-dark-line); }

.plain-list li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.plain-list li b { color: var(--ink); }

.pipe-list { display: flex; flex-wrap: wrap; gap: 0; font-weight: 700; font-size: 1.02rem; }
.pipe-list span { padding-right: 14px; margin-right: 12px; border-right: 1px solid var(--line); }
.pipe-list span:last-child { border-right: none; }

/* ---- Tables ---- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); }
.spec-table { min-width: 720px; font-size: 0.92rem; }
.spec-table th, .spec-table td {
  text-align: left;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.spec-table thead th {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.spec-table tbody tr:nth-child(odd) { background: var(--mist); }
.spec-table td:first-child, .spec-table th:first-child {
  position: sticky; left: 0;
  font-weight: 700;
  background: inherit;
}
.spec-table thead th:first-child { background: var(--ink); }
.spec-table tbody tr:nth-child(odd) td:first-child { background: var(--mist); }
.spec-table tbody tr:nth-child(even) td:first-child { background: var(--paper); }
.table-note { font-size: 0.82rem; color: var(--text-soft); margin-top: 14px; }

.mini-table { font-size: 0.9rem; }
.mini-table td { padding: 11px 0; border-bottom: 1px solid var(--line); }
.mini-table td:first-child { color: var(--text-soft); width: 45%; }
.mini-table td:last-child { font-weight: 700; text-align: right; }

/* ---- Range chips (standard sizes) ---- */
.range-chip {
  background: var(--mist);
  padding: 22px 20px;
  text-align: center;
}
.range-chip b { display: block; font-family: var(--ff-display); font-size: 1.55rem; color: var(--ink); }
.range-chip span { display: block; font-size: 0.78rem; color: var(--text-soft); margin-top: 6px; line-height: 1.4; }
.range-chip.is-dark { background: var(--ink); }
.range-chip.is-dark b, .range-chip.is-dark span { color: var(--paper); }
.range-chip.is-dark span { color: var(--gold-light); }

/* ---- Quote block ---- */
.quote-block {
  border-left: 3px solid var(--gold);
  padding-left: 28px;
}
.quote-block p {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.section--dark .quote-block p { color: var(--paper); }
.quote-block cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-weight: 700;
  font-size: 0.95rem;
}
.quote-block cite span { display: block; font-weight: 500; color: var(--text-soft); font-size: 0.85rem; margin-top: 2px; }

/* ---- Section header pattern ---- */
.section-head { max-width: 720px; }
.section-head.wide { max-width: 100%; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }

/* ---- CTA banner ---- */
.cta-banner {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0;
  text-align: center;
}
.cta-banner .eyebrow { justify-content: center; }
.cta-banner h2 { color: var(--paper); }
.cta-banner .lede { margin-inline: auto; text-align: center; }
.cta-banner .hero-cta { justify-content: center; margin-top: 32px; }

/* ---- Footer ---- */
.site-footer {
  background: var(--ink);
  color: var(--on-dark-muted);
  padding-block: 72px 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--on-dark-line);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-top h4 {
  color: var(--paper);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-family: var(--ff-body);
  font-weight: 700;
}
.footer-top address, .footer-top p { font-style: normal; font-size: 0.92rem; line-height: 1.6; }
.footer-top address + address { margin-top: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.92rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { margin-bottom: 16px; }
.footer-contact-item b { display: block; color: var(--paper); font-size: 0.92rem; }
.footer-contact-item a { color: var(--gold-light); font-weight: 600; }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom .brand-mark { color: var(--gold-light); font-size: 1.2rem; }
.footer-partner { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; }

/* ---- Forms ---- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: 700; color: var(--ink); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line);
  padding: 13px 16px;
  background: var(--paper);
  font-size: 0.95rem;
  border-radius: 2px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--text-soft); margin-top: 16px; }

/* ---- Office / contact cards ---- */
.office-card { border: 1px solid var(--line); padding: 28px; }
.office-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.office-card .tag { margin-bottom: 16px; }
.office-card address { font-style: normal; color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }
.office-card .contact-line { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 0.92rem; }
.office-card .contact-line a { font-weight: 700; color: var(--gold-dark); }

.map-frame { border: 1px solid var(--line); height: 320px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---- Sub nav (product page in-page jump links) ---- */
.subnav {
  position: sticky;
  top: 84px;
  z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}
.subnav .container { display: flex; gap: 4px; padding-block: 0; }
.subnav a {
  padding: 18px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.subnav a:hover, .subnav a.is-active { color: var(--ink); border-color: var(--gold); }

.product-section { padding-block: 88px; scroll-margin-top: 150px; }
.product-section:nth-child(even) { background: var(--mist); }

/* ---- Misc utilities ---- */
.mt-0 { margin-top: 0 !important; }
.mt-8 { margin-top: 8px; } .mt-12 { margin-top: 12px; } .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; } .mt-64 { margin-top: 64px; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.on-dark { color: var(--paper); }
.divider { height: 1px; background: var(--line); width: 100%; }
.divider-dark { height: 1px; background: var(--on-dark-line); width: 100%; }

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }

.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }
.two-col.reverse { grid-template-columns: 0.9fr 1.1fr; }
@media (max-width: 900px) { .two-col.reverse { grid-template-columns: 1fr; } }
.two-col.reverse > *:first-child { order: 2; }
@media (max-width: 900px) { .two-col.reverse > *:first-child { order: 0; } }

.img-frame { border: 1px solid var(--line); overflow: hidden; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }

.also-note { font-size: 0.9rem; color: var(--text-soft); border-top: 1px solid var(--line); padding-top: 20px; margin-top: 40px; }
.also-note b { color: var(--text); }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--gold); color: var(--ink);
  padding: 12px 20px; z-index: 1000; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }
