/* ============================================================
   BETABITE DENTAL LABS — style.css
   Author: Betabite Dental Labs
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --navy:        #0d1f35;
  --navy-dark:   #07121f;
  --navy-mid:    #142644;
  --navy-light:  #1c3358;
  --gold:        #c8923a;
  --gold-light:  #d9a84e;
  --gold-pale:   #fdf5e9;
  --cream:       #f5ede0;
  --cream-light: #faf6f0;
  --white:       #ffffff;
  --grey-100:    #f3f5f8;
  --grey-200:    #e2e8f0;
  --grey-400:    #8496a9;
  --text:        #0d1f35;
  --text-muted:  #4a6070;
  --r-sm:        8px;
  --r-md:        12px;
  --r-lg:        18px;
  --r-xl:        28px;
  --shadow-sm:   0 1px 8px  rgba(13,31,53,.06);
  --shadow:      0 4px 24px rgba(13,31,53,.10);
  --shadow-md:   0 8px 40px rgba(13,31,53,.14);
  --t:           all .22s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html   { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body   { font-family: 'Sora', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; touch-action: pan-y; }
img    { max-width: 100%; height: auto; display: block; }
a      { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
ul     { list-style: none; }
button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.2; color: var(--navy); }

/* ── UTILITIES ───────────────────────────────────────────────── */
.container   { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1rem,4vw,2rem); }
.sp          { padding: 5rem 0; }
.center      { text-align: center; }
.center .sub { margin: 0 auto; }
.center .section-label { justify-content: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.heading {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.heading .accent { color: var(--gold); }

.sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 580px;
  line-height: 1.8;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .8rem 1.75rem;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .01em;
  transition: var(--t);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 18px rgba(200,146,58,.32);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,146,58,.42);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 2px 12px rgba(13,31,53,.12);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(13,31,53,.18);
  color: var(--navy);
}
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,.38);
  color: #fff;
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: #fff;
}

/* ── HEADER ──────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(13,31,53,.06);
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem,4vw,2rem);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo img { height: 48px; width: auto; display: block; }

/* nav */
.main-nav { display: flex; align-items: center; gap: .1rem; }
.main-nav > a {
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 500;
  padding: .45rem .8rem;
  border-radius: 8px;
  transition: var(--t);
  white-space: nowrap;
}
.main-nav > a:hover,
.main-nav > a.active { color: var(--navy); background: var(--gold-pale); }

.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: .5rem 1.2rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: .85rem !important;
  margin-left: .6rem;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 12px rgba(200,146,58,.3);
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(200,146,58,.4) !important;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  cursor: pointer;
  background: none;
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--t);
}

/* ── WAVE DIVIDERS ───────────────────────────────────────────── */
.wave { line-height: 0; overflow: hidden; }
.wave svg { width: 100%; display: block; }

