/* ============================================
   Phoenix Goldfields — Main Stylesheet
   www.phoenixgold.com.au
   ============================================ */

/* --- Variables --- */
:root {
  --bg:        #0d0d0d;
  --bg-mid:    #141414;
  --bg-card:   #1c1c1c;
  --bg-alt:    #111111;
  --gold:      #c9961a;
  --gold-lt:   #f0b429;
  --orange:    #e8870a;
  --text:      #f0f0f0;
  --text-muted:#999999;
  --border:    #2a2a2a;
  --radius:    6px;
  --shadow:    0 4px 24px rgba(0,0,0,0.6);
  --nav-h:     72px;
  --font-head: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-lt); }
ul { list-style: none; }

/* --- Utility --- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.divider { width: 60px; height: 3px; background: var(--gold); margin: 16px auto 32px; }
.divider-left { margin-left: 0; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .5px;
  transition: all .2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  color: #000;
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

/* Section Headers */
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================
   HEADER / NAV
   ============================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(13,13,13,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
#site-header.scrolled {
  background: rgba(13,13,13,1);
  box-shadow: 0 2px 20px rgba(0,0,0,.8);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s, background .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(201,150,26,.08);
}
.nav-cta {
  margin-left: 8px;
  padding: 10px 22px;
  font-size: .88rem;
}
/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
/* Phone in header */
.nav-phone {
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone svg { width: 15px; height: 15px; }

/* ============================================
   HERO
   ============================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(232,135,10,.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,150,26,.04) 0%, transparent 50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,150,26,.1);
  border: 1px solid rgba(201,150,26,.3);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title span { color: var(--gold); }
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-image-wrap img {
  max-height: 540px;
  width: auto;
  filter: drop-shadow(0 0 60px rgba(232,135,10,.3));
  animation: floatBird 6s ease-in-out infinite;
}
@keyframes floatBird {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.hero-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,135,10,.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================
   TRUST BAR
   ============================================ */
#trust-bar {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-item svg {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   ABOUT
   ============================================ */
#about { background: var(--bg-alt); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 420px;
}
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: #000;
  border-radius: 8px;
  padding: 16px 20px;
  font-weight: 700;
  text-align: center;
  font-size: .85rem;
  line-height: 1.3;
  box-shadow: var(--shadow);
}
.about-img-badge strong { font-size: 1.5rem; display: block; }
.about-content p { margin-bottom: 16px; color: #ccc; }
.about-content p:last-child { margin-bottom: 0; }
.about-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--text-muted);
}
.about-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   SERVICES
   ============================================ */
#services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  opacity: 0;
  transition: opacity .25s;
}
.service-card:hover {
  border-color: rgba(201,150,26,.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px; height: 48px;
  background: rgba(201,150,26,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.service-card .service-link:hover { color: var(--gold-lt); }

/* ============================================
   WHY CHOOSE US
   ============================================ */
#why { background: var(--bg-mid); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,150,26,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.why-icon svg { width: 20px; height: 20px; }
.why-item h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.why-item p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   CONCRETE FOCUS STRIP
   ============================================ */
#concrete-focus {
  background: linear-gradient(135deg, #111 0%, #1a1200 50%, #111 100%);
  border-top: 1px solid rgba(201,150,26,.2);
  border-bottom: 1px solid rgba(201,150,26,.2);
}
.concrete-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.concrete-content .section-title { font-size: clamp(1.4rem,3vw,2rem); }
.concrete-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.concrete-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  color: #ccc;
}
.concrete-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 22px;
  text-align: center;
}
.concrete-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 380px;
}

/* ============================================
   EQUIPMENT
   ============================================ */
#equipment { background: var(--bg-alt); }
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.equip-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  font-weight: 500;
  color: #ccc;
}
.equip-item::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ============================================
   CTA BAND
   ============================================ */
#cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  text-align: center;
  padding: 64px 24px;
}
#cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #000;
  margin-bottom: 12px;
}
#cta-band p { color: rgba(0,0,0,.7); font-size: 1.05rem; margin-bottom: 28px; }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-dark {
  background: #000;
  color: var(--gold);
  border-color: #000;
}
.btn-dark:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: var(--gold-lt);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(201,150,26,.1);
  border: 1px solid rgba(201,150,26,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-info-val {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
}
.contact-info-val a { color: var(--text); }
.contact-info-val a:hover { color: var(--gold); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 12px 14px;
  font-size: .92rem;
  font-family: var(--font-body);
  transition: border-color .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #1e1e1e;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select option { background: #1c1c1c; }
.form-submit { align-self: flex-start; }

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img { max-height: 50px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social a svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .85rem;
  color: var(--text-muted);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: .8rem; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 120px 0 64px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--border); }

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px;
  margin-bottom: 28px;
}
.service-detail-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.service-detail-icon {
  width: 56px; height: 56px;
  background: rgba(201,150,26,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.service-detail-icon svg { width: 28px; height: 28px; }
.service-detail h2 { font-size: 1.3rem; font-weight: 700; }
.service-detail p { color: #ccc; font-size: .92rem; margin-bottom: 16px; }
.service-detail ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
  margin-top: 12px;
}
.service-detail ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--text-muted);
}
.service-detail ul li::before {
  content: '▸';
  color: var(--gold);
  flex-shrink: 0;
}
.service-detail-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
.service-detail-body img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}
@media (max-width: 820px) {
  .service-detail-body {
    grid-template-columns: 1fr;
  }
  .service-detail-body img {
    height: 220px;
  }
}

