/* =============================================
   PAINT PLACE CENTENARY
   Design: Inspired by Paint Place Cowra + Repaint Template
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============ VARIABLES ============ */
:root {
  --gold:         #F4B62E;
  --gold-dark:    #D9A020;
  --gold-light:   #FDE9A0;
  --charcoal:     #2C2C2C;
  --charcoal-2:   #3C3C3C;
  --cream:        #FBF6E8;
  --cream-2:      #F7F0D5;
  --white:        #FFFFFF;
  --off-white:    #F9F9F9;
  --light-gray:   #F0F0F0;
  --mid-gray:     #DDDDDD;
  --text-dark:    #222222;
  --text-mid:     #555555;
  --text-light:   #888888;
  --red:          #E8320A;

  /* Rainbow brand colours */
  --rb-red:       #E53935;
  --rb-orange:    #F57C00;
  --rb-yellow:    #F4B62E;
  --rb-green:     #43A047;
  --rb-blue:      #1E88E5;
  --rb-indigo:    #5E35B1;

  --radius-sm:    6px;
  --radius-md:    14px;
  --radius-lg:    24px;
  --radius-xl:    40px;
  --radius-full:  9999px;

  --shadow-sm:    0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.11);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.14);

  --transition:   all 0.3s ease;
  --header-h:     80px;

  --font-head:    'DM Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ============ TYPOGRAPHY ============ */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; color: var(--text-dark); letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.6rem); }
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; }
p  { color: var(--text-mid); line-height: 1.75; font-weight: 400; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-light);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.section-sub {
  font-size: 0.975rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.7;
  font-weight: 400;
}

/* ============ LAYOUT ============ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
/* Ripple effect on click */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.25);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.btn:active::after {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0s, transform 0s;
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 4px 16px rgba(244,182,46,0.35);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(244,182,46,0.5);
  color: var(--charcoal);
}
.btn-gold:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 3px 10px rgba(244,182,46,0.3);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--charcoal-2);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 0 3px rgba(244,182,46,0.3);
  color: var(--white);
}
.btn-dark:active {
  transform: translateY(0) scale(0.98);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--charcoal);
}

.btn-lg { padding: 15px 34px; font-size: 0.9rem; }
.btn-sm { padding: 8px 18px; font-size: 0.78rem; }
.btn-block { width: 100%; justify-content: center; }