/* ── REVEAL ANIMATION ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(155deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,58,.09), transparent 68%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 660px;
  padding: 4rem 0 5rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,146,58,.12);
  border: 1px solid rgba(200,146,58,.25);
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.9rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -.03em;
}
.hero h1 .gold { color: var(--gold); }
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.68);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 2.25rem;
}
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; align-items: center; }

.hero-strip {
  display: flex;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
  gap: 0;
}
.hsi {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 2rem;
  margin-right: 2rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hsi:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hsi svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.hsi a { color: rgba(255,255,255,.88); font-weight: 600; font-size: .82rem; }
.hsi span { font-size: .82rem; color: rgba(255,255,255,.65); }

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; display: block; }

/* ── STATS STRIP ─────────────────────────────────────────────── */
.stats-strip { background: var(--cream-light); padding: 0 0 4rem; }
.stats-inner { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1rem,4vw,2rem); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  transform: translateY(-44px);
}
.stat-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.75rem 1.4rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--t);
  border: 1px solid rgba(13,31,53,.05);
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stat-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
}
.stat-icon svg { width: 22px; height: 22px; color: var(--gold); }
.stat-val { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: .25rem; letter-spacing: -.02em; }
.stat-label { font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.stat-desc { font-size: .76rem; color: var(--grey-400); line-height: 1.5; }

/* ── PRODUCT CATEGORY CARDS ──────────────────────────────────── */
.prod-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.75rem;
}
.pcc {
  background: var(--cream-light);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(13,31,53,.06);
  transition: var(--t);
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pcc::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform .25s;
  transform-origin: left;
}
.pcc:hover { background: #fff; box-shadow: var(--shadow-md); transform: translateY(-5px); }
.pcc:hover::after { transform: scaleX(1); }
.pcc-icon {
  width: 46px; height: 46px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
}
.pcc-icon svg { width: 22px; height: 22px; color: var(--gold); }
.pcc h3 { font-size: .88rem; color: var(--navy); margin-bottom: .35rem; line-height: 1.35; font-weight: 600; }
.pcc p { font-size: .76rem; color: var(--text-muted); line-height: 1.5; }
.pcc-arrow { display: inline-flex; align-items: center; gap: 4px; color: var(--gold); font-size: .76rem; font-weight: 700; margin-top: .7rem; transition: gap .2s; }
.pcc:hover .pcc-arrow { gap: 8px; }
.pcc-arrow::after { content: '→'; }

/* ── WHY US ──────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-feats { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.wf {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 1.1rem;
  align-items: center;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13,31,53,.05);
  border-left: 3px solid var(--gold);
  transition: var(--t);
}
.wf:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.wf-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.wf-body h4 { font-size: .9rem; color: var(--navy); margin-bottom: .3rem; font-weight: 700; }
.wf-body p { font-size: .82rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

.why-card {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-card::before { content: ''; position: absolute; top: -80px; right: -80px; width: 260px; height: 260px; border-radius: 50%; background: rgba(200,146,58,.09); }
.why-card::after  { content: ''; position: absolute; bottom: -50px; left: -50px; width: 180px; height: 180px; border-radius: 50%; background: rgba(200,146,58,.05); }
.wc-eyebrow { display: inline-block; color: var(--gold-light); font-size: .67rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .8rem; }
.why-card h3 { font-size: 1.45rem; color: #fff; margin-bottom: .8rem; font-weight: 700; position: relative; z-index: 1; letter-spacing: -.02em; }
.why-card > p { color: rgba(255,255,255,.62); font-size: .88rem; line-height: 1.78; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.ck-list { display: flex; flex-direction: column; gap: .7rem; position: relative; z-index: 1; }
.ck-item { display: flex; align-items: center; gap: .75rem; font-size: .85rem; color: rgba(255,255,255,.82); }
.ck-dot { width: 18px; height: 18px; border-radius: 50%; background: rgba(200,146,58,.18); border: 1px solid rgba(200,146,58,.38); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ck-dot svg { width: 10px; height: 10px; color: var(--gold); }

/* ── REVIEWS ─────────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 2.5rem; }
.review-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13,31,53,.05);
  transition: var(--t);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.r-stars { color: var(--gold); font-size: .9rem; letter-spacing: 2px; margin-bottom: .85rem; }
.r-text { color: var(--text-muted); font-size: .87rem; line-height: 1.78; font-style: italic; margin-bottom: 1.25rem; }
.reviewer { display: flex; align-items: center; gap: .75rem; padding-top: .9rem; border-top: 1px solid var(--grey-200); }
.r-ini { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .8rem; flex-shrink: 0; }
.r-name { font-weight: 700; font-size: .85rem; color: var(--navy); }
.r-loc { font-size: .74rem; color: var(--grey-400); }

/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-sect { background: var(--navy); position: relative; overflow: hidden; }
.cta-sect::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 32px 32px; }
.cta-inner { position: relative; z-index: 1; text-align: center; padding: 5rem 0; }
.cta-inner .section-label { color: var(--gold-light); justify-content: center; }
.cta-inner .section-label::before { background: var(--gold-light); }
.cta-inner h2 { font-size: clamp(1.85rem, 3.8vw, 2.8rem); color: #fff; margin: .5rem 0 1.1rem; letter-spacing: -.02em; }
.cta-inner h2 .accent { color: var(--gold); }
.cta-inner > p { color: rgba(255,255,255,.62); font-size: .98rem; max-width: 480px; margin: 0 auto 2.25rem; line-height: 1.82; }
.cta-btns { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }
.cta-ph { margin-top: 1.5rem; display: flex; align-items: center; justify-content: center; gap: .5rem; color: rgba(255,255,255,.5); font-size: .85rem; }
.cta-ph svg { width: 16px; height: 16px; color: var(--gold); }
.cta-ph a { color: rgba(255,255,255,.9); font-weight: 600; font-size: 1rem; }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  position: relative;
  overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 32px 32px; }
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero-content h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.025em; }
.page-hero-content p { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 520px; margin: .8rem auto 0; line-height: 1.8; }

/* ── PRODUCT TAB NAV ─────────────────────────────────────────── */
.prod-nav {
  background: #fff;
  position: sticky;
  top: 72px;
  z-index: 100;
  border-bottom: 1px solid var(--grey-200);
  box-shadow: 0 2px 10px rgba(13,31,53,.05);
}
.prod-nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1rem,4vw,2rem); display: flex; overflow-x: auto; scrollbar-width: none; }
.prod-nav-inner::-webkit-scrollbar { display: none; }
.prod-tab {
  padding: .8rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--t);
  background: none;
  border-top: none; border-left: none; border-right: none;
  font-family: inherit;
}
.prod-tab:hover { color: var(--navy); }
.prod-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.prod-section { display: none; padding: 3.5rem 0; }
.prod-section.active { display: block; }

