/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Georgia', serif; color: #1C1C1C; background: #fff; line-height: 1.7; }
img { display: block; max-width: 100%; height: auto; }
a { color: #B8960C; text-decoration: none; }
a:hover { color: #8B6914; }
ul { list-style: none; }

/* ── Variables ───────────────────────────────────────────────────────────── */
:root {
  --gold:      #B8960C;
  --dark-gold: #8B6914;
  --charcoal:  #1C1C1C;
  --dark-bg:   #0D0D0D;
  --light-bg:  #F7F5F0;
  --mid-gray:  #888;
  --white:     #fff;
  --radius:    8px;
  --shadow:    0 4px 20px rgba(0,0,0,.12);
  --transition: all .25s ease;
}

/* ── Typography ──────────────────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Georgia', serif; font-weight: normal; line-height: 1.3; color: var(--charcoal); }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }
p  { margin-bottom: 1rem; color: #444; }

.gold-text { color: var(--gold); }
.section-title {
  text-align: center;
  margin-bottom: .5rem;
}
.gold-rule {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: .5rem auto 2rem;
  border: none;
}

/* ── Header / Nav ────────────────────────────────────────────────────────── */
#site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--dark-bg);
  border-bottom: 2px solid var(--gold);
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: .6rem;
  color: var(--white); font-size: 1.2rem; font-family: Georgia, serif;
  text-decoration: none;
}
.logo-stars { color: var(--gold); font-size: .9rem; letter-spacing: 2px; }
.logo-name  { font-weight: bold; }
.logo-sub   { color: var(--mid-gray); font-size: .7rem; letter-spacing: 1px; text-transform: uppercase; display: block; }

nav ul {
  display: flex; gap: .25rem; align-items: center;
}
nav a {
  color: #ccc; font-family: Arial, sans-serif; font-size: .85rem;
  letter-spacing: .5px; text-transform: uppercase;
  padding: .5rem .85rem; border-radius: 4px;
  transition: var(--transition);
}
nav a:hover, nav a.active {
  color: var(--gold); background: rgba(184,150,12,.1);
}

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0; transition: var(--transition);
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background: var(--dark-bg);
}
.hero-bg {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(5, 1fr);
  opacity: .18; pointer-events: none;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(13,13,13,.85) 40%, rgba(13,13,13,.65));
}
.hero-content { position: relative; z-index: 2; padding: 2rem 1rem; max-width: 700px; }
.hero-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 8px; margin-bottom: 1.2rem; }
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 6vw, 4rem); margin-bottom: .4rem; }
.hero h1 span { color: var(--gold); }
.hero-tagline { color: #ccc; font-size: 1.1rem; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .75rem 1.8rem; border-radius: 4px;
  font-family: Arial, sans-serif; font-size: .9rem;
  letter-spacing: .5px; text-transform: uppercase;
  transition: var(--transition); border: none; cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--dark-bg); font-weight: bold; }
.btn-gold:hover { background: var(--dark-gold); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--dark-bg); }

/* ── Section Containers ──────────────────────────────────────────────────── */
.section { padding: 5rem 1.5rem; }
.section-light { background: var(--light-bg); }
.section-dark  { background: var(--dark-bg); }
.container { max-width: 1180px; margin: 0 auto; }

/* ── Stats Bar ───────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--gold);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  text-align: center;
}
.stat { padding: 1.4rem 1rem; border-right: 1px solid rgba(0,0,0,.15); }
.stat:last-child { border-right: none; }
.stat-num  { font-size: 2rem; font-weight: bold; color: var(--dark-bg); display: block; }
.stat-lbl  { font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(0,0,0,.7); }

/* ── Services Grid ───────────────────────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 1.5rem 1.5rem 1.3rem;
  box-shadow: var(--shadow); transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.15); }
.service-card-num { font-size: .68rem; color: var(--gold); letter-spacing: 2px; margin-bottom: .4rem; }
.service-card h3 { color: var(--dark-gold); margin-bottom: .5rem; }
.service-card p  { font-size: .92rem; margin: 0; }

/* ── Gallery Grid ────────────────────────────────────────────────────────── */
.gallery-intro { text-align: center; max-width: 600px; margin: 0 auto 2.5rem; color: #555; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: #eee; cursor: pointer;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13,13,13,.75));
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: var(--gold); font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; }

