/*
  ╔══════════════════════════════════════════════════════════╗
  ║  CrystalMark Awards — style.css                         ║
  ║                                                         ║
  ║  HOW TO EDIT:                                           ║
  ║  • Colors are set at the top in :root {}                ║
  ║    Change them there and they update everywhere         ║
  ║  • Ctrl+F for any class name to find its styles         ║
  ║  • Comments explain every major section                 ║
  ╚══════════════════════════════════════════════════════════╝
*/

/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS — change colors here to retheme the whole site
═══════════════════════════════════════════════════════════ */
:root {
  /* Core palette */
  --obsidian:       #080810;   /* darkest background */
  --ink:            #0F0F1C;   /* main dark background */
  --ink-2:          #161628;   /* slightly lighter dark */
  --ink-3:          #1E1E35;   /* card backgrounds */
  --ink-4:          #252540;   /* hover states */

  /* Accent colors */
  --gold:           #C49A2A;   /* primary gold */
  --gold-mid:       #D4AF50;   /* lighter gold */
  --gold-pale:      #F0D880;   /* very light gold */
  --ice:            #C8E8F0;   /* glacier ice blue */
  --ice-dim:        #6AACCF;   /* medium ice blue */
  --platinum:       #D8D8E8;   /* soft platinum/silver */
  --white:          #F8F8FF;   /* near-white */

  /* Text */
  --text-primary:   #F0F0FA;   /* main text on dark */
  --text-secondary: #9090B8;   /* secondary/muted text */
  --text-body:      #B8B8D8;   /* body paragraph text */

  /* Borders & glass */
  --border-glass:   rgba(200, 232, 240, 0.12);
  --border-gold:    rgba(196, 154, 42, 0.35);
  --glass-bg:       rgba(200, 232, 240, 0.04);
  --glass-bg-hover: rgba(200, 232, 240, 0.08);

  /* Spacing */
  --section-py:     clamp(5rem, 10vw, 9rem);
  --container-px:   clamp(1.5rem, 5vw, 5rem);
  --max-width:      1300px;

  /* Typography */
  --ff-display:     'Playfair Display', Georgia, serif;
  --ff-body:        'Inter', system-ui, sans-serif;

  /* Transitions */
  --ease:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:       cubic-bezier(0.0, 0.0, 0.2, 1.0);
  --t-fast:         0.2s;
  --t-mid:          0.4s;
  --t-slow:         0.7s;
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Prevent horizontal overflow on any screen size */
  overflow-x: hidden;
}

/* Respect user's preference for no animations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background: var(--ink);
  color: var(--text-body);
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

ul, ol { list-style: none; }

/* Visible keyboard focus for accessibility */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════
   LOADING SCREEN
═══════════════════════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--obsidian);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  /* Fades out when JavaScript adds .loader-done class */
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

#loader.loader-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Small CSS crystal that spins on the loading screen */
.loader-crystal {
  width: 60px;
  height: 60px;
  position: relative;
  animation: loaderSpin 1.8s linear infinite;
  transform-style: preserve-3d;
}

.lc-face {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--ice);
  opacity: 0.7;
}
.lc-top    { clip-path: polygon(50% 0%, 100% 40%, 50% 50%, 0% 40%); background: rgba(200,232,240,0.15); }
.lc-front  { clip-path: polygon(50% 50%, 100% 40%, 100% 80%, 50% 100%); background: rgba(200,232,240,0.08); }
.lc-left   { clip-path: polygon(50% 50%, 0% 40%, 0% 80%, 50% 100%); background: rgba(200,232,240,0.12); }
.lc-right  { clip-path: polygon(50% 50%, 100% 40%, 75% 25%, 50% 30%); background: rgba(196,154,42,0.1); }

@keyframes loaderSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.loader-text {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--text-secondary);
  text-transform: uppercase;
  animation: loaderPulse 1.8s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════
   MOUSE GLOW EFFECT (desktop only — JS disables on mobile)
═══════════════════════════════════════════════════════════ */
#mouse-glow {
  position: fixed;
  top: 0; left: 0;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,42,0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.3s;
  /* JavaScript moves this around with the cursor */
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1.4rem var(--container-px);
  /* Starts transparent, JS adds .scrolled class */
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease),
              padding var(--t-mid) var(--ease);
}