/* ── PRODUCT INTRO ───────────────────────────────────────────── */
.prod-intro { max-width: 720px; margin: 0 auto 2.75rem; text-align: center; }
.prod-intro p { color: var(--text-muted); font-size: .92rem; line-height: 1.82; }

/* ── PRODUCT ITEM CARDS ──────────────────────────────────────── */
.items-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.item-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: var(--t);
  display: flex;
  flex-direction: column;
}
.item-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.item-img-wrap { position: relative; width: 100%; aspect-ratio: 16/11; overflow: hidden; background: var(--grey-100); }
.item-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .38s ease; }
.item-card:hover .item-img-wrap img { transform: scale(1.05); }
.item-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; }
.item-img-placeholder svg { width: 38px; height: 38px; color: rgba(200,146,58,.5); }
.item-body { padding: 1.1rem 1.25rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.item-body h4 { font-size: .9rem; color: var(--navy); margin-bottom: auto; padding-bottom: .75rem; line-height: 1.35; font-weight: 600; }
.item-price-row { border-top: 1px solid var(--grey-200); padding-top: .75rem; margin-top: .75rem; }
.item-price { font-size: 1.5rem; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -.02em; }
.item-price-note { font-size: .72rem; color: var(--grey-400); margin-top: .2rem; font-weight: 500; }

/* ── ABOUT PAGE ──────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start; padding: 5rem 0; }
.about-card {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(200,146,58,.09); }
.about-card h3 { font-size: 1.4rem; color: #fff; margin-bottom: .9rem; position: relative; z-index: 1; letter-spacing: -.02em; }
.about-card > p { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.8; position: relative; z-index: 1; margin-bottom: 1rem; }
.about-badges { display: flex; flex-direction: column; gap: .7rem; position: relative; z-index: 1; margin-top: 1.35rem; }
.ab-item { display: flex; align-items: flex-start; gap: .7rem; font-size: .85rem; color: rgba(255,255,255,.8); }
.ab-icon { width: 30px; height: 30px; border-radius: 8px; background: rgba(200,146,58,.14); border: 1px solid rgba(200,146,58,.28); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ab-icon svg { width: 14px; height: 14px; color: var(--gold); }
.ab-text strong { color: #fff; display: block; font-size: .84rem; margin-bottom: 1px; }
.about-text .sub { max-width: 100%; margin-bottom: 1.1rem; }
.about-text p { color: var(--text-muted); font-size: .92rem; line-height: 1.8; margin-bottom: .8rem; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-top: 2.25rem; }
.mission-card {
  background: var(--cream-light);
  border-radius: var(--r-lg);
  padding: 1.35rem;
  border: 1px solid rgba(13,31,53,.05);
  border-left: 3px solid var(--gold);
  transition: var(--t);
}
.mission-card:hover { background: #fff; box-shadow: var(--shadow); transform: translateX(3px); }
.mission-card h4 { font-size: .88rem; color: var(--navy); margin-bottom: .35rem; font-weight: 700; }
.mission-card p { font-size: .8rem; color: var(--text-muted); line-height: 1.65; }
.specs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .9rem; margin-top: 2.25rem; }

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; padding: 5rem 0; }
.cc-list { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.5rem; }
.cc-card {
  background: var(--cream-light);
  border-radius: var(--r-lg);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  border: 1px solid rgba(13,31,53,.05);
  transition: var(--t);
}
.cc-card:hover { background: #fff; box-shadow: var(--shadow-sm); }
.cc-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cc-icon svg { width: 17px; height: 17px; color: var(--gold); }
.cc-card h4 { font-size: .84rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.cc-card p, .cc-card a { font-size: .84rem; color: var(--text-muted); }
.cc-card a { color: var(--gold); font-weight: 600; }
.hours-box { margin-top: 1.5rem; background: var(--cream-light); border-radius: var(--r-lg); padding: 1.25rem; border: 1px solid rgba(13,31,53,.05); }
.hours-box h4 { font-size: .72rem; font-weight: 700; color: var(--grey-400); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .85rem; }
.hr-row { display: flex; justify-content: space-between; padding: .38rem 0; border-bottom: 1px solid rgba(13,31,53,.05); font-size: .84rem; }
.hr-row:last-child { border-bottom: none; }
.hr-row .day { color: var(--text-muted); }
.hr-row .time { font-weight: 600; color: var(--navy); }

/* contact form */
.cf-wrap { background: #fff; border-radius: var(--r-xl); padding: 2.25rem; box-shadow: var(--shadow-md); border: 1px solid rgba(13,31,53,.06); }
.cf-wrap h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: .4rem; letter-spacing: -.02em; }
.cf-wrap > p { font-size: .84rem; color: var(--text-muted); margin-bottom: 1.65rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .76rem; font-weight: 700; color: var(--navy); margin-bottom: .38rem; letter-spacing: .01em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .72rem .95rem;
  border: 1.5px solid var(--grey-200);
  border-radius: 8px;
  font-size: .88rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: var(--t);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,146,58,.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  padding: .9rem;
  border-radius: 50px;
  background: var(--gold);
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: var(--t);
  margin-top: .35rem;
  letter-spacing: .01em;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(200,146,58,.38); }
.form-success {
  display: none;
  background: #e8f7f0;
  border: 1px solid #34c77a;
  color: #157a45;
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  font-size: .88rem;
  margin-top: 1rem;
  font-weight: 600;
}
.form-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #f87171;
  color: #b91c1c;
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  font-size: .88rem;
  margin-top: 1rem;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.55);
  padding: 4.5rem 0 0;
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem,4vw,2rem);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-logo img { height: 72px; width: auto; margin-bottom: 1.1rem; display: block; }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.38); line-height: 1.72; max-width: 260px; margin-bottom: 1.25rem; }
.footer-contacts { display: flex; flex-direction: column; gap: .6rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .55rem; font-size: .82rem; }
.footer-contact-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.68); transition: color .2s; }
.footer-contact-item a:hover,
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item span { color: rgba(255,255,255,.48); }
#site-footer h4 { color: rgba(255,255,255,.9); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: rgba(255,255,255,.44); font-size: .83rem; transition: color .2s; }
.footer-hours { display: flex; flex-direction: column; gap: .45rem; }
.footer-hour-row { display: flex; justify-content: space-between; gap: .75rem; font-size: .82rem; }
.footer-hour-row .day { color: rgba(255,255,255,.44); }
.footer-hour-row .time { color: rgba(255,255,255,.76); font-weight: 500; }
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.25rem clamp(1rem,4vw,2rem);
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p { font-size: .76rem; color: rgba(255,255,255,.28); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { color: rgba(255,255,255,.28); font-size: .76rem; transition: color .2s; }
.footer-legal a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — comprehensive mobile-first breakpoints
   ══════════════════════════════════════════════════════════════ */

/* ── Tablet / small desktop  960px ──────────────────────────── */
@media (max-width: 960px) {

  /* Nav */
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    gap: .25rem;
    box-shadow: 0 8px 40px rgba(13,31,53,.2);
    border-top: 1px solid var(--grey-200);
    overflow-y: auto;
    z-index: 1001;
  }
  .main-nav.open { display: flex; }
  .main-nav > a {
    padding: .85rem 1.1rem;
    border-radius: 10px;
    font-size: .95rem;
    width: 100%;
    text-align: left;
  }
  .nav-cta {
    margin-left: 0 !important;
    justify-content: center !important;
    padding: .85rem 1.1rem !important;
    border-radius: 10px !important;
    width: 100%;
  }

  /* Layouts */
  .why-grid       { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid     { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }
  .contact-grid   { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }
  .reviews-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .prod-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid   { grid-template-columns: 1fr; }
  .specs-grid     { grid-template-columns: 1fr 1fr; }
  .items-grid     { grid-template-columns: 1fr 1fr; }

  /* Why card — reorder so text first on mobile */
  .why-grid > div:first-child { order: 1; }
  .why-card { order: 2; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); transform: translateY(-36px); }
  .stats-strip { padding: 0 0 3rem; }

  /* Hero */
  .hero-content { max-width: 100%; padding: 3.5rem 0 5rem; }
  .hero-desc { max-width: 100%; }

  /* About card takes full width */
  .about-card { width: 100%; }
}

