/* ============================================================
   CANADA24KGOLD — styles.css
   Luxury jewelry landing page styles
   ============================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  --gold:        #D4AF37;
  --gold-hover:  #B8960C;
  --gold-light:  #F0D98A;
  --cream:       #FAF8F4;
  --cream-dark:  #F2EDE4;
  --white:       #FFFFFF;
  --dark:        #141210;
  --mid:         #4A4540;
  --muted:       #8A857E;
  --border:      #E6E0D5;
  --wa-green:    #25D366;
  --wa-hover:    #1db954;
  --solana:      #9945FF;

  --serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:   'Lato', system-ui, -apple-system, sans-serif;

  --header-h:  80px;
  --ticker-h:  42px;
  --max-w:     1200px;
  --r:         5px;            /* border-radius */
  --ease:      0.3s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* "FREE" keyword — bold by default via <strong>; gold tint makes it pop */
strong { font-weight: 700; }
.hero-sub strong       { color: var(--gold-light); }
.scales-headline strong { color: var(--gold-light); }

/* ---- SCROLL FADE-IN ---- */
/* Elements start invisible and slide up; JS adds .visible when in view */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Stagger gallery items as they scroll into view ---- */
.gallery-grid .gallery-item:nth-child(1) { transition-delay: 0s; }
.gallery-grid .gallery-item:nth-child(2) { transition-delay: 0.07s; }
.gallery-grid .gallery-item:nth-child(3) { transition-delay: 0.14s; }
.gallery-grid .gallery-item:nth-child(4) { transition-delay: 0.21s; }
.gallery-grid .gallery-item:nth-child(5) { transition-delay: 0.28s; }
.gallery-grid .gallery-item:nth-child(6) { transition-delay: 0.35s; }
.gallery-grid .gallery-item:nth-child(7) { transition-delay: 0.42s; }

/* ---- SHARED SECTION TYPOGRAPHY ---- */
.section-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: var(--r);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,175,55,0.35);
}

.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--dark);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--r);
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.btn-secondary:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* WhatsApp green button — used for all buy / contact actions */
.btn-wa,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--wa-green);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: var(--r);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-wa:hover,
.btn-whatsapp:hover {
  background: var(--wa-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
}

/* ============================================================
   STICKY HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;          /* top/left/right: 0 */
  z-index: 1000;
  height: var(--header-h);
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.09);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo-link { flex-shrink: 0; }
.logo { height: 54px; width: auto; }

.main-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.main-nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mid);
  position: relative;
  transition: color var(--ease);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--ease);
}
.main-nav a:hover { color: var(--dark); }
.main-nav a:hover::after { width: 100%; }

.header-wa {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 0.75rem;
}

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
/* Animate hamburger to X when open */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   METALS PRICE TICKER BAR
   ============================================================ */
.ticker-bar {
  position: fixed;
  top: var(--header-h);
  inset-inline: 0;
  z-index: 999;
  height: var(--ticker-h);
  background: var(--dark);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;      /* Firefox */
}
.ticker-bar::-webkit-scrollbar { display: none; }

.ticker-label {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.15);
  padding-right: 14px;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  white-space: nowrap;
}
.ticker-item {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.ticker-sep {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}
.ticker-update {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  padding-left: 16px;
}

/*
  When SHOW_PRICE_TICKER = false, script.js adds .no-ticker to <html>.
  These rules collapse every element that assumed the ticker bar existed.
  Remove this block (or leave it — it just won't apply) when the ticker is on.
*/
.no-ticker #ticker-bar {
  display: none;                   /* hide the bar itself */
}
.no-ticker .hero {
  padding-top: var(--header-h);    /* hero no longer needs to clear the ticker */
}
.no-ticker .main-nav {
  top: var(--header-h);            /* mobile nav drops from header only */
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Push content below fixed header + ticker */
  padding-top: calc(var(--header-h) + var(--ticker-h));
  overflow: hidden;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
}
/* Hero video — same rules as the old hero-img; object-fit covers the frame */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
/* Dark gradient from left keeps the headline legible over the video */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10,8,5,0.80) 0%,
    rgba(10,8,5,0.50) 50%,
    rgba(10,8,5,0.08) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 32px;
}
.hero-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7.5vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  max-width: 680px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 460px;
  margin-bottom: 44px;
  line-height: 1.75;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section {
  padding: 110px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header .section-eyebrow { display: block; }

/* ---- EARRINGS FEATURE LAYOUT ---- */
/* Two-column: large photo on the left, size picker on the right */
.earrings-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.earrings-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 64px rgba(0,0,0,0.12);
}
.earrings-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.earrings-sub {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* 2×2 grid of size cards */
.size-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.size-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.size-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(212,175,55,0.14);
}