/* ── Lightbox ────────────────────────────────────────────────────────────── */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.94);
  align-items: center; justify-content: center;
}
#lightbox.active { display: flex; }
#lightbox img { max-height: 90vh; max-width: 90vw; border-radius: 4px; box-shadow: 0 0 60px rgba(0,0,0,.5); }
#lb-close {
  position: fixed; top: 1.2rem; right: 1.5rem;
  color: var(--gold); font-size: 2rem; cursor: pointer; background: none; border: none;
  line-height: 1;
}
#lb-prev, #lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 2.5rem; cursor: pointer;
  background: rgba(0,0,0,.4); border: none; padding: .5rem .8rem;
  border-radius: 4px; line-height: 1;
}
#lb-prev { left: 1rem; } #lb-next { right: 1rem; }

/* ── Process Steps ───────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--dark-bg);
  font-size: 1.4rem; font-weight: bold;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { color: var(--dark-gold); margin-bottom: .4rem; font-size: 1rem; }
.step p   { font-size: .9rem; }

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.testimonial {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.testimonial-stars { color: var(--gold); margin-bottom: .6rem; }
.testimonial p   { font-style: italic; font-size: .92rem; }
.testimonial-name { margin-top: .8rem; color: var(--dark-gold); font-size: .85rem; font-weight: bold; }

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon { font-size: 1.1rem; min-width: 20px; margin-top: .25rem; color: var(--gold); font-weight: bold; }
.contact-item strong { display: block; color: var(--dark-gold); font-size: .85rem; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .15rem; }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.contact-form h3 { margin-bottom: 1.2rem; color: var(--dark-gold); }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .85rem; color: #555; margin-bottom: .3rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .7rem .9rem;
  border: 1px solid #ddd; border-radius: 4px;
  font-family: Georgia, serif; font-size: .95rem;
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: .8rem; color: #888; margin-top: 1rem; }

/* ── About ───────────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.about-img-grid img { border-radius: var(--radius); height: 200px; object-fit: cover; width: 100%; }
.about-img-grid img:first-child { grid-column: 1/-1; height: 260px; }

/* ── Google Map CTA ──────────────────────────────────────────────────────── */
.google-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 2px solid var(--gold);
  color: var(--dark-gold); padding: .6rem 1.2rem;
  border-radius: 4px; font-size: .9rem; font-family: Arial, sans-serif;
  transition: var(--transition); margin-top: .8rem;
}
.google-cta:hover { background: var(--gold); color: var(--dark-bg); }

/* ── Page Hero (inner pages) ─────────────────────────────────────────────── */
.page-hero {
  background: var(--dark-bg);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.page-hero h1 { color: var(--white); }
.page-hero p  { color: #aaa; max-width: 560px; margin: .5rem auto 0; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
#site-footer {
  background: var(--dark-bg);
  border-top: 2px solid var(--gold);
  padding: 3rem 1.5rem 1.5rem;
  color: #aaa;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; max-width: 1180px; margin: 0 auto 2rem; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; line-height: 1.6; }
.footer-col h4 { color: var(--gold); font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.footer-col li { margin-bottom: .4rem; }
.footer-col a  { color: #aaa; font-size: .88rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 1.2rem; margin-top: 1rem;
  text-align: center; font-size: .8rem; color: #555;
  max-width: 1180px; margin-left: auto; margin-right: auto;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  nav ul { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--dark-bg); padding: 1rem; border-bottom: 2px solid var(--gold); gap: .25rem; }
  nav ul.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { min-height: 80vh; }
  .hero-bg { grid-template-columns: repeat(3,1fr); }
  .hero-bg img:nth-child(n+4) { display: none; }
  .contact-grid, .about-grid, .footer-grid { grid-template-columns: 1fr; }
  .about-img-grid img:first-child { height: 200px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar   { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(0,0,0,.15); }
}

/* Featured work + stats grid responsive */
@media (max-width: 680px) {
  .feat-split { grid-template-columns: 1fr !important; }
}
