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

:root {
  --bg-primary: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --bg-card: #1e1e1e;
  --accent-gold: #C8973A;
  --accent-flame: #E8621A;
  --text-primary: #ffffff;
  --text-secondary: #b8b8b8;
  --text-muted: #6b6b6b;
  --border: #2a2a2a;
  --nav-height: 80px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title { color: var(--text-primary); margin-bottom: 1rem; }

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 3rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 2px;
}

.btn-primary { background: var(--accent-flame); color: #fff; }
.btn-primary:hover { background: #d45510; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,98,26,0.4); }

.btn-outline { background: transparent; color: var(--text-primary); border: 1px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--accent-gold); color: var(--accent-gold); transform: translateY(-2px); }

.btn-gold { background: var(--accent-gold); color: #fff; }
.btn-gold:hover { background: #b5852e; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,151,58,0.35); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.nav.transparent {
  background: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-flame {
  width: 36px;
  height: auto;
  mix-blend-mode: screen;
}

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-text span:first-child {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.nav-logo-text span:last-child {
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent-gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent-gold); }
.nav-links a.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent-gold);
  min-width: 220px;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 0.75rem);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.nav-dropdown-menu a:hover {
  color: var(--accent-gold);
  background: rgba(200,151,58,0.06);
  padding-left: 2rem;
}
.nav-dropdown-menu a::after { display: none; }

.nav-cta { margin-left: 1rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: all var(--transition); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(15,15,15,0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  z-index: 999;
  padding: 1.5rem;
  transform: translateY(-110%);
  transition: transform var(--transition);
}

.nav-mobile.open { transform: translateY(0); }

.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover { color: var(--accent-gold); }

.nav-mobile .mobile-submenu { padding-left: 1rem; }
.nav-mobile .mobile-submenu a { font-size: 0.78rem; color: var(--text-muted); border-bottom: none; padding: 0.5rem 0; }

.nav-mobile .btn { margin-top: 1.25rem; width: 100%; justify-content: center; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/Outdoor/American Fyre Designs/AFD Photos/AFD_Grand-Cordova-Fireplace-Lifestyle-scaled.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.5) 55%,
    rgba(0,0,0,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-top: var(--nav-height);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--accent-gold);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-gold);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2.2s infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ===== SERVICE STRIP ===== */
.service-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 2.5rem;
}

.service-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 2.5rem;
  border-right: 1px solid var(--border);
}

.strip-item:first-child { padding-left: 0; }
.strip-item:last-child { border-right: none; }

.strip-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(200,151,58,0.1);
  border: 1px solid rgba(200,151,58,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.strip-text h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.15rem;
}

.strip-text p { font-size: 0.8rem; color: var(--text-muted); }

/* ===== SECTIONS ===== */
section { padding: 6rem 2.5rem; }

.section-inner { max-width: 1400px; margin: 0 auto; }
.text-center { text-align: center; }

/* ===== ABOUT INTRO ===== */
.about-intro { background: var(--bg-primary); }

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.about-intro-img { position: relative; }

.about-intro-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
}

.about-intro-img::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px; right: 18px; bottom: 18px;
  border: 1px solid rgba(200,151,58,0.25);
  border-radius: 2px;
  z-index: -1;
}

.about-intro-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent-gold);
  color: #fff;
  padding: 1.5rem;
  text-align: center;
  border-radius: 2px;
  min-width: 130px;
}

.about-intro-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.about-intro-badge span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-intro-content { padding-left: 0.5rem; }
.about-intro-content p { color: var(--text-secondary); margin-bottom: 1.25rem; font-size: 0.95rem; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 0.2rem;
}

.stat span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== PRODUCTS GRID ===== */
.products-section { background: var(--bg-secondary); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.product-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  display: block;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.65s ease;
  filter: brightness(0.65);
}