/* The big size number e.g. "4mm" */
.size-label {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

/* Price displayed between the size label and the note */
.size-price {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 2px;
}

/* Small descriptive line under the size */
.size-note {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

/* Gold Buy Now button — links to Stripe; used in size cards */
.btn-buy {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: var(--r);
  text-align: center;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-buy:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.35);
}

/* ============================================================
   FREE SCALE COUNTER SECTION
   ============================================================ */
.scales-section {
  background: var(--dark);
  padding: 96px 32px;
  text-align: center;
}
.scales-inner { max-width: 680px; margin: 0 auto; }

.scales-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.scales-headline {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 52px;
}

.scales-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Large animated number — pulses with a soft gold glow */
.scales-number {
  font-family: var(--serif);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  animation: pulse-gold 2.8s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%, 100% { opacity: 1;    text-shadow: 0 0  0px rgba(212,175,55,0);    }
  50%       { opacity: 0.82; text-shadow: 0 0 36px rgba(212,175,55,0.55); }
}

.scales-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

/* ============================================================
   CUSTOMER PHOTO GALLERY
   ============================================================ */
.gallery-section {
  padding: 100px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

/* Responsive grid — fills columns with minmax so it adapts automatically */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  /* Square crop keeps the grid tidy regardless of source aspect ratio */
  aspect-ratio: 1 / 1;
  background: var(--cream-dark);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
  background: var(--cream-dark);
  padding: 100px 32px;
}
.reviews-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

/* Auto-fill grid: 3 across on desktop, wraps on smaller screens */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--ease);
}
.review-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); }

/* Gold star row — ★★★★★ */
.review-stars {
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--mid);
  line-height: 1.72;
  margin-bottom: 20px;
  flex: 1; /* pushes author info to the bottom */
}

/* Small gold label showing which product was bought */
.review-product {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.review-author {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.review-city {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ============================================================
   OUR MISSION
   ============================================================ */
.mission-section {
  padding: 110px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.mission-text h2 { margin-bottom: 20px; }

/* Prominent pull-quote with gold left border */
.mission-quote {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--dark);
  border-left: 3px solid var(--gold);
  padding: 16px 22px;
  margin: 24px 0 28px;
  line-height: 1.65;
  background: rgba(212,175,55,0.06);
  border-radius: 0 var(--r) var(--r) 0;
}

.mission-text p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.mission-text .btn-wa { margin-top: 14px; }

.mission-image {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12);
}
.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   WORK WITH US
   ============================================================ */
.work-section {
  background: var(--cream-dark);
  padding: 110px 32px;
  text-align: center;
}
.work-inner {
  max-width: 620px;
  margin: 0 auto;
}
.work-inner h2 { margin-bottom: 20px; }
.work-inner p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 44px;
}
.work-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   PAYMENT TRUST BAR
   ============================================================ */
.payment-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 32px;
}
.payment-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.payment-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.payment-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.pay-chip {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mid);
  letter-spacing: 0.04em;
  transition: border-color var(--ease);
}
.pay-chip:hover { border-color: var(--gold); }
.pay-chip.stripe  { color: #635BFF; border-color: rgba(99,91,255,0.35); }
.pay-chip.solana  { color: var(--solana); border-color: rgba(153,69,255,0.35); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  padding: 72px 32px 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {}
.footer-logo { height: 50px; width: auto; margin-bottom: 14px; }
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  padding-top: 4px;
}
.footer-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
  padding-top: 4px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color var(--ease);
}
.social-link:hover { color: var(--gold); }

/* Centered WhatsApp contact button — only WA button on the page */
.footer-contact {
  text-align: center;
  padding: 44px 24px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-wa-main {
  font-size: 0.88rem;
  padding: 16px 40px;
}

.footer-bottom {
  text-align: center;
  padding: 22px 32px;
}
.footer-bottom p {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.22);
}

/* ============================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .earrings-feature { gap: 48px; }
  .mission-inner { gap: 56px; }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --ticker-h: 38px;
  }

  .header-inner { padding: 0 20px; gap: 16px; }
  .logo { height: 44px; }

  /* Hide desktop nav and WhatsApp button; show hamburger */
  .header-wa { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile nav drops down below ticker */
  .main-nav {
    position: fixed;
    top: calc(var(--header-h) + var(--ticker-h));
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    padding: 0;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--ease), opacity var(--ease);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 997;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
  }
  .main-nav a::after { display: none; }

  /* Ticker */
  .ticker-label { display: none; }
  .ticker-bar { padding: 0 14px; gap: 10px; }

  /* Hero */
  .hero-content { padding: 60px 20px; }
  .hero-headline { font-size: clamp(2.4rem, 9vw, 3.6rem); }
  .hero-sub { font-size: 0.97rem; }

  /* Products / Earrings feature — stack on mobile */
  .products-section { padding: 64px 20px; }
  .section-header { margin-bottom: 40px; }
  .earrings-feature { grid-template-columns: 1fr; gap: 36px; }
  .earrings-img-wrap { aspect-ratio: 4 / 3; }
  .earrings-sub { font-size: 0.97rem; }
  .size-label { font-size: 1.6rem; }

  /* Scales */
  .scales-section { padding: 72px 20px; }
  .scales-headline { font-size: clamp(1.3rem, 5vw, 1.9rem); }

  /* Gallery — 2 columns on mobile */
  .gallery-section { padding: 64px 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Reviews */
  .reviews-section { padding: 64px 20px; }
  .reviews-grid { grid-template-columns: 1fr; }

  /* Partner */
  /* Mission */
  .mission-section { padding: 72px 20px; }
  .mission-inner { grid-template-columns: 1fr; gap: 40px; }
  .mission-image { order: -1; aspect-ratio: 16 / 9; }

  /* Work */
  .work-section { padding: 72px 20px; }
  .work-ctas { flex-direction: column; align-items: center; }

  /* Payment */
  .payment-bar { padding: 24px 20px; }

  /* Footer */
  .site-footer { padding: 56px 20px 0; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .footer-brand .footer-logo { margin: 0 auto 14px; }
  .footer-links { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .footer-social { align-items: center; flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .ticker-sep { display: none; }
  .hero-headline { font-size: clamp(2rem, 10vw, 2.8rem); }
}