/* ============ IMAGE-BASED LOGO ============ */
.site-logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.site-logo-img:hover { opacity: 0.88; }
.site-logo-img img {
  height: 62px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Footer logo: real PNG has white bg — show on a subtle white pill so it pops on dark footer */
.site-logo-img.dark img {
  filter: none;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

/* ============ RAINBOW LOGO ICON (fallback CSS logo) ============ */
.rainbow-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.rainbow-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Rainbow ring via conic-gradient */
.rainbow-circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    #E53935 0deg 60deg,
    #F57C00 60deg 120deg,
    #F4B62E 120deg 180deg,
    #43A047 180deg 240deg,
    #1E88E5 240deg 300deg,
    #5E35B1 300deg 360deg
  );
  position: relative;
}
.rainbow-circle-inner::after {
  content: '';
  position: absolute;
  top: 22%;
  left: 22%;
  width: 56%;
  height: 56%;
  border-radius: 50%;
  background: var(--white);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-line1 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.logo-line2 {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Dark version */
.rainbow-logo.dark .logo-line1 { color: var(--white); }
.rainbow-logo.dark .logo-line2 { color: var(--gold); }

/* ============ HEADER ============ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
#site-header.scrolled { box-shadow: var(--shadow-md); }

/* Top info bar */
.header-topbar {
  background: var(--charcoal);
  padding: 8px 0;
}
.header-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left {
  display: flex;
  gap: 20px;
  align-items: center;
}
.topbar-left a {
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-left a:hover { color: var(--gold); }
.topbar-left a i { color: var(--gold); font-size: 0.72rem; }

.topbar-right { display: flex; gap: 10px; align-items: center; }
.topbar-call-btn {
  background: var(--gold);
  color: var(--charcoal) !important;
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.topbar-call-btn:hover { background: var(--gold-dark) !important; }

/* Main nav row */
.header-main-row {
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.header-main-row .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Nav */
#main-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
#main-nav a {
  padding: 8px 13px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
}
#main-nav a:hover, #main-nav a.active {
  color: var(--gold-dark);
  background: var(--gold-light);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.nav-dropdown.open > a::after { transform: rotate(180deg); }
.nav-dd-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: var(--header-h);
  left: auto;
  background: var(--white);
  min-width: 240px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(0,0,0,0.16), 0 2px 8px rgba(0,0,0,0.08);
  padding: 6px;
  border: 1px solid var(--light-gray);
  z-index: 1100;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-dropdown.open .nav-dd-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dd-menu li {
  display: block;
  width: 100%;
}
.nav-dd-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-dd-menu a:hover { background: var(--gold-light); color: var(--gold-dark); }
.nav-dd-menu a i { color: var(--gold); width: 15px; font-size: 0.78rem; flex-shrink: 0; }

.header-cta-btns { display: flex; gap: 10px; align-items: center; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.hamburger:hover { background: var(--light-gray); }
.hline {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open .hline:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hline:nth-child(2) { opacity: 0; }
.hamburger.open .hline:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
#mobile-nav {
  display: none;
  background: var(--white);
  border-top: 2px solid var(--gold);
  padding: 12px 0;
}
#mobile-nav.open { display: block; }
#mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--light-gray);
}
#mobile-nav a:hover, #mobile-nav a.active { color: var(--gold-dark); background: var(--gold-light); }
#mobile-nav a i { color: var(--gold); width: 18px; }
.mobile-nav-cta {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ============ HERO ============ */
#hero {
  padding-top: calc(var(--header-h) + 50px);
  padding-bottom: 60px;
  background: var(--cream);
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Playful background blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.10;
  pointer-events: none;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: var(--gold);
  top: -100px; right: -100px;
}
.hero-blob-2 {
  width: 300px; height: 300px;
  background: var(--rb-blue);
  bottom: -60px; left: -60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

.hero-text .store-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-text .store-tag i { color: var(--gold); }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold-dark);
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal-2);
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 34px;
  max-width: 500px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

/* Pulse animation for call button */
@keyframes pulse-gold {
  0%   { box-shadow: 0 0 0 0 rgba(244,182,46,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(244,182,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(244,182,46,0); }
}
.btn-gold.btn-pulse {
  animation: pulse-gold 2.2s infinite;
}

/* Trust badges row replacing stats */
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-mid);
  box-shadow: var(--shadow-sm);
}
.hero-trust-badge i {
  color: var(--gold-dark);
  font-size: 0.9rem;
}
.hero-trust-badge strong {
  color: var(--charcoal);
}

/* Legacy stat styles (used on other pages) */
.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stat-item { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
}
.stat-text {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
}

/* Hero image side */
.hero-img-side { position: relative; }

.hero-circle-wrap {
  width: 100%;
  aspect-ratio: 1;
  max-width: 440px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 8px 40px rgba(244,182,46,0.25), 0 0 0 6px rgba(244,182,46,0.15), 0 0 0 14px rgba(244,182,46,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-circle-placeholder {
  text-align: center;
  color: var(--charcoal);
}
.hero-circle-placeholder i {
  font-size: 5rem;
  display: block;
  margin-bottom: 12px;
  opacity: 0.7;
}
.hero-circle-placeholder p {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--charcoal);
  opacity: 0.8;
}

/* Hero circle with real photo */
.hero-circle-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* circle-img-placeholder with real image */
.circle-img-outer img,
.circle-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Floating badges on hero */
.hero-badge-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-badge-float.badge-1 { bottom: 10%; left: -20px; }
.hero-badge-float.badge-2 { top: 10%; right: -20px; }

.badge-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.badge-icon.gold  { background: var(--gold-light); color: var(--gold-dark); }
.badge-icon.dark  { background: var(--charcoal); color: var(--gold); }
.badge-label { font-size: 0.68rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.badge-value { font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }

/* ============ CHARCOAL STRIP ============ */
#charcoal-strip {
  background: var(--charcoal);
  padding: 22px 0;
}
.strip-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
}
.strip-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.strip-item-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white);
}
.strip-item-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}
.strip-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* ============ AUSTRALIAN MADE — CORNERSTONE SECTION ============ */
#aus-made-section {
  background: linear-gradient(135deg, #0d2137 0%, #1a3a5c 60%, #0f2d4a 100%);
  position: relative;
  overflow: hidden;
}
#aus-made-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.aus-made-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.aus-made-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  background: rgba(244,182,46,0.12);
  border: 1px solid rgba(244,182,46,0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.aus-made-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 24px;
}
.aus-made-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 16px;
}
.aus-made-lead strong { color: var(--gold); }
.aus-made-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 14px;
}
.aus-made-body strong { color: rgba(255,255,255,0.92); }
.aus-made-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.aus-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.aus-stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.aus-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  max-width: 120px;
}

/* Feature card (right column) */
.aus-feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 0 0 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}
.aus-feature-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.aus-feature-badge-top i { margin-right: 4px; }

/* Product image hero inside card */
.aus-feature-product-img {
  overflow: hidden;
  background: #111;
  border-radius: 16px 16px 0 0;
}
.aus-feature-product-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.4s ease;
}
.aus-feature-card:hover .aus-feature-product-img img {
  transform: scale(1.03);
}