/* ── Mobile  600px ───────────────────────────────────────────── */
@media (max-width: 600px) {

  /* Header */
  .header-inner { height: 64px; }
  .site-logo img { height: 40px; }
  .hero { padding-top: 64px; }
  .page-hero { padding: 5.5rem 0 2.5rem; }
  .prod-nav { top: 64px; }

  /* Nav drawer */
  .main-nav { top: 64px; }

  /* Hero */
  .hero-content { padding: 2.5rem 0 4rem; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); letter-spacing: -.025em; }
  .hero-desc { font-size: .95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; text-align: center; }
  .hero-strip { flex-direction: column; gap: .7rem; margin-top: 2rem; padding-top: 1.5rem; }
  .hsi { border-right: none; padding-right: 0; margin-right: 0; }

  /* Sections */
  .sp { padding: 3rem 0; }
  .heading { font-size: clamp(1.65rem, 7vw, 2.2rem); }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    transform: translateY(-28px);
    gap: .75rem;
  }
  .stats-strip { padding: 0 0 2rem; }
  .stat-card { padding: 1.25rem 1rem; }
  .stat-val { font-size: 1.65rem; }
  .stat-icon { width: 40px; height: 40px; }
  .stat-icon svg { width: 18px; height: 18px; }

  /* Prod cats */
  .prod-cats-grid { grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 2rem; }
  .pcc { padding: 1.1rem .9rem; }
  .pcc-icon { width: 38px; height: 38px; }
  .pcc h3 { font-size: .82rem; }
  .pcc p { display: none; } /* hide description on mobile for cleaner look */

  /* Wf cards */
  .wf { grid-template-columns: 64px 1fr; padding: 1.1rem 1.1rem; }
  .wf-num { font-size: 1.4rem; }

  /* Why card */
  .why-card { padding: 1.75rem 1.5rem; border-radius: var(--r-lg); }
  .why-card h3 { font-size: 1.25rem; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; gap: .85rem; }
  .review-card { padding: 1.4rem; }

  /* Products page */
  .items-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .item-body { padding: .85rem 1rem 1.1rem; }
  .item-price { font-size: 1.25rem; }
  .prod-intro { margin-bottom: 2rem; }
  .prod-intro p { font-size: .88rem; }
  .prod-tab { padding: .7rem .75rem; font-size: .75rem; }

  /* About */
  .about-grid { gap: 1.75rem; }
  .about-card { padding: 1.75rem 1.5rem; border-radius: var(--r-lg); }
  .mission-grid { gap: .75rem; }
  .mission-card { padding: 1.1rem; }

  /* Contact */
  .contact-grid { gap: 1.75rem; }
  .cf-wrap { padding: 1.5rem; border-radius: var(--r-lg); }
  .form-row { grid-template-columns: 1fr; }
  .cc-card { padding: .9rem 1rem; }
  .hours-box { padding: 1rem; }

  /* CTA */
  .cta-inner { padding: 3.5rem 0; }
  .cta-btns { flex-direction: column; align-items: center; gap: .75rem; }
  .cta-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
  .cta-inner h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; margin-bottom: 2rem; }
  .footer-logo img { height: 56px; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }

  /* Page hero */
  .page-hero-content h1 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .page-hero-content p { font-size: .9rem; }
}

