/* ============================================================
   Stan The Handyman — Main Stylesheet
   Colors: Gold #C9A227 | Black #0D0D0D | White #FFFFFF
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --gold:        #C9A227;
  --gold-dark:   #A8861E;
  --gold-light:  #E2B842;
  --gold-muted:  #C9A22720;
  --black:       #0D0D0D;
  --dark:        #141414;
  --dark-2:      #1E1E1E;
  --dark-3:      #2A2A2A;
  --white:       #FFFFFF;
  --off-white:   #F9F7F2;
  --light:       #F0EDE6;
  --gray:        #6B6B6B;
  --gray-light:  #AAAAAA;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-height: 80px;
  --section-pad: 100px;
  --container:  1180px;
  --radius:     4px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

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

p  { font-size: 1rem; color: var(--gray); }

.gold  { color: var(--gold); }
.italic { font-style: italic; }

/* --- Container --- */
.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.35);
}

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

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

.btn-lg { padding: 1.1rem 2.4rem; font-size: 1rem; }

/* --- Section Labels --- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title { margin-bottom: 1.2rem; }
.section-intro { max-width: 580px; margin-bottom: 3rem; font-size: 1.05rem; }
.section-intro-centered {
  max-width: 580px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.05rem;
}

.text-center { text-align: center; }

/* --- Gold Divider --- */
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.2rem 0 1.8rem;
}
.gold-divider-center {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.2rem auto 1.8rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: var(--black);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  border-bottom-color: var(--gold);
}

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

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-img {
  height: 48px;
  width: auto;
}

/* Hero logo + badge row */
.hero-top {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.hero-logo {
  height: 100px;
  width: auto;
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo-text span { color: var(--gold); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: opacity var(--transition);
}
.nav-phone:hover { opacity: 0.8; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--black);
  border-top: 1px solid var(--gold);
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { align-self: flex-start; }

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--black);
  background-image:
    linear-gradient(to bottom, rgba(13,13,13,0.45) 0%, rgba(13,13,13,0.6) 100%),
    url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

/* Placeholder gradient when no image */
.hero-placeholder {
  background-image:
    linear-gradient(135deg, rgba(13,13,13,0.95) 0%, rgba(20,20,20,0.9) 100%);
}

/* Decorative gold line left */
.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

.hero-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.hero-phone-btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,162,39,0.4);
}
.hero-phone-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Trust bar pinned to bottom of hero (above-fold) */
.hero .trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

/* Hero scroll indicator */
.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.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }

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

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  background: var(--dark);
  border-bottom: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); }
.page-hero .section-label { display: block; margin-bottom: 0.75rem; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--gold);
  padding: 1rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.04em;
}
.trust-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   SERVICES PREVIEW
   ============================================================ */
.services-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--off-white);
  border: 1px solid var(--light);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: var(--gold);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--gold-muted);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--gold);
}
.service-icon svg { width: 24px; height: 24px; }

.service-card h3 { margin-bottom: 0.6rem; color: var(--dark); }
.service-card p  { font-size: 0.92rem; }

/* ============================================================
   CORE VALUES
   ============================================================ */
.values-section {
  padding: var(--section-pad) 0;
  background: var(--dark);
  position: relative;
}
.values-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.values-section .section-label { color: var(--gold-light); }
.values-section h2 { color: var(--white); }
.values-section .section-intro { color: rgba(255,255,255,0.6); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.value-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--dark-3);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.value-card:hover {
  border-color: var(--gold);
  background: rgba(201,162,39,0.05);
}
.value-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.value-card h3 { color: var(--white); margin-bottom: 0.8rem; }
.value-card p  { color: rgba(255,255,255,0.55); font-size: 0.93rem; }
.value-card .gold-divider { margin-bottom: 1rem; }

/* ============================================================
   PROJECTS PREVIEW
   ============================================================ */
