/* ============================================
   CUSTOMCOIN.CA - Main Stylesheet
   Palette A: Maple & Gold
   ============================================ */

:root {
  --red: #C8102E;
  --red-dark: #A00D25;
  --red-soft: #FBE9EC;
  --charcoal: #1A1D23;
  --charcoal-2: #262A33;
  --gold: #C9A227;
  --gold-light: #E8CF7A;
  --gold-soft: #F6EED4;
  --bg: #FAF7F2;
  --surface: #FFFFFF;
  --text: #1A1D23;
  --muted: #5B6070;
  --line: #E7E1D6;

  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 2px 6px rgba(26, 29, 35, .05), 0 10px 30px rgba(26, 29, 35, .06);
  --shadow-lg: 0 20px 50px rgba(26, 29, 35, .14);
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

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

.section { padding-block: 88px; }
.section--white { background: var(--surface); }
.section--dark { background: var(--charcoal); color: #fff; }
.section--tight { padding-block: 56px; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section--dark .section-head p { color: #B9BDC7; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section--dark .eyebrow { color: var(--gold-light); }

.placeholder-note {
  font-size: .75rem;
  color: var(--muted);
  font-style: italic;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(200, 16, 46, .28); }
.btn--primary:hover { background: var(--red-dark); }
.btn--gold { background: var(--gold); color: var(--charcoal); }
.btn--gold:hover { background: var(--gold-light); }
.btn--outline { border-color: var(--charcoal); color: var(--charcoal); background: transparent; }
.btn--outline:hover { background: var(--charcoal); color: #fff; }
.btn--outline-light { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--charcoal); }
.btn--sm { padding: 10px 20px; font-size: .88rem; }
.btn--block { width: 100%; }

/* ---------- Announcement Bar ---------- */
.announce {
  background: var(--charcoal);
  color: #E6E7EB;
  font-size: .82rem;
  text-align: center;
  padding: 8px 20px;
}
.announce strong { color: var(--gold-light); font-weight: 600; }
.announce span + span::before { content: "\2022"; margin: 0 12px; color: var(--gold); }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, .92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.header.scrolled { border-color: var(--line); box-shadow: 0 4px 20px rgba(26, 29, 35, .06); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -.02em;
}
.logo__mark { width: 38px; height: 38px; flex-shrink: 0; }
.logo__ca { color: var(--red); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links > li { position: relative; }
.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 500;
  font-size: .94rem;
  background: none;
  border: 0;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
}
.nav__link:hover, .nav__link.active { color: var(--red); }
.nav__link svg { width: 14px; height: 14px; transition: transform .2s; }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 520px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s, transform .18s, visibility .18s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-dropdown:hover .nav__link svg { transform: rotate(180deg); }

.dropdown__item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  transition: background .15s;
}
.dropdown__item:hover { background: var(--bg); }
.dropdown__item img { width: 48px; height: 48px; }
.dropdown__item strong { display: block; font-size: .95rem; }
.dropdown__item small { color: var(--muted); font-size: .8rem; }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__phone { font-weight: 600; font-size: .9rem; }

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 10px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 12px 20px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 4px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .mobile-sub { padding-left: 18px; font-weight: 400; color: var(--muted); }
.mobile-menu .btn { margin-top: 18px; border-bottom: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 72px 96px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -200px;
  top: -160px;
  background: radial-gradient(circle, var(--gold-soft) 0%, rgba(246, 238, 212, 0) 65%);
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero h1 span { color: var(--red); }
.hero__lead { font-size: 1.12rem; color: var(--muted); max-width: 540px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 32px; }

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .92rem;
  font-weight: 500;
}
.hero__checks li { display: flex; align-items: center; gap: 8px; }
.hero__checks svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }

.hero__art {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
  width: 100%;
}
.hero__art img { position: absolute; filter: drop-shadow(0 18px 30px rgba(26, 29, 35, .22)); }
.hero__art .art-coin { width: 68%; left: 4%; top: 6%; animation: float 7s ease-in-out infinite; }
.hero__art .art-pin { width: 36%; right: 2%; top: 2%; animation: float 6s ease-in-out infinite .8s; }
.hero__art .art-patch { width: 38%; right: 6%; bottom: 6%; animation: float 8s ease-in-out infinite .4s; }
.hero__art .art-medal { width: 28%; left: 8%; bottom: 0; animation: float 7.5s ease-in-out infinite 1.2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__badge {
  position: absolute;
  left: 0;
  top: 4%;
  background: var(--surface);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  z-index: 2;
}
.hero__badge strong { display: block; font-size: 1rem; }
.hero__badge .flag { font-size: 1.6rem; line-height: 1; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding-block: 56px 64px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--gold-soft) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}
.page-hero p { color: var(--muted); font-size: 1.08rem; max-width: 600px; }
.page-hero__art { max-width: 320px; margin-left: auto; filter: drop-shadow(0 18px 30px rgba(26, 29, 35, .2)); }
.page-hero--center { text-align: center; }
.page-hero--center p { margin-inline: auto; }

.breadcrumb {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { margin: 0 6px; }

/* ---------- Product Cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card__img {
  aspect-ratio: 1 / 1;
  background: var(--bg);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  padding: 18%;
}
.product-card p { color: var(--muted); font-size: .93rem; flex: 1; }
.product-card__link {
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .93rem;
}
.product-card__link svg { width: 16px; height: 16px; transition: transform .2s; }
.product-card:hover .product-card__link svg { transform: translateX(4px); }

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature {
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--line);
}
.feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--red-soft);
  color: var(--red);
  margin-bottom: 18px;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ---------- Process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
  position: relative;
}
.step {
  position: relative;
  background: var(--charcoal-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 34px 28px 30px;
}
.step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 800;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.step p { color: #B9BDC7; font-size: .95rem; margin: 0; }
.steps-cta { text-align: center; margin-top: 44px; }

/* ---------- Testimonials ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.review__stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 12px; }
.review blockquote { margin: 0 0 20px; font-size: .98rem; flex: 1; }
.review__who { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--charcoal);
  display: grid;
  place-items: center;
  font-weight: 700;
}
.review__who strong { display: block; font-size: .93rem; }
.review__who small { color: var(--muted); }

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  font-size: .95rem;
  color: var(--muted);
}
.rating-summary strong { color: var(--text); }

/* ---------- Logo strip ---------- */
.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.logo-slot {
  height: 72px;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: #A7A294;
  font-size: .8rem;
  font-weight: 500;
  background: var(--surface);
}

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  font-family: inherit;
  font-weight: 500;
  font-size: .9rem;
  cursor: pointer;
  transition: all .15s;
}
.filter-btn:hover { border-color: var(--charcoal); }
.filter-btn.active { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.gallery__item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gallery__img {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 20%;
}
.gallery__item:nth-child(4n+1) .gallery__img { background: var(--gold-soft); }
.gallery__item:nth-child(4n+2) .gallery__img { background: var(--red-soft); }
.gallery__item:nth-child(4n+3) .gallery__img { background: #ECEEF2; }
.gallery__item:nth-child(4n+4) .gallery__img { background: #EFEBE2; }
.gallery__cap { padding: 14px 18px; font-size: .88rem; }
.gallery__cap strong { display: block; }
.gallery__cap small { color: var(--muted); }

.collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.collection {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: var(--charcoal);
  transition: transform .25s;
}
.collection:hover { transform: translateY(-4px); }
.collection img {
  position: absolute;
  width: 55%;
  right: -8%;
  top: -6%;
  opacity: .95;
  transition: transform .4s;
}
.collection:hover img { transform: rotate(-8deg) scale(1.05); }
.collection--red { background: var(--red); }
.collection--gold { background: linear-gradient(135deg, #B08A1C, var(--gold)); color: var(--charcoal); }
.collection h3 { position: relative; font-size: 1.35rem; margin-bottom: 4px; }
.collection p { position: relative; margin: 0; opacity: .85; font-size: .93rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--red);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,.08);
  right: -100px;
  top: -140px;
}
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { margin: 0; opacity: .9; font-size: 1.05rem; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- Product page ---------- */
.types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.type-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.type-card__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--gold-soft);
  color: #7A6212;
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.type-card p { color: var(--muted); font-size: .93rem; margin: 0; }

.uses {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.use-chip {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: .9rem;
  font-weight: 500;
}

.options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.option-group {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.option-group h3 { display: flex; align-items: center; gap: 10px; }
.option-group h3::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.option-group ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: .93rem; }
.option-group li { margin-bottom: 4px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split__art {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 12%;
}
.checklist { list-style: none; padding: 0; margin: 0 0 28px; }
.checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ---------- Pricing ---------- */
.price-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
  min-width: 640px;
}
.price-table th, .price-table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.price-table th { background: var(--charcoal); color: #fff; font-weight: 600; }
.price-table th:first-child, .price-table td:first-child { text-align: left; font-weight: 600; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table tbody tr:nth-child(even) { background: var(--bg); }
.price-panel[hidden] { display: none; }
.price-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-group + .faq-group { margin-top: 44px; }
.faq-group h2 { font-size: 1.4rem; margin-bottom: 16px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 22px;
  font-weight: 600;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--red);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details > div { padding: 0 22px 20px; color: var(--muted); }
.faq details > div p:last-child { margin: 0; }

/* ---------- Quote form ---------- */
.quote-layout {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 40px;
  align-items: start;
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-step + .form-step { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.form-step__title { display: flex; align-items: center; gap: 12px; font-size: 1.1rem; margin-bottom: 18px; }
.form-step__title span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .85rem;
}

.product-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.product-picker input { position: absolute; opacity: 0; pointer-events: none; }
.product-picker label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-size: .9rem;
  transition: border-color .15s, background .15s;
}
.product-picker img { width: 52px; height: 52px; }
.product-picker label:hover { border-color: #CFC7B6; }
.product-picker input:checked + label { border-color: var(--red); background: var(--red-soft); }
.product-picker input:focus-visible + label { outline: 3px solid var(--gold); outline-offset: 2px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 500; font-size: .9rem; margin-bottom: 6px; }
.field label small { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: .95rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
}
.field textarea { min-height: 120px; resize: vertical; }

.dropzone {
  border: 2px dashed #D6CDBB;
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  background: var(--bg);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.dropzone:hover, .dropzone.dragover { border-color: var(--red); background: var(--red-soft); }
.dropzone svg { width: 34px; height: 34px; color: var(--red); margin: 0 auto 8px; }
.dropzone p { margin: 0; font-size: .9rem; }
.dropzone small { color: var(--muted); }
.dropzone input { display: none; }
.dropzone__files { margin-top: 10px; font-size: .85rem; font-weight: 500; color: var(--red); }

.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 500;
}
.form-status--ok { background: #E7F5EC; color: #1C6B3A; }
.form-status--err { background: var(--red-soft); color: var(--red-dark); }

.side-card {
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.side-card h3 { color: var(--gold-light); }
.side-card .checklist li { color: #D4D6DC; font-size: .93rem; }
.side-card .checklist li::before { background-color: var(--gold); }
.side-card__contact { border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; margin-top: 8px; font-size: .93rem; }
.side-card__contact a { color: #fff; font-weight: 600; }

/* ---------- Quote: visual options ---------- */
.opt-empty {
  margin: 0;
  padding: 18px;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: .92rem;
  text-align: center;
}
.opt-group { border: 0; padding: 0; margin: 0 0 26px; min-width: 0; }
.opt-group:last-child { margin-bottom: 0; }
.opt-group legend { font-weight: 600; font-size: .98rem; margin-bottom: 12px; padding: 0; }
.opt-group legend small { font-weight: 400; color: var(--muted); font-size: .85rem; margin-left: 6px; }
.opt-grid { display: grid; gap: 10px; }
.opt-grid--photo { grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)); }
.opt-grid--swatch { grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); }
.opt-grid--dots { display: flex; flex-wrap: wrap; gap: 10px; }
.opt-grid input { position: absolute; opacity: 0; pointer-events: none; }

.opt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 10px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  transition: border-color .15s, background .15s, transform .15s;
}
.opt:hover { border-color: #CFC7B6; transform: translateY(-1px); }
.opt-grid input:checked + .opt { border-color: var(--red); background: var(--red-soft); }
.opt-grid input:checked + .opt::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 12px no-repeat;
  box-shadow: 0 2px 6px rgba(200, 16, 46, .35);
}
.opt-grid input:focus-visible + .opt { outline: 3px solid var(--gold); outline-offset: 2px; }

/* Photo tiles: crop to the top of the image (hides labels baked into supplier photos) */
.opt__media {
  width: 100%;
  aspect-ratio: 278 / 128;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg);
  display: grid;
  place-items: center;
}
.opt__media img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.opt__media--ask { font-size: 1.6rem; font-weight: 700; color: var(--muted); }
.opt__media--empty {
  background:
    radial-gradient(circle, transparent 38%, #E4DDCF 39%, #E4DDCF 46%, transparent 47%),
    var(--bg);
}
.opt-grid--swatch .opt__media { aspect-ratio: 1 / 1; max-width: 64px; background: none; }
.opt__swatch {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12), 0 3px 8px rgba(26,29,35,.18);
}

/* Square photo tiles (coin type) */
.opt-grid--square { grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)); }
.opt-grid--square .opt__media { aspect-ratio: 1 / 1; }
.opt-grid--square .opt__media img { object-position: center; }

/* Upgrade tiles (engraving, numbering) */
.opt-grid--upgrade { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
.opt-grid--upgrade .opt__media { aspect-ratio: 5 / 3; }
.opt-grid--upgrade .opt__media img { object-position: center; }

/* White ground for product photos shot on white */
.opt-grid--square .opt__media { background: #fff; }
.opt__note { display: block; font-weight: 500; color: var(--muted); font-size: .78rem; margin-top: 2px; }
.opt-grid input:checked + .opt .opt__note { color: var(--red-dark); }

/* Size tiles: coins drawn to scale */
.opt-grid--size { grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); }
.opt__size { width: 100%; height: 92px; display: flex; align-items: center; justify-content: center; }
.opt__size img { filter: drop-shadow(0 4px 8px rgba(26, 29, 35, .22)); }
.opt-grid--size .opt { font-size: .95rem; }

/* Colour dots */
.opt-grid--dots .opt { padding: 6px 10px 6px 6px; flex-direction: row; gap: 8px; border-radius: 999px; }
.opt__dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.15);
  flex-shrink: 0;
}
.opt-grid--dots input:checked + .opt::after { top: -6px; right: -6px; width: 18px; height: 18px; background-size: 10px; }

/* ---------- About ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}
.stat strong { display: block; font-size: 2.4rem; color: var(--gold-light); font-weight: 800; }
.stat span { color: #B9BDC7; font-size: .93rem; }

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: #B9BDC7;
  padding-block: 72px 32px;
  font-size: .92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer .logo { color: #fff; margin-bottom: 16px; }
.footer .logo__ca { color: var(--gold-light); }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a:hover { color: var(--gold-light); }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
}

/* ---------- Scroll animations ---------- */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .hero__art img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav__links, .nav__phone { display: none; }
  .hamburger { display: block; }
  .product-grid, .features { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .logos { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .quote-layout { grid-template-columns: 1fr; }
  .side-card { position: static; }
}

@media (max-width: 860px) {
  .section { padding-block: 64px; }
  .hero { padding-block: 40px 64px; }
  .hero__grid, .page-hero__grid, .split { grid-template-columns: 1fr; }
  .hero__art { max-width: 400px; margin: 0 auto; }
  .page-hero__art { display: none; }
  .steps, .reviews, .types, .options, .collections, .price-notes { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cta-band { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
  .cta-band__actions { justify-content: center; }
  .product-picker { grid-template-columns: repeat(2, 1fr); }
  .announce span + span { display: none; }
}

@media (max-width: 560px) {
  .product-grid, .features { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .logos { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px 18px; }
  .nav__actions .btn { display: none; }
  .hero__ctas .btn { width: 100%; }
}