/* Style when user has scrolled down */
#navbar.scrolled {
  background: rgba(8, 8, 16, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-glass);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo em { font-style: italic; color: var(--gold); }
.logo-crystal { color: var(--ice); font-size: 1rem; }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.25rem 0;
  position: relative;
}
/* Underline hover effect */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-fast) var(--ease);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 0.72rem;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  transition: color var(--t-fast);
}
.nav-phone:hover { color: var(--gold-mid); }

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
/* X animation when open */
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   MOBILE MENU DRAWER
═══════════════════════════════════════════════════════════ */
#mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 100vw);
  height: 100dvh; /* dynamic viewport height — works on iOS */
  background: var(--ink-2);
  border-left: 1px solid var(--border-glass);
  z-index: 600;
  padding: 6rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  /* Slides in from the right */
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
}
#mobile-menu.is-open { transform: translateX(0); }
#mobile-menu[aria-hidden="true"] { visibility: hidden; }
#mobile-menu[aria-hidden="false"] { visibility: visible; }

.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.mobile-close:hover { color: var(--text-primary); border-color: var(--gold); }

.mobile-link {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-glass);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.mobile-link:hover { color: var(--text-primary); padding-left: 0.5rem; }

.mobile-cta {
  margin-top: 1rem;
  border: 1.5px solid var(--gold) !important;
  padding: 0.9rem 1.5rem !important;
  color: var(--gold) !important;
  font-size: 0.8rem !important;
  font-family: var(--ff-body) !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 2px;
}
.mobile-cta:hover { background: var(--gold) !important; color: var(--obsidian) !important; padding-left: 1.5rem !important; }

/* Dark overlay behind mobile menu */
#menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 590;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid);
}
#menu-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS — reusable across the whole site
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Gold filled button */
.btn-gold {
  background: var(--gold);
  color: var(--obsidian);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-pale);
  border-color: var(--gold-pale);
  color: var(--obsidian);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(196, 154, 42, 0.35);
}

/* Outlined ghost button */
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(240, 240, 250, 0.25);
}
.btn-outline:hover {
  border-color: var(--ice);
  color: var(--ice);
  transform: translateY(-1px);
}

/* Outlined on light section */
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* Small button for cards */
.btn-sm {
  font-size: 0.65rem;
  padding: 0.55rem 1.2rem;
}

/* Large CTA button */
.btn-lg {
  font-size: 0.78rem;
  padding: 1rem 2.5rem;
}

/* Full-width button (for form) */
.btn-full { width: 100%; }

/* Nav-specific small button */
#navbar .btn-gold {
  font-size: 0.65rem;
  padding: 0.6rem 1.4rem;
}