.projects-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.project-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.project-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.project-img-placeholder svg { width: 36px; height: 36px; color: var(--dark-3); }
.project-info { padding: 1.5rem; }
.project-info h3 { color: var(--dark); margin-bottom: 0.4rem; font-size: 1.1rem; }
.project-info p  { font-size: 0.88rem; }
.project-tag {
  display: inline-block;
  background: var(--gold-muted);
  color: var(--gold-dark);
  border: 1px solid rgba(201,162,39,0.3);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}

/* ============================================================
   ABOUT PREVIEW / SPLIT SECTION
   ============================================================ */
.about-split {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.about-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-photo {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
  image-orientation: from-image;
}
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--gray);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-photo-placeholder svg { width: 48px; height: 48px; color: var(--dark-3); }

/* Gold accent frame */
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 60%; height: 60%;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius) 0 0 0;
  z-index: -1;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 60%; height: 60%;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) 0;
  z-index: -1;
}

.stats-row {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--gold);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-strip h2 {
  color: var(--black);
  margin-bottom: 0.8rem;
  position: relative; z-index: 1;
}
.cta-strip p {
  color: rgba(13,13,13,0.7);
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative; z-index: 1;
  font-size: 1.05rem;
}
.cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative; z-index: 1;
}
.btn-black {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}
.btn-black:hover {
  background: var(--dark-2);
  border-color: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.btn-black-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-black-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.testimonials-section .section-label { color: var(--gold-light); }
.testimonials-section h2 { color: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: var(--gold); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.testimonial-text {
  font-style: italic;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}
.testimonial-location {
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 3px solid var(--gold);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-text span { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 0.8rem;
}
.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--dark-3);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-light);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.social-link svg { width: 16px; height: 16px; }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-hours-grid { display: flex; flex-direction: column; gap: 0.4rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  gap: 1rem;
}
.hours-row .day { font-weight: 500; color: rgba(255,255,255,0.7); }

.footer-bottom {
  border-top: 1px solid var(--dark-2);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-full-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-full-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--light);
  border-radius: var(--radius);
  background: var(--off-white);
  transition: all var(--transition);
}
.service-full-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.service-full-card h3 { margin: 1rem 0 0.6rem; color: var(--dark); }
.service-full-card ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-full-card ul li {
  font-size: 0.88rem;
  color: var(--gray);
  padding-left: 1rem;
  position: relative;
}
.service-full-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.projects-full-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}
.projects-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3 {
  color: var(--dark);
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}

.contact-big-phone {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.5rem 0 2rem;
}
.contact-big-phone a {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  transition: opacity var(--transition);
}
.contact-big-phone a:hover { opacity: 0.8; }
.contact-big-phone svg { width: 32px; height: 32px; color: var(--gold); }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--light);
}
.contact-detail:first-of-type { border-top: 1px solid var(--light); }
.contact-detail svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-detail-text strong { display: block; color: var(--dark); font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-detail-text span, .contact-detail-text a {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}
.contact-detail-text a:hover { color: var(--gold); }

/* Contact Form */
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--light);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  margin-bottom: 0.4rem;
  color: var(--dark);
}
.contact-form-wrap > p {
  margin-bottom: 2rem;
  font-size: 0.9rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--light);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; cursor: pointer; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-full-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.about-full-section .about-split-inner {
  gap: 6rem;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-split-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px; --nav-height: 70px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { background-attachment: scroll; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 1rem; }

  /* Hide trust bar in hero on mobile — user scrolls to see content below */
  .hero .trust-bar { display: none; }

  .trust-bar-inner { gap: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

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

  .stats-row { gap: 1rem; }
  .stat-number { font-size: 2rem; }

  .cta-strip { padding: 3.5rem 0; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .about-img-wrap::before,
  .about-img-wrap::after { display: none; }

  .projects-full-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-phone-btn { width: 100%; justify-content: center; }
  .btn-lg { width: 100%; justify-content: center; }
  .trust-bar-inner { flex-direction: column; gap: 0.8rem; }
  .cta-strip-actions { flex-direction: column; align-items: center; }
}