/* Logo + location strip below product image */
.aus-feature-logo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 32px 16px;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.aus-feature-logo-strip img {
  height: 42px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
}
.aus-feature-location-inline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: var(--gold-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.aus-feature-location-inline i { font-size: 0.68rem; }
.aus-feature-body { padding: 0 32px; }
.aus-feature-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}
.aus-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.aus-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
}
.aus-feature-list li i {
  color: #2e7d32;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1000px) {
  .aus-made-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 70px 32px;
  }
}
@media (max-width: 640px) {
  .aus-made-inner { padding: 56px 20px; }
  .aus-made-stats { gap: 24px; }
  .aus-stat-num { font-size: 1.5rem; }
}

/* ============ BRANDS SHOWCASE SECTION ============ */
#brands-section {
  background: linear-gradient(135deg, #0d2137 0%, #1a3a5c 60%, #0f2d4a 100%);
  position: relative;
  overflow: hidden;
}
#brands-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.brands-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 40px;
  position: relative;
  z-index: 1;
}
.brands-header {
  margin-bottom: 56px;
}
.brands-header .aus-made-title {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.brands-intro-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Brand showcase cards grid */
.brands-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.brand-showcase-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.brand-showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  border-color: rgba(244,182,46,0.4);
}
.bsc-logo-wrap {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 32px;
  min-height: 100px;
  border-bottom: 3px solid rgba(244,182,46,0.3);
}
.bsc-logo-wrap img {
  height: 50px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}
.bsc-body {
  padding: 22px 24px 26px;
}
.bsc-body h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.bsc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(244,182,46,0.1);
  border: 1px solid rgba(244,182,46,0.25);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.bsc-badge i { font-size: 0.65rem; }
.bsc-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: 16px;
}
.bsc-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bsc-tags li {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* Bottom note */
.brands-footer-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px 22px;
  max-width: 580px;
  margin: 0 auto;
}
.brands-footer-note i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.brands-footer-note p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}
.brands-footer-note strong { color: rgba(255,255,255,0.9); }

/* Responsive */
@media (max-width: 900px) {
  .brands-showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .brands-inner { padding: 70px 32px; }
}
@media (max-width: 640px) {
  .brands-showcase-grid { grid-template-columns: 1fr; gap: 16px; }
  .brands-inner { padding: 56px 20px; }
  .brands-header { margin-bottom: 36px; }
}

/* ============ ABOUT / LOCAL STORE SECTION ============ */
#local-section {
  background: var(--white);
}
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Circular image frame */
.circle-img-frame {
  position: relative;
  width: 420px;
  max-width: 100%;
  margin: 0 auto;
}
.circle-img-outer {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-2), var(--mid-gray));
  border: 6px solid var(--gold-light);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-img-placeholder {
  text-align: center;
  padding: 30px;
  color: var(--text-light);
}
.circle-img-placeholder i {
  font-size: 4.5rem;
  display: block;
  margin-bottom: 12px;
  color: var(--mid-gray);
}
.circle-img-placeholder p { font-size: 0.85rem; color: var(--text-light); }

/* Gold badge on circle */
.circle-badge {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.circle-badge .cb-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.circle-badge .cb-text {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Rainbow bullet list */
.rb-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 22px 0;
}
.rb-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.rb-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rb-dot svg {
  width: 22px; height: 22px;
}

/* ============ WHY CHOOSE US ============ */
#why-section {
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  width: 58px; height: 58px;
  background: var(--gold-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-dark);
  margin-bottom: 18px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--charcoal);
}
.why-card h4 { font-size: 0.95rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* ============ SERVICES ============ */
#services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--light-gray);
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.sc-icon-wrap {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  transition: var(--transition);
}
.service-card:hover .sc-icon-wrap { transform: scale(1.08); }

/* Real image top for service cards */
.sc-img-wrap {
  height: 160px;
  overflow: hidden;
  position: relative;
}
.sc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.service-card:hover .sc-img-wrap img { transform: scale(1.06); }

.sc-body { padding: 18px 18px 22px; }
.sc-body h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 7px; }
.sc-body p  { font-size: 0.82rem; color: var(--text-mid); line-height: 1.55; margin-bottom: 12px; }
.sc-link {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.sc-link:hover { gap: 10px; }

/* ============ COLOUR MATCH SECTION ============ */
#colour-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
#colour-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(244,182,46,0.15) 0%, transparent 65%);
}
.colour-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
}
.colour-text .section-tag {
  background: rgba(244,182,46,0.15);
  color: var(--gold);
}
.colour-text .section-title { color: var(--white); }
.colour-text p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }

.colour-check-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
}
.colour-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}
.check-circle {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.swatch {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.swatch:hover { transform: scale(1.08); box-shadow: 0 4px 14px rgba(0,0,0,0.35); }

/* ============ TESTIMONIALS ============ */
#testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-quote {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
  color: var(--gold);
}
.testi-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 22px;
}
.testi-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--light-gray);
}
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--charcoal);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testi-name { font-family: var(--font-head); font-size: 0.85rem; font-weight: 800; color: var(--text-dark); }
.testi-type { font-size: 0.75rem; color: var(--text-light); }
.testi-stars { color: var(--gold); font-size: 0.85rem; }

/* ============ TRADE SECTION ============ */
#trade-cta {
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
#trade-cta::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  top: -200px; right: -100px;
}
.trade-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.trade-text h2 { color: var(--charcoal); margin-bottom: 14px; }
.trade-text p  { color: rgba(44,44,44,0.75); margin-bottom: 28px; }
.trade-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.trade-feat {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--charcoal);
}
.trade-feat i { color: var(--charcoal); font-size: 0.85rem; }

.trade-form-box {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.trade-form-box h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 6px; }
.trade-form-box > p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 24px; }

/* ============ BIG CTA BAND ============ */
#cta-band {
  background: var(--charcoal);
  padding: 80px 0;
  text-align: center;
}
.cta-band-inner { max-width: 700px; margin: 0 auto; }
.cta-band-inner .section-tag {
  background: rgba(244,182,46,0.15);
  color: var(--gold);
}
.cta-band-inner h2 { color: var(--white); margin-bottom: 14px; }
.cta-band-inner p  { color: rgba(255,255,255,0.65); margin-bottom: 36px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ CONTACT SECTION ============ */
#contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-items { display: flex; flex-direction: column; gap: 18px; margin: 24px 0; }
.contact-item  { display: flex; align-items: flex-start; gap: 14px; }
.c-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1rem;
  flex-shrink: 0;
}
.c-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 3px; }
.c-value { font-size: 0.92rem; color: var(--text-dark); font-weight: 500; }
.c-value a { color: var(--gold-dark); font-weight: 700; }
.c-value a:hover { text-decoration: underline; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--light-gray); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 8px 0; font-size: 0.875rem; color: var(--text-mid); }
.hours-table td:first-child { font-family: var(--font-head); font-weight: 700; color: var(--text-dark); width: 50%; }

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  margin-top: 28px;
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ============ FORM ============ */
.form-box {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-box h3 { margin-bottom: 6px; }
.form-box > p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-family: var(--font-body); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.02em; color: var(--text-dark); margin-bottom: 6px; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(244,182,46,0.15); }
.form-input::placeholder { color: var(--text-light); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-select {
  appearance: none;
  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 fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  background: rgba(67,160,71,0.1);
  border: 1px solid rgba(67,160,71,0.3);
  border-radius: var(--radius-sm);
  padding: 14px;
  color: #2e7d32;
  font-family: var(--font-head);
  font-weight: 700;
  text-align: center;
  margin-top: 14px;
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 110px 0 65px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Dark overlay for all image-backed heroes */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20,20,20,0.78) 0%, rgba(30,25,10,0.70) 100%);
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }

/* Per-page background images */
.page-hero--about      { background-image: url('../images/store-front-1.jpg'); background-position: center 30%; }
.page-hero--services   { background-image: url('../images/store-products-display.jpg'); background-position: center 40%; }
.page-hero--interior   { background-image: url('../images/paint-interior.jpg'); background-position: center 50%; }
.page-hero--exterior   { background-image: url('../images/hero-exterior-house.jpg'); background-position: center 60%; }
.page-hero--automotive { background-image: url('../images/hero-automotive-marine.jpg'); background-position: center 50%; }
.page-hero--industrial { background-image: url('../images/hero-industrial.jpg'); background-position: center 50%; }
.page-hero--accessories{ background-image: url('../images/store-accessories-aisle.jpg'); background-position: center 40%; }
.page-hero--colour     { background-image: url('../images/hero-colour-chart.jpg'); background-position: center 50%; }
.page-hero--contact    { background-image: url('../images/store-front-2.jpg'); background-position: center 50%; }
.page-hero p  { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 580px; margin: 0 auto 28px; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ============ INNER PAGE CONTENT ============ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.svc-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-ph { text-align: center; color: var(--text-light); padding: 40px; }
.img-ph i { font-size: 4rem; display: block; margin-bottom: 10px; color: var(--mid-gray); }
.img-ph p  { font-size: 0.85rem; }

.service-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 20px 0; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-mid);
}
.service-list li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.faq-item {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--gold); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
  user-select: none;
  gap: 14px;
}
.faq-question:hover { background: var(--cream); }
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 0.82rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-toggle { background: var(--gold); color: var(--charcoal); transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ============ FOOTER ============ */
#site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 18px 0 24px;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--charcoal); transform: translateY(-2px); }

.footer-col h5 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a::before { content: '›'; color: var(--gold); font-size: 1rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-block { display: flex; flex-direction: column; gap: 13px; }
.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.fc-item i { color: var(--gold); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
.fc-item a { color: rgba(255,255,255,0.6); }
.fc-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.38); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.38); }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-built-by {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0 4px;
  text-align: center;
}
.footer-built-by p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.02em;
}
.footer-built-by a {
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer-built-by a:hover { color: var(--gold); }

/* ============ MOBILE CALL BAR ============ */
#mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--white);
  border-top: 2px solid var(--gold);
  padding: 10px 16px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
#mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.mb-call   { background: var(--gold); color: var(--charcoal) !important; }
.mb-direct { background: var(--charcoal); color: var(--white) !important; }

/* ============ UTILITY ============ */
.gap-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============ NEW INNER PAGE COMPONENTS ============ */

/* Page hero — cream variant (used by most inner pages) */
.page-hero {
  padding-top: 150px;
  padding-bottom: 90px;
}

/* Local-grid column helpers (used in inner pages) */
.local-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.local-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Circle image wrap used in inner pages */
.circle-img-wrap {
  position: relative;
  width: 380px;
  max-width: 100%;
}
.circle-img-inner {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--gold-light);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder {
  text-align: center;
  padding: 30px;
}

/* Circle badge on image */
.circle-badge {
  position: absolute;
  bottom: 18px;
  right: 0;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.badge-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.badge-text {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* Local grid reverse (no rtl hack) */
.local-grid-reverse {
  direction: rtl;
}
.local-grid-reverse > * {
  direction: ltr;
}

/* Section actions */
.section-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Page hero quick links strip */
.page-hero-quick-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

/* Page hero dark variant (trade page) */
.page-hero-dark {
  text-align: left;
  background-image: url('../images/hero-trade-store.jpg');
  background-size: cover;
  background-position: center 35%;
  position: relative;
  padding-top: 150px;
  padding-bottom: 90px;
}
.page-hero-dark::before {
  background: linear-gradient(135deg, rgba(18,18,18,0.82) 0%, rgba(40,30,10,0.65) 100%);
  z-index: 0;
}
.page-hero-dark .container { position: relative; z-index: 1; }
.page-hero-dark h1, .page-hero-dark p { text-align: left; margin-left: 0; }
.breadcrumb-light a { color: rgba(255,255,255,0.55); }
.breadcrumb-light span { color: rgba(255,255,255,0.3); }

/* Trade hero quick stats */
.trade-hero-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.thq-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
}
.thq-item strong {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.thq-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 10px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-emoji { font-size: 2.4rem; margin-bottom: 14px; }
.value-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.value-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }

/* Stats band */
.stats-band {
  background: var(--charcoal);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item {}
.stat-item .stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-item .stat-suffix {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  font-family: var(--font-head);
  font-weight: 700;
}

/* Info split box (about page) */
.info-split-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.info-split-text h3 { margin-bottom: 12px; }
.info-split-checks { display: flex; flex-direction: column; gap: 14px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: var(--radius-md);
}
.check-icon {
  width: 40px; height: 40px;
  background: var(--gold-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.check-item strong { display: block; font-size: 0.9rem; font-family: var(--font-head); font-weight: 800; margin-bottom: 2px; }

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-md);
}
.team-name { font-family: var(--font-head); font-weight: 800; font-size: 1rem; margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--gold-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; font-family: var(--font-head); }
.team-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* Steps grid (colour matching) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.step-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--white); }
.step-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  font-weight: 900;
  font-family: var(--font-head);
  color: white;
  box-shadow: var(--shadow-md);
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.step-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* Colour systems grid */
.colour-systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cs-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: var(--transition);
}
.cs-item:hover { background: var(--cream-2); transform: translateX(4px); }
.cs-swatch {
  width: 52px; height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.cs-item strong { display: block; font-family: var(--font-head); font-weight: 800; font-size: 0.9rem; margin-bottom: 3px; }
.cs-item span { font-size: 0.8rem; color: var(--text-light); }

/* Swatches grid */
.swatches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.swatch-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: var(--transition);
}
.swatch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.swatch-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100px;
}
.swatch-info { padding: 14px 16px; text-align: left; }
.swatch-info strong { display: block; font-size: 0.9rem; font-family: var(--font-head); font-weight: 800; margin-bottom: 3px; }
.swatch-info span { font-size: 0.78rem; color: var(--text-light); }