.product-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.45);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.05) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.product-card h3 { font-size: 1.55rem; color: #fff; margin-bottom: 0.5rem; }

.product-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.product-card:hover p { opacity: 1; transform: translateY(0); }

.product-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.product-card-arrow svg {
  transition: transform var(--transition);
}

.product-card:hover .product-card-arrow svg { transform: translateX(4px); }

/* ===== BRANDS ===== */
.brands-section { background: var(--bg-primary); }

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.brand-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.8rem 1.75rem;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.brand-pill:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(200,151,58,0.05);
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem 1.75rem;
  transition: all var(--transition);
}

.why-card:hover {
  border-color: rgba(200,151,58,0.3);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

.why-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

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

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

@media (max-width: 500px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg-secondary); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(200,151,58,0.3);
  transform: translateY(-3px);
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 0;
  position: absolute;
  top: 2.5rem; right: 2rem;
  color: rgba(200,151,58,0.12);
}

.stars { color: var(--accent-gold); font-size: 0.88rem; margin-bottom: 1rem; letter-spacing: 2px; }

.testimonial-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-flame), var(--accent-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 0.85rem; color: #fff; font-family: 'Raleway', sans-serif; margin-bottom: 0.1rem; }
.testimonial-author span { font-size: 0.72rem; color: var(--text-muted); }

/* ===== SERVICE AREA ===== */
.area-section { background: var(--bg-primary); }

.area-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.area-content h2 { margin-bottom: 1rem; }
.area-content > p { color: var(--text-secondary); margin-bottom: 2rem; font-size: 0.95rem; line-height: 1.85; }

.area-highlights { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2.5rem; }

.area-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.area-highlight::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--accent-gold);
  flex-shrink: 0;
}

.area-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 2px;
  filter: brightness(0.85);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #1a0f00 0%, #0f0f0f 50%, #1a0a00 100%);
  border-top: 1px solid rgba(200,151,58,0.2);
  border-bottom: 1px solid rgba(200,151,58,0.2);
  padding: 5.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,98,26,0.07) 0%, transparent 70%);
}

.cta-banner-inner { position: relative; max-width: 680px; margin: 0 auto; }
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { color: var(--text-secondary); margin-bottom: 2.5rem; font-size: 1rem; }
.cta-banner .btn { font-size: 0.9rem; padding: 1rem 2.5rem; }

/* ===== FOOTER ===== */
footer {
  background: #080808;
  padding: 4rem 2.5rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner { max-width: 1400px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.footer-brand .nav-logo { margin-bottom: 1.25rem; }

.footer-brand p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.83rem;
  color: var(--text-secondary);
  margin-bottom: 0.7rem;
}

.footer-contact-item span:first-child { color: var(--accent-gold); flex-shrink: 0; margin-top: 2px; }

.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
  font-size: 0.83rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--text-secondary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.footer-bottom a { color: var(--text-muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--accent-gold); }

/* ===== INNER PAGE HERO ===== */
.page-hero {
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 4rem 2.5rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, transparent 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-content h1 { margin-bottom: 0.75rem; }
.page-hero-content p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 500px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a { color: var(--accent-gold); }
.breadcrumb span { color: var(--text-muted); }

/* ===== SERVICES PAGE ===== */
.services-intro { padding: 6rem 2.5rem; background: var(--bg-primary); }
.services-intro-inner { max-width: 1400px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent-flame), var(--accent-gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: rgba(200,151,58,0.2); transform: translateY(-4px); }

.service-icon { font-size: 2rem; margin-bottom: 1.5rem; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: #fff; }
.service-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.85; }

.service-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

/* ===== PRODUCT PAGE ===== */
.product-intro { padding: 5rem 2.5rem; background: var(--bg-secondary); }
.product-intro-inner { max-width: 1400px; margin: 0 auto; }
.product-intro-inner p { color: var(--text-secondary); font-size: 0.95rem; max-width: 700px; margin-top: 1rem; line-height: 1.85; }

.brand-section { padding: 5rem 2.5rem; }
.brand-section:nth-child(odd) { background: var(--bg-primary); }
.brand-section:nth-child(even) { background: var(--bg-secondary); }

.brand-section-inner { max-width: 1400px; margin: 0 auto; }

.brand-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.brand-header h2 { margin-bottom: 0.75rem; }
.brand-header p { color: var(--text-secondary); max-width: 600px; font-size: 0.92rem; }

.product-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.product-image-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: all var(--transition);
}

.product-image-card:hover {
  border-color: rgba(200,151,58,0.25);
  transform: translateY(-3px);
}

.product-image-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  transition: all 0.45s ease;
}