/* ═══════════════════════════════════════════════════════════
   SECTION LAYOUT HELPERS
═══════════════════════════════════════════════════════════ */
section {
  padding: var(--section-py) 0;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* Dark section variant */
.section-dark {
  background: var(--ink-2);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

/* Small eyebrow label above headings */
.section-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   IMAGE PLACEHOLDERS
   Remove these when you add real photos
═══════════════════════════════════════════════════════════ */
.img-placeholder {
  background: var(--ink-3);
  border: 1px dashed var(--border-glass);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.75rem;
  text-align: center;
  letter-spacing: 0.05em;
  width: 100%; height: 100%;
}
.img-placeholder p { opacity: 0.7; }
.img-placeholder small { font-size: 0.65rem; opacity: 0.5; }

/* ═══════════════════════════════════════════════════════════
   GLASS CARD — reusable frosted glass look
═══════════════════════════════════════════════════════════ */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(200, 232, 240, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   JavaScript adds .is-visible when element enters viewport
═══════════════════════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal-fade {
  opacity: 0;
  transition: opacity 0.85s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal-up.is-visible,
.reveal-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(200,232,240,0.05) 0%, transparent 60%),
              radial-gradient(ellipse 60% 80% at 20% 70%, rgba(196,154,42,0.04) 0%, transparent 60%),
              var(--obsidian);
}

/* Canvas for the particle background */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8rem var(--container-px) 5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2.5rem; height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2.8rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── CSS Crystal Gem ─── */
.hero-crystal-wrap {
  position: relative;
  width: 260px;
  height: 320px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The concentric ring animations behind the gem */
.crystal-rings {
  position: absolute;
  inset: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 232, 240, 0.1);
  animation: ringPulse 4s ease-in-out infinite;
}
.ring-1 { width: 220px; height: 220px; animation-delay: 0s; }
.ring-2 { width: 280px; height: 280px; animation-delay: 0.8s; border-color: rgba(196,154,42,0.08); }
.ring-3 { width: 340px; height: 340px; animation-delay: 1.6s; }

@keyframes ringPulse {
  0%, 100% { transform: scale(1);   opacity: 0.6; }
  50%       { transform: scale(1.04); opacity: 0.2; }
}

/* The gem itself — CSS polygon faces */
.crystal-gem {
  width: 180px;
  height: 220px;
  position: relative;
  animation: gemFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(200, 232, 240, 0.25))
          drop-shadow(0 0 40px rgba(196, 154, 42, 0.15));
}

@keyframes gemFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-14px) rotate(1deg); }
  66%       { transform: translateY(-6px) rotate(-0.5deg); }
}

.gem-face {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
}
.gem-top          { clip-path: polygon(50% 0%, 85% 28%, 50% 38%, 15% 28%); background: rgba(220,245,255,0.5); }
.gem-upper-left   { clip-path: polygon(15% 28%, 50% 38%, 50% 70%, 0% 55%); background: rgba(200,232,240,0.22); }
.gem-upper-right  { clip-path: polygon(85% 28%, 50% 38%, 50% 70%, 100% 55%); background: rgba(200,232,240,0.35); }
.gem-lower-left   { clip-path: polygon(0% 55%, 50% 70%, 50% 100%, 20% 88%); background: rgba(180,220,240,0.15); }
.gem-lower-right  { clip-path: polygon(100% 55%, 50% 70%, 50% 100%, 80% 88%); background: rgba(200,232,240,0.18); }
.gem-bottom       { clip-path: polygon(20% 88%, 50% 100%, 80% 88%, 50% 70%); background: rgba(196,154,42,0.2); }

/* Gold shimmer that rotates over the gem */
.gem-glow {
  position: absolute;
  inset: -30px;
  background: conic-gradient(from 0deg at 50% 40%,
    transparent 0deg,
    rgba(196,154,42,0.18) 60deg,
    rgba(200,232,240,0.25) 120deg,
    transparent 180deg,
    rgba(196,154,42,0.1) 240deg,
    transparent 360deg
  );
  animation: gemGlow 8s linear infinite;
  pointer-events: none;
}
@keyframes gemGlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Hero scroll hint arrow */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}
.scroll-arrow {
  display: block;
  width: 1.5px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold-mid));
  animation: scrollDrop 2.5s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  80%  { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════ */
#stats {
  padding: 0;
  background: var(--obsidian);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
}

.stat-card {
  padding: 2.8rem 2rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold-light, var(--gold-pale));
  line-height: 1;
  /* JavaScript animates this number from 0 */
}

.stat-unit {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--gold-mid);
  vertical-align: super;
  font-size: 0.7em;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 0.4rem;
}

/* Vertical dividers between stat cards */
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border-glass);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-ph {
  aspect-ratio: 4 / 5;
  border-radius: 2px;
}

.ph-crystal-icon {
  font-size: 3rem;
  color: var(--ice-dim);
  opacity: 0.4;
}

/* Floating badge on the about photo */
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--ink-3);
  border: 1px solid var(--border-gold);
  padding: 1.4rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.badge-year {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.badge-label {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.6;
}

/* Left eyebrow (not centered) in the about copy */
#about .section-eyebrow {
  justify-content: flex-start;
}
#about .section-eyebrow::after { display: none; }

#about .section-title {
  text-align: left;
}

.about-copy p {
  margin-bottom: 1.2rem;
  color: var(--text-body);
}
.about-copy strong { color: var(--text-primary); }

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem 1.6rem;
  border-radius: 2px;
}