/* ── Small phones  400px ─────────────────────────────────────── */
@media (max-width: 400px) {
  .container { padding: 0 1rem; }
  .prod-cats-grid { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .items-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .hero h1 { font-size: clamp(1.85rem, 9vw, 2.4rem); }
  .pcc { padding: .9rem .75rem; }
  .pcc-icon { width: 34px; height: 34px; }
  .pcc h3 { font-size: .78rem; }
  .item-price { font-size: 1.15rem; }
  .wf { grid-template-columns: 56px 1fr; }
  .wf-num { font-size: 1.2rem; }
}

/* ── Hamburger open state (CSS-driven animation) ─────────────── */
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Header scrolled state ───────────────────────────────────── */
#site-header.scrolled { box-shadow: 0 4px 32px rgba(13,31,53,.12); }

/* ── Ensure nav drawer always renders above everything ────────── */
@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    z-index: 1001;
    background: #ffffff;
    flex-direction: column;
    padding: 1rem 1.25rem;
    gap: .25rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 2px solid var(--gold-pale);
    box-shadow: 0 8px 40px rgba(13,31,53,.22);
    /* hidden by default */
    display: none;
  }
  .main-nav.open {
    display: flex !important;
  }
  .main-nav > a {
    display: block;
    padding: .9rem 1.1rem;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-muted);
    width: 100%;
    border-bottom: 1px solid var(--grey-200);
  }
  .main-nav > a:last-of-type { border-bottom: none; }
  .main-nav > a:hover,
  .main-nav > a.active { background: var(--gold-pale); color: var(--navy); }
  .nav-cta {
    display: flex !important;
    margin-left: 0 !important;
    margin-top: .5rem;
    border-radius: 10px !important;
    justify-content: center !important;
    padding: .9rem 1.1rem !important;
    font-size: .95rem !important;
    width: 100%;
    border-bottom: none !important;
  }
}
@media (max-width: 600px) {
  .main-nav { top: 64px; }
}