.product-image-card:hover img { transform: scale(1.04); }

/* Lights & logs pages: show full image without cropping */
.lights-page .product-image-card,
.logs-page .product-image-card { background: #111; }

.lights-page .product-image-card img,
.logs-page .product-image-card img {
  object-fit: contain;
  aspect-ratio: 3/4;
}

.lights-page .product-image-card:hover img,
.logs-page .product-image-card:hover img { transform: scale(1.03); }

.card-label {
  padding: 0.7rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== ABOUT PAGE ===== */
.about-full { padding: 6rem 2.5rem; background: var(--bg-primary); }

.about-full-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-full-content h2 { margin-bottom: 1.5rem; }
.about-full-content p { color: var(--text-secondary); margin-bottom: 1.25rem; line-height: 1.9; font-size: 0.95rem; }

.about-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.about-image-wrap { position: relative; margin-bottom: 2rem; }
.about-image-wrap img { width: 100%; border-radius: 2px; filter: brightness(0.85); }

.values-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem;
}

.values-card h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}

.values-list { display: flex; flex-direction: column; gap: 0.85rem; }

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.value-item::before {
  content: '✦';
  color: var(--accent-gold);
  font-size: 0.6rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.team-section { padding: 5rem 2.5rem; background: var(--bg-secondary); }
.team-section-inner { max-width: 1400px; margin: 0 auto; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 650px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}

.team-card:hover { border-color: rgba(200,151,58,0.25); transform: translateY(-3px); }

.team-avatar {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-flame) 0%, var(--accent-gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: #fff;
  margin: 0 auto 1.25rem;
}

.team-card h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.team-card p { font-size: 0.78rem; color: var(--accent-gold); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 6rem 2.5rem; background: var(--bg-primary); }

.contact-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-secondary); margin-bottom: 2.5rem; line-height: 1.85; font-size: 0.95rem; }

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

.contact-detail { display: flex; gap: 1.25rem; align-items: flex-start; }

.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(200,151,58,0.1);
  border: 1px solid rgba(200,151,58,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.35rem;
}

.contact-detail-text a, .contact-detail-text p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.contact-detail-text a:hover { color: var(--accent-gold); }

.contact-form-wrap {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem;
}

.contact-form-wrap h3 { margin-bottom: 0.5rem; font-size: 1.4rem; }
.contact-form-wrap > p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 2rem; }

.jobber-embed { width: 100%; min-height: 700px; border: none; border-radius: 2px; background: transparent; }

/* ===== UTILITY ===== */
.gold { color: var(--accent-gold); }
.divider { width: 55px; height: 2px; background: linear-gradient(to right, var(--accent-flame), var(--accent-gold)); margin: 1rem auto 2rem; }
.divider.left { margin-left: 0; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-intro-grid,
  .area-inner,
  .about-full-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }

  .about-intro-img { display: none; }
  .about-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  section { padding: 4rem 1.5rem; }
  .nav { padding: 0 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }

  .hero-content { padding: 0 1.5rem; padding-top: calc(var(--nav-height) + 2rem); }
  .hero h1 { font-size: 2rem; }
  .hero-desc { font-size: 0.92rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .service-strip { padding: 0 1.5rem; }
  .service-strip-inner { grid-template-columns: 1fr; }
  .strip-item { border-right: none; border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
  .strip-item:last-child { border-bottom: none; }

  .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .contact-form-wrap { padding: 1.5rem; }
  .page-hero { min-height: 280px; padding: 3rem 1.5rem; }
  .about-intro-badge { display: none; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .product-image-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.45rem; }
  .team-grid { grid-template-columns: 1fr; max-width: 280px; }
  .product-image-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
}