.service-icon {
  width: 52px; height: 52px;
  background: rgba(200, 232, 240, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ice);
  margin-bottom: 1.5rem;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.service-card:hover .service-icon {
  background: rgba(196, 154, 42, 0.1);
  border-color: var(--border-gold);
  color: var(--gold-mid);
}

.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.7rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTS SECTION — 4 columns
═══════════════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--ink-2);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
              0 0 0 1px var(--border-gold);
}

/* Product image area */
.product-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.product-img-ph { /* placeholder styling */
  height: 100%;
}

/* Hover overlay on product image with CTA */
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 16, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
  backdrop-filter: blur(4px);
}
.product-card:hover .product-overlay { opacity: 1; }

.product-info {
  padding: 1.5rem 1.6rem 1.8rem;
}

.product-tag {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.product-name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.product-price {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--text-secondary);
}
.product-price strong {
  color: var(--gold-mid);
  font-size: 1.3rem;
}
.product-price span {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-left: 0.3rem;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   GALLERY SECTION
═══════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px 260px;
  gap: 4px;
}

/* Large cell spans 2 rows */
.gallery-large {
  grid-row: span 2;
}

.gallery-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink-3);
}

.gallery-ph {
  height: 100%;
  font-size: 0.7rem;
}

/* Hover label that slides up */
.gallery-hover-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,8,16,0.9), transparent);
  padding: 2.5rem 1.5rem 1.2rem;
  transform: translateY(100%);
  transition: transform var(--t-fast) var(--ease);
}
.gallery-cell:hover .gallery-hover-info { transform: translateY(0); }
.gallery-hover-info span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

/* Dim image on hover so the overlay reads better */
.gallery-cell img,
.gallery-cell .img-placeholder {
  transition: filter var(--t-fast) var(--ease), transform var(--t-slow) var(--ease);
}
.gallery-cell:hover img,
.gallery-cell:hover .img-placeholder {
  filter: brightness(0.7);
  transform: scale(1.04);
}

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US SECTION
═══════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2.2rem 2rem;
  border-radius: 2px;
  position: relative;
}

.why-number {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  transition: opacity var(--t-fast);
}
.why-card:hover .why-number { opacity: 0.25; }

.why-card h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.7rem;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   PROCESS SECTION
═══════════════════════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
}

/* Horizontal line connecting all steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    var(--border-gold) 20%,
    var(--border-gold) 80%,
    transparent
  );
}

.process-step {
  position: relative;
  padding-top: 0.5rem;
}

.step-marker {
  display: flex;
  align-items: center;
  margin-bottom: 1.8rem;
}

.step-num {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  border: 1.5px solid var(--border-gold);
  background: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: all var(--t-fast);
}
.process-step:hover .step-num {
  background: var(--gold);
  color: var(--obsidian);
  box-shadow: 0 0 25px rgba(196, 154, 42, 0.4);
}

.step-content h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.7rem;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-glass);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  line-height: 1.5;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--ice); }
.faq-question[aria-expanded="true"] { color: var(--gold-mid); }

/* The +/- icon */
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold-mid);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }

/* When open, rotate to show minus */
.faq-question[aria-expanded="true"] .faq-icon {
  background: rgba(196, 154, 42, 0.15);
  border-color: var(--border-gold);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 1.6rem;
  /* hidden attribute controls visibility — toggled by JS */
}
.faq-answer[hidden] { display: none; }

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.9;
}
.faq-answer a {
  color: var(--ice-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-answer a:hover { color: var(--ice); }
.faq-answer strong { color: var(--text-primary); }

/* ═══════════════════════════════════════════════════════════
   CTA BANNER SECTION
═══════════════════════════════════════════════════════════ */
.section-cta {
  background: linear-gradient(135deg,
    rgba(196,154,42,0.12) 0%,
    rgba(200,232,240,0.05) 50%,
    rgba(196,154,42,0.08) 100%
  ),
  var(--ink-2);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
.cta-text h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.cta-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT / QUOTE FORM SECTION
═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

/* Left column info */
#contact .section-eyebrow { justify-content: flex-start; }
#contact .section-eyebrow::after { display: none; }
#contact .section-title { text-align: left; }

.contact-info p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-body);
}
.contact-item a:hover { color: var(--ice); }
.contact-icon { flex-shrink: 0; }

/* Form card */
.quote-form {
  padding: 2.5rem;
  border-radius: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.form-group label span { color: var(--gold); }

/* All inputs / selects / textarea */
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ice-dim);
  background: rgba(200, 232, 240, 0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-secondary); opacity: 0.5; }

