/* ============================================
   NEXTGEN ILLUMINATION
   Ridgeline Digital
   Brand: Black (#1a1a1a) + Gold (#f0a500) + White
   Aesthetic: Bold industrial, precision edges, gold light
   ============================================ */

:root {
  /* Brand */
  --black:       #111113;
  --black-mid:   #1a1a1e;
  --black-card:  #202025;
  --black-light: #28282f;
  --border:      #333338;
  --border-light:#3f3f47;

  --gold:        #f0a500;
  --gold-bright: #ffc62b;
  --gold-dim:    #c88a00;
  --gold-bg:     rgba(240,165,0,0.08);
  --gold-bg-med: rgba(240,165,0,0.15);

  --white:       #ffffff;
  --off-white:   #f5f3ef;
  --text:        #c8c8d4;
  --text-muted:  #7a7a8a;

  /* Spacing */
  --r:    3px;
  --r-lg: 8px;

  /* Shadows */
  --shadow-gold: 0 0 40px rgba(240,165,0,0.25);
  --shadow-dark: 0 8px 32px rgba(0,0,0,0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- TYPE ---- */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
}

h1 { font-size: clamp(3.2rem, 8vw, 6rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); }

em {
  font-style: normal;
  color: var(--gold);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold-bg);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--border-light);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-call {
  background: var(--gold);
  color: var(--black);
  padding: 10px 18px;
  font-size: 0.85rem;
}
.btn-call:hover { background: var(--gold-bright); }

.btn-lg  { padding: 16px 32px; font-size: 1.05rem; }
.btn-xl  { padding: 18px 40px; font-size: 1.15rem; }

/* ---- SECTIONS ---- */
.section { padding: 100px 0; }

.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-header.center {
  text-align: center;
  margin: 0 auto 48px;
}

.section-header.center .section-tag {
  justify-content: center;
}

.section-header.center .section-tag::before { display: none; }

.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(17,17,19,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
}

.logo-img {
  height: 88px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover,
.nav-link.active { color: var(--white); }

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.2s;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--black-mid);
  border-top: 1px solid var(--border);
  padding: 16px 28px 24px;
  gap: 4px;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

.mobile-call-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 14px 20px !important;
  border-radius: var(--r);
  font-size: 1rem !important;
  border: none !important;
  width: 100%;
  justify-content: center;
}

.mobile-menu.open { display: flex; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 104px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: var(--black);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.14;
}

.hero-glow {
  position: absolute;
  top: -10%;
  left: 40%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(240,165,0,0.18) 0%, transparent 65%);
  pointer-events: none;
}

/* Light beams — referencing logo arrow going up-right */
.light-beam {
  position: absolute;
  top: 0;
  width: 1px;
  transform-origin: top center;
  background: linear-gradient(to bottom, rgba(240,165,0,0.7), transparent);
}

.beam-1 {
  left: 48%;
  height: 70vh;
  width: 2px;
  transform: rotate(-12deg);
  animation: beam-pulse 5s ease-in-out infinite alternate;
}

.beam-2 {
  left: 55%;
  height: 55vh;
  transform: rotate(5deg);
  animation: beam-pulse 5s ease-in-out 1.5s infinite alternate;
}

@keyframes beam-pulse {
  from { opacity: 0.25; }
  to   { opacity: 0.65; }
}

/* Top edge gold line */
.hero::after {
  content: '';
  position: absolute;
  top: 76px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 820px;
  animation: fade-up 0.8s ease both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-bg);
  border: 1px solid rgba(240,165,0,0.25);
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: dot-pulse 2s ease infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  margin-bottom: 24px;
  max-width: 720px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 580px;
  margin-bottom: 44px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-trust-bar {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-pill span { color: var(--gold); font-weight: 700; }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll-hint span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease infinite;
}