/* ============================================
   SHOP PAGE
   ============================================ */
.shop-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 80px;
}
/* Image viewer */
.shop-img-main {
  position: relative;
  background: #1a1a1a;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .3s ease;
}
.shop-img-main img.hidden { display: none; }
.shop-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.shop-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color .2s;
  flex-shrink: 0;
}
.shop-thumb img { width: 100%; height: 100%; object-fit: cover; }
.shop-thumb.active { border-color: var(--gold); }
.shop-thumb:hover { border-color: var(--gold-lt); }

/* Product details */
.shop-badge {
  display: inline-block;
  background: rgba(201,150,26,.15);
  color: var(--gold);
  border: 1px solid rgba(201,150,26,.3);
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.shop-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}
.shop-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
}
.shop-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 6px;
}
.shop-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.shop-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 10px;
}
/* Category toggle (Adults/Kids) */
.cat-toggle {
  display: flex;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 20px;
}
.cat-btn {
  padding: 9px 28px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.cat-btn.active {
  background: var(--gold);
  color: #000;
}
/* Size selector */
.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.size-grid.hidden { display: none; }
.size-btn {
  min-width: 52px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.size-btn:hover { border-color: var(--gold); color: var(--gold); }
.size-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
/* Colour swatch */
.colour-swatch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: #000;
}
.colour-swatch span { font-size: .9rem; color: var(--text-muted); }
/* Qty */
.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
}
.qty-ctrl button {
  width: 40px; height: 44px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
  transition: background .2s;
}
.qty-ctrl button:hover { background: rgba(201,150,26,.15); color: var(--gold); }
.qty-ctrl input {
  width: 52px;
  text-align: center;
  background: none;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 0;
}
.qty-ctrl input:focus { outline: none; }
/* Order buttons */
.shop-order-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.shop-order-btns .btn { text-align: center; }
.btn-paypal {
  background: #ffc439;
  color: #000;
  border-color: #ffc439;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-paypal:hover { background: #f0b429; color: #000; border-color: #f0b429; }
.shop-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.shop-features li:last-child { border-bottom: none; }
.shop-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
/* Order form section */
.shop-order-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  max-width: 680px;
  margin: 0 auto;
}
.shop-order-section h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.shop-order-section p {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 28px;
}
/* How to order cards */
.order-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.order-how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
}
.order-how-card .how-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.order-how-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--gold);
}
.order-how-card p {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

@media (max-width: 860px) {
  .shop-product { grid-template-columns: 1fr; gap: 32px; }
  .order-how-grid { grid-template-columns: 1fr; }
  .shop-order-section { padding: 28px 20px; }
}

/* ============================================
   PROJECTS / GALLERY PAGE
   ============================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .3px;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.gallery-grid {
  columns: 3 280px;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .35s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  padding: 32px 14px 14px;
  opacity: 0;
  transition: opacity .25s;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
}
.gallery-caption span {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.gallery-caption p {
  color: #eee;
  font-size: .82rem;
  margin-top: 5px;
}
.gallery-item.hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.93);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 8px 48px rgba(0,0,0,.8);
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  opacity: .8;
  transition: opacity .2s;
  z-index: 9001;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-caption {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #ccc;
  font-size: .88rem;
  text-align: center;
  background: rgba(0,0,0,.6);
  padding: 8px 20px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  border-left: 3px solid var(--gold);
}
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: .85rem; color: var(--text-muted); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section-pad { padding: 56px 0; }

  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(13,13,13,.98);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { width: 100%; text-align: center; margin-left: 0; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-image-wrap { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-badge { bottom: 10px; right: 10px; }
  .about-list { grid-template-columns: 1fr; }

  .concrete-inner { grid-template-columns: 1fr; }
  .concrete-image { display: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .why-grid { grid-template-columns: 1fr; }

  .trust-inner { justify-content: flex-start; gap: 20px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
}