/* Select dropdown arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239090B8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option { background: var(--ink-3); }

.form-group textarea { resize: vertical; min-height: 120px; }

/* Date input */
.form-group input[type="date"] { color-scheme: dark; }

/* Form feedback message */
#form-feedback {
  margin-top: 1rem;
  font-size: 0.88rem;
  text-align: center;
  min-height: 1.5rem;
  line-height: 1.6;
  padding: 0.5rem 0;
  border-radius: 2px;
  transition: all 0.3s;
}
#form-feedback.success {
  color: #5dd68a;
  background: rgba(93, 214, 138, 0.08);
  border: 1px solid rgba(93, 214, 138, 0.2);
  padding: 0.8rem 1rem;
}
#form-feedback.error {
  color: #ff7b7b;
  background: rgba(255, 107, 107, 0.08);
  border: 1px solid rgba(255, 107, 107, 0.2);
  padding: 0.8rem 1rem;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
#footer {
  background: var(--obsidian);
  border-top: 1px solid var(--border-glass);
  padding-top: 5rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.footer-logo em { font-style: italic; color: var(--gold); }

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 22rem;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}
.footer-social a {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--t-fast);
}
.footer-social a:hover { color: var(--gold-mid); }

.footer-col h3 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.footer-col a {
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.footer-col a:hover { color: var(--text-primary); padding-left: 4px; }

.footer-contact p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.footer-contact a:hover { color: var(--ice); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.8rem var(--container-px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-glass);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-secondary);
  opacity: 0.5;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.68rem;
  color: var(--text-secondary);
  opacity: 0.5;
  transition: opacity var(--t-fast);
}
.footer-legal a:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   BACK TO TOP BUTTON
═══════════════════════════════════════════════════════════ */
#back-to-top {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 400;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--obsidian);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Hidden by default — JS shows it after scrolling */
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--t-fast), transform var(--t-fast), background var(--t-fast);
  box-shadow: 0 4px 20px rgba(196, 154, 42, 0.4);
}
#back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
#back-to-top:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   SUPPLIER CATALOGUES SECTION
═══════════════════════════════════════════════════════════ */

/* Two-column grid for the catalogue cards */
.catalogues-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

/* Each card is a full clickable <a> link */
.catalogue-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--ink-3);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease),
              box-shadow 0.4s var(--ease),
              border-color 0.3s;
}
.catalogue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  border-color: rgba(200, 232, 240, 0.25);
}

/* Top-right arrow icon */
.catalogue-card::before {
  content: '↗';
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 32px; height: 32px;
  background: rgba(200, 232, 240, 0.08);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  z-index: 2;
  line-height: 32px;
  text-align: center;
}
.catalogue-card:hover::before {
  background: var(--gold);
  color: var(--obsidian);
  border-color: var(--gold);
}

/* Image area — maintains consistent aspect ratio */
.cat-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

/* Real photos fill the wrap if you replace the placeholder */
.cat-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.catalogue-card:hover .cat-img-wrap img { transform: scale(1.05); }

/* Placeholder styling (delete once you add real screenshots) */
.cat-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}

/* Awards of Distinction — ice blue gradient */
.cat-aod {
  background: radial-gradient(ellipse at 40% 30%,
    rgba(200, 232, 240, 0.1) 0%,
    rgba(200, 232, 240, 0.03) 60%,
    transparent 100%
  ), var(--ink-2);
}

/* Caldwell Recognition — gold gradient */
.cat-caldwell {
  background: radial-gradient(ellipse at 60% 30%,
    rgba(196, 154, 42, 0.12) 0%,
    rgba(196, 154, 42, 0.03) 60%,
    transparent 100%
  ), var(--ink-2);
}