@keyframes scroll-line {
  0%   { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ---- QUOTE BAR ---- */
.quote-bar {
  background: var(--gold);
  padding: 36px 0;
}

.quote-bar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.quote-bar-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
}

.quick-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
}

.quick-form input {
  flex: 1;
  min-width: 130px;
  padding: 12px 16px;
  border: none;
  border-radius: var(--r);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  background: rgba(17,17,19,0.2);
  color: var(--black);
  outline: none;
}

.quick-form input::placeholder { color: rgba(17,17,19,0.55); }
.quick-form input:focus { background: rgba(17,17,19,0.3); }

.quick-form .btn-gold {
  background: var(--black);
  color: var(--gold);
  flex-shrink: 0;
}
.quick-form .btn-gold:hover { background: var(--black-light); }

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
}

.svc-card {
  background: var(--black-card);
  padding: 44px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.svc-card:hover { background: var(--black-light); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  margin-bottom: 24px;
}

.svc-icon svg { width: 100%; height: 100%; }

.svc-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.svc-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}

.svc-arrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  transition: transform 0.2s;
  display: inline-block;
}

.svc-card:hover .svc-arrow { transform: translateX(5px); }

/* ---- WHY SECTION ---- */
.why-section {
  background: var(--black-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.why-image-frame {
  position: relative;
}

.image-placeholder {
  aspect-ratio: 4/5;
  background: var(--black-light);
  border: 2px dashed var(--border-light);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  padding: 16px;
}

.exp-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  color: var(--black);
  padding: 20px 24px;
  border-radius: var(--r);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.exp-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.exp-num sup {
  font-size: 2rem;
  vertical-align: top;
  margin-top: 4px;
}

.exp-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.3;
}

.why-intro {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 32px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.chk {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.why-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- CALL BANNER ---- */
.call-banner {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.call-banner-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(240,165,0,0.1), transparent 70%);
}

.call-banner-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.call-banner-text h2 { font-size: 3rem; margin-bottom: 8px; }
.call-banner-text p  { color: var(--text-muted); }

.call-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--black-mid); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: border-color 0.25s, transform 0.25s;
}

.testi-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testi-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ---- COVERAGE ---- */
.areas-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  justify-content: center;
}

.area-tag {
  background: var(--black-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 18px;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}

.area-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.areas-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.areas-note a { color: var(--gold); text-decoration: underline; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--black-mid);
  border-top: 1px solid var(--border);
  padding-top: 72px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 38px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: var(--gold) !important;
}

.footer-col p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-bottom a { color: var(--gold); }

/* ---- FORM SUCCESS ---- */
.form-success {
  background: rgba(240,165,0,0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 18px;
  border-radius: var(--r);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  margin-top: 14px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; gap: 60px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-scroll-hint { display: none; }
  .call-banner-inner { flex-direction: column; text-align: center; }
  .call-banner-actions { justify-content: center; }
  .quote-bar-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .quick-form { flex-direction: column; }
  .quick-form input, .quick-form .btn { width: 100%; }
  .section { padding: 64px 0; }
}

/* ---- BRAND PANEL (replaces photo placeholders) ---- */
.brand-panel {
  aspect-ratio: 4/5;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.brand-panel::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240,165,0,0.12), transparent 70%);
  pointer-events: none;
}

.brand-panel-logo {
  width: 70%;
  max-width: 240px;
  opacity: 0.9;
}

.brand-panel-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

/* ---- REAL PHOTO ---- */
.why-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
}

/* ---- GALLERY ---- */
.gallery-section { background: var(--black); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--black-card);
}

.gallery-item.tall {
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item.tall img {
  height: 340px;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .gallery-item img, .gallery-item.tall img { height: 180px; }
}

/* Home base suburb highlight */
.area-tag.area-home {
  border-color: var(--gold);
  color: var(--gold);
}

/* Product shot — square image, show full, don't crop */
.gallery-item.product img {
  object-fit: contain;
  background: #fff;
  padding: 12px;
}