/* Trade split (benefits + form) */
.trade-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.trade-benefits-list { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.trade-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.tb-icon {
  width: 46px; height: 46px;
  background: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.trade-benefit h5 { font-size: 0.95rem; margin-bottom: 5px; }
.trade-benefit p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }

/* Supply grid (trade page) */
.supply-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.supply-item {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.supply-item:hover { background: var(--cream-2); transform: translateX(4px); }
.si-icon {
  width: 48px; height: 48px;
  background: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.supply-item h4 { font-size: 0.95rem; margin-bottom: 8px; }
.supply-item p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }

/* 4-col why grid variant */
.why-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

/* Footer contact items (inner page variant) */
.footer-contact-items { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.footer-contact-item i { color: var(--gold); font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--gold); }

/* Contact items on contact page */
.contact-items { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.c-icon {
  width: 46px; height: 46px;
  background: var(--gold-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.c-label { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-head); font-weight: 700; }
.c-value { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); }
.c-value a { color: var(--text-dark); }
.c-value a:hover { color: var(--gold-dark); }

/* Hours table */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 10px 14px; font-size: 0.88rem; border-bottom: 1px solid var(--light-gray); }
.hours-table td:first-child { color: var(--text-mid); font-weight: 600; }
.hours-table td:last-child { color: var(--text-dark); font-weight: 700; text-align: right; }

/* Map wrap */
.map-wrap {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 280px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Form box */
.form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
}
.form-box h3 { margin-bottom: 10px; }
.form-box > p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 24px; }

/* ============ PRODUCT CATEGORY CARDS (services.html) ============ */
#categories {
  background: #f7f8fa;
}
.prod-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.prod-cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--light-gray);
  box-shadow: 0 2px 12px rgba(13,33,55,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
}
.prod-cat-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(13,33,55,0.12);
  transform: translateY(-4px);
}

/* Gold "Hire" accent variant */
.prod-cat-card--highlight {
  border-color: rgba(244,182,46,0.4);
  background: linear-gradient(160deg, #fffef5 0%, #fff9e0 100%);
}
.prod-cat-card--highlight:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(244,182,46,0.18);
}
.prod-cat-card--highlight .pcc-icon {
  background: linear-gradient(135deg, #f4b62e 0%, #d99a10 100%);
  color: #fff;
}
.prod-cat-card--highlight .pcc-footer {
  border-top-color: rgba(244,182,46,0.3);
  background: rgba(244,182,46,0.06);
}
.prod-cat-card--highlight .sc-link {
  color: #b07d08;
}

/* Icon area */
.pcc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  font-size: 2.4rem;
  background: linear-gradient(135deg, #0d2137 0%, #1a3a5c 100%);
  color: var(--gold);
  flex-shrink: 0;
}

/* Body */
.pcc-body {
  padding: 22px 22px 16px;
  flex: 1;
}
.pcc-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 9px;
  line-height: 1.3;
}
.pcc-body > p {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 14px;
}

/* List */
.pcc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pcc-list li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.pcc-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Footer link */
.pcc-footer {
  padding: 14px 22px;
  border-top: 1px solid var(--light-gray);
  background: #fafafa;
  flex-shrink: 0;
}
.pcc-footer .sc-link {
  font-size: 0.84rem;
}

/* ============ RESPONSIVE ============ */