/* Row of decorative SVG icons inside each placeholder */
.cat-preview-icons {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
  filter: drop-shadow(0 6px 20px rgba(200, 232, 240, 0.15));
}
.cat-caldwell .cat-preview-icons {
  filter: drop-shadow(0 6px 20px rgba(196, 154, 42, 0.2));
}

.cat-placeholder-label {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  opacity: 0.6;
}

/* Dark overlay with label that fades in on hover */
.cat-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(8, 8, 16, 0.88) 0%,
    rgba(8, 8, 16, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.catalogue-card:hover .cat-img-overlay { opacity: 1; }

.cat-visit-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-mid);
  border-bottom: 1px solid rgba(196, 154, 42, 0.5);
  padding-bottom: 0.2rem;
}

/* Text area below the image */
.cat-info {
  padding: 1.6rem 1.8rem 1.8rem;
  border-top: 1px solid var(--border-glass);
}

/* Tag/badge above the title */
.cat-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ice-dim);
  border: 1px solid var(--border-glass);
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 0.8rem;
}
/* Gold badge variant for Caldwell */
.cat-badge-gold {
  color: var(--gold-mid);
  border-color: var(--border-gold);
}

.cat-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.7rem;
  line-height: 1.15;
}

.cat-desc {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

/* Animated arrow CTA link at the bottom */
.cat-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-mid);
  transition: gap 0.25s var(--ease), color 0.25s;
}
.catalogue-card:hover .cat-cta-link {
  gap: 0.85rem;
  color: var(--gold-pale);
}

/* Helpful note below the grid */
.catalogues-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}
.catalogues-note a {
  color: var(--gold-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.catalogues-note a:hover { color: var(--gold-pale); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet: 1024px and below
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Nav: hide phone number, compress links */
  .nav-phone { display: none; }
  .nav-links { gap: 1.4rem; }

  /* Hero: stack vertically */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .hero-h1 em { display: inline; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-crystal-wrap { order: -1; width: 200px; height: 240px; }

  /* Stats: 2 columns */
  .stats-inner {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    row-gap: 0;
  }
  .stat-divider:nth-child(4) {
    display: none; /* hide last divider on tablet */
  }

  /* Services: 2 columns */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Products: 2 columns */
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* About: stack */
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { right: 0; bottom: -1rem; }

  /* Why: 2 columns */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process: 2 columns */
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }

  /* Contact: stack */
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  /* Catalogues: reduce gap on tablet */
  .catalogues-grid { gap: 1.5rem; }

  /* Footer: 2 columns */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile: 768px and below
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  /* Hero crystal smaller on mobile */
  .hero-crystal-wrap { width: 160px; height: 190px; }
  .crystal-gem { width: 130px; height: 160px; }

  /* Stats: 2 cols, hide all dividers */
  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-divider { display: none; }
  .stat-card {
    padding: 2rem 1rem;
    border-bottom: 1px solid var(--border-glass);
  }
  .stat-card:nth-child(odd) { border-right: 1px solid var(--border-glass); }

  /* Services: 1 column */
  .services-grid { grid-template-columns: 1fr; }

  /* Products: 2 columns (2x2 grid) */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Gallery: single column */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-large { grid-row: span 1; }
  .gallery-cell { aspect-ratio: 4 / 3; }

  /* Why: 1 column */
  .why-grid { grid-template-columns: 1fr; }

  /* Process: 1 column */
  .process-steps { grid-template-columns: 1fr; gap: 2rem; }

  /* CTA banner: stack */
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  /* Catalogues: single column on mobile */
  .catalogues-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  /* Form rows: 1 column */
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Footer: 1 column */
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Small phones: 480px and below
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-lg { text-align: center; }

  /* Products: 1 column on very small screens */
  .products-grid { grid-template-columns: 1fr; }

  .quote-form { padding: 1.5rem; }

  /* Smaller crystal on tiny screens */
  .hero-crystal-wrap { display: none; } /* hide on tiny screens to prioritize text */
}