/* ---- 1100px: wide tablets / small laptops ---- */
@media (max-width: 1100px) {
  .container { padding: 0 24px; }

  /* Grids */
  .services-grid      { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 36px; }
  .values-grid        { grid-template-columns: repeat(2, 1fr); }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trade-hero-quick   { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .why-grid-4         { grid-template-columns: repeat(2, 1fr); }
  .colour-systems-grid{ grid-template-columns: repeat(2, 1fr); }
  .swatches-grid      { grid-template-columns: repeat(2, 1fr); }
  .team-grid          { grid-template-columns: repeat(2, 1fr); }
  .info-split-box     { grid-template-columns: 1fr; gap: 24px; }
  .local-grid         { gap: 50px; }
  .circle-img-wrap    { width: 320px; }
  .prod-cat-grid      { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

/* ---- 900px: tablets portrait ---- */
@media (max-width: 900px) {
  /* Header */
  #main-nav, .header-cta-btns { display: none; }
  .hamburger { display: flex; flex-direction: column; }

  /* Ensure desktop dropdown never shows on mobile */
  .nav-dd-menu { display: none !important; }

  /* Mobile nav: scrollable if content overflows */
  #mobile-nav {
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Hero (homepage) */
  .hero-inner     { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-actions   { justify-content: center; }
  .hero-stats     { justify-content: center; }
  .hero-img-side  { display: none; }

  /* Inner page heroes */
  .page-hero          { padding-top: 120px; padding-bottom: 70px; }
  .page-hero h1       { font-size: clamp(1.8rem, 5vw, 2.8rem); }
  .page-hero p        { font-size: 0.95rem; }
  .page-hero-dark h1  { font-size: clamp(1.8rem, 5vw, 2.8rem); }
  .page-hero-dark p   { font-size: 0.95rem; }
  .page-hero-quick-links { justify-content: flex-start; }

  /* Two-col layouts → single col */
  .local-grid         { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .local-grid-reverse { direction: ltr; }
  .local-grid-reverse > * { direction: ltr; }
  .local-text-col     { text-align: left; }
  .circle-img-frame   { max-width: 280px; margin: 0 auto; }
  .circle-img-wrap    { width: 280px; margin: 0 auto; }
  .local-img-col      { justify-content: center; }

  /* Grids */
  .why-grid           { grid-template-columns: repeat(2, 1fr); }
  .why-grid-4         { grid-template-columns: repeat(2, 1fr); }
  .services-grid      { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .colour-inner       { grid-template-columns: 1fr; gap: 40px; }
  .trade-inner        { grid-template-columns: 1fr; gap: 40px; }
  .trade-split        { grid-template-columns: 1fr; gap: 48px; }
  .trade-hero-quick   { grid-template-columns: repeat(2, 1fr); }
  .contact-grid       { grid-template-columns: 1fr; gap: 40px; }
  .values-grid        { grid-template-columns: repeat(2, 1fr); }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .steps-grid         { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .colour-systems-grid{ grid-template-columns: repeat(2, 1fr); }
  .swatches-grid      { grid-template-columns: repeat(2, 1fr); }
  .team-grid          { grid-template-columns: repeat(2, 1fr); }
  .supply-grid        { grid-template-columns: 1fr; }

  /* Homepage sections */
  .strip-divider      { display: none; }
  .brand-logos-grid   { gap: 16px; }

  /* Footer */
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* CTA */
  .cta-btns           { flex-direction: column; align-items: center; }
  .cta-btns .btn      { width: 100%; max-width: 320px; justify-content: center; }

  /* Hero actions on inner pages */
  .hero-actions       { flex-wrap: wrap; gap: 10px; }
}

/* ---- 768px: large phones / small tablets ---- */
@media (max-width: 768px) {
  /* Typography scale down */
  h1, .hero-title     { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  h2, .section-title  { font-size: clamp(1.4rem, 5vw, 2rem); }

  /* Homepage colour section */
  .colour-inner       { grid-template-columns: 1fr; }
  .colour-circle-side { display: none; }

  /* Accessories two-col intro */
  .accessories-intro-grid { grid-template-columns: 1fr !important; }

  /* Services section on services.html */
  .local-grid         { grid-template-columns: 1fr; gap: 32px; }

  /* Trade hero quick */
  .trade-hero-quick   { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 32px; }
  .thq-item           { padding: 16px 12px; }
  .thq-item strong    { font-size: 0.85rem; }
  .thq-item span      { font-size: 0.75rem; }

  /* About page info split */
  .info-split-box     { padding: 28px 20px; grid-template-columns: 1fr; gap: 20px; }

  /* Contact page */
  .contact-grid       { grid-template-columns: 1fr; }
  .form-box           { padding: 28px 20px; }

  /* Colour matching swatches */
  .swatches-grid      { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Footer */
  .footer-grid        { grid-template-columns: 1fr; gap: 28px; }
  .footer-col h5      { margin-top: 0; }
}

/* ---- 640px: phones ---- */
@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .section-pad { padding: 52px 0; }
  .container { padding: 0 16px; }

  /* Show mobile bar, hide topbar */
  .header-topbar { display: none; }
  #mobile-bar    { display: flex; }
  body           { padding-bottom: 68px; }

  /* Header logo smaller */
  .site-logo-img img  { width: 150px; height: auto; }

  /* Homepage hero */
  .hero-title         { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .hero-sub           { font-size: 0.92rem; }
  .hero-actions       { flex-direction: column; align-items: stretch; }
  .hero-actions .btn  { text-align: center; justify-content: center; }
  .hero-badge-float   { display: none; }
  .hero-stats         { gap: 16px; }

  /* Inner page heroes */
  .page-hero          { padding-top: 100px; padding-bottom: 50px; }
  .page-hero-dark     { padding-top: 100px; padding-bottom: 50px; }
  .page-hero .hero-actions { flex-direction: column; align-items: stretch; }
  .page-hero .hero-actions .btn { justify-content: center; }

  /* Grids → full single col */
  .why-grid           { grid-template-columns: 1fr; }
  .why-grid-4         { grid-template-columns: 1fr; }
  .services-grid      { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .prod-cat-grid      { grid-template-columns: 1fr; gap: 18px; }
  .values-grid        { grid-template-columns: 1fr; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .steps-grid         { grid-template-columns: 1fr; }
  .team-grid          { grid-template-columns: 1fr; }
  .trade-hero-quick   { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .colour-systems-grid{ grid-template-columns: 1fr; }
  .swatches-grid      { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Footer */
  .footer-grid        { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom      { flex-direction: column; text-align: center; gap: 8px; }
  .footer-bottom-links{ justify-content: center; }

  /* Forms */
  .form-row           { grid-template-columns: 1fr; }
  .form-box           { padding: 24px 16px; }
  .trade-form-box     { padding: 24px 18px; }

  /* Trade page */
  .trade-features     { grid-template-columns: 1fr; }
  .trade-benefits-list{ gap: 16px; }
  .supply-grid        { grid-template-columns: 1fr; }

  /* Strip */
  .strip-items        { flex-direction: column; align-items: flex-start; padding: 0 4px; gap: 12px; }

  /* Charcoal strip */
  #charcoal-strip     { padding: 18px 0; }

  /* Brand logos */
  .brand-logos-grid   { gap: 12px; }
  .brand-logo-item    { min-width: 100px; padding: 10px 14px; min-height: 60px; }
  .brand-logo-item img{ height: 32px; }
  .brand-logo-item--lg{ min-width: 120px; padding: 12px 16px; min-height: 70px; }
  .brand-logo-item--lg img { height: 40px; }

  /* Section tags */
  .section-tag        { font-size: 0.65rem; }

  /* Testimonials */
  .testi-card         { padding: 24px 20px; }

  /* CTA band */
  #cta-band           { padding: 52px 0; }
  .cta-btns           { flex-direction: column; align-items: stretch; }
  .cta-btns .btn      { justify-content: center; }

  /* Contact */
  .contact-grid       { gap: 32px; }
  .map-wrap           { height: 220px; }

  /* Colour page */
  .swatch-row         { height: 70px; }
  .colour-systems-grid{ gap: 10px; }

  /* About page */
  .info-split-box     { padding: 22px 16px; }
  .check-item         { padding: 12px 14px; }
  .stat-item .stat-number { font-size: clamp(1.8rem, 7vw, 2.5rem); }

  /* Accessories page */
  .accessories-intro-grid { grid-template-columns: 1fr !important; gap: 28px !important; }

  /* Section actions */
  .section-actions    { flex-direction: column; align-items: stretch; }
  .section-actions .btn { justify-content: center; }
  .gap-btns           { flex-direction: column; align-items: stretch; }
  .gap-btns .btn      { justify-content: center; }
}

/* ---- 480px: small phones ---- */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  /* Hero */
  .hero-title         { font-size: 1.7rem; line-height: 1.15; }
  .page-hero h1       { font-size: 1.6rem; }
  .page-hero-dark h1  { font-size: 1.6rem; }

  /* Stats in hero */
  .hero-stats         { flex-direction: column; gap: 12px; }

  /* Trade hero quick — single col on very small screens */
  .trade-hero-quick   { grid-template-columns: 1fr 1fr; }
  .thq-item           { padding: 14px 10px; }

  /* Stats band */
  .stats-grid         { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-item .stat-number { font-size: 1.8rem; }

  /* Swatches */
  .swatches-grid      { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .swatch-row         { height: 60px; }

  /* Brand band */
  #brand-band         { padding: 36px 0; }
  .brand-logos-grid   { gap: 10px; }
  .brand-logo-item    { min-width: 85px; padding: 8px 10px; min-height: 52px; }
  .brand-logo-item img{ height: 26px; }
  .brand-logo-item--lg{ min-width: 100px; }
  .brand-logo-item--lg img { height: 32px; }

  /* Mobile nav CTA */
  .mobile-nav-cta     { padding: 12px 16px; }

  /* Footer */
  .footer-links li    { margin-bottom: 4px; }

  /* Page hero quick links */
  .page-hero-quick-links { gap: 8px; }
  .page-hero-quick-links .btn { font-size: 0.75rem; padding: 7px 12px; }

  /* Why cards */
  .why-card           { padding: 24px 18px; }
  .why-icon           { width: 52px; height: 52px; font-size: 1.2rem; }

  /* Service cards */
  .services-grid      { grid-template-columns: 1fr; }
  .sc-img-wrap        { height: 160px; }

  /* Section pad */
  .section-pad        { padding: 44px 0; }
}

/* ============ AUSTRALIAN OWNED BADGE ============ */
.aus-owned-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #00562a 0%, #007a3d 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.aus-owned-badge svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Timber brand columns — stack on small screens */
@media (max-width: 700px) {
  .timber-brands-grid { grid-template-columns: 1fr !important; }
}
