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

:root {
  --maroon:      #501214;
  --maroon-hover:#6b1c1f;
  --gold:        #8d734a;
  --gold-light:  #D7BD8A;
  --accent:      var(--maroon);
  --accent-hover:var(--maroon-hover);
  --silver:      #C0C0C0;
  --silver-dark: #8C8C8C;
  --dark:        #2b2b2b;
  --dark2:       #f0eee9;
  --dark3:       #222222;
  --gray:        #666666;
  --light:       #F6F4F1;
  --white:       #FFFFFF;
  --border:      #E2DED7;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: #111111;
  line-height: 1.65;
  background: var(--white);
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================
   BUTTONS
============================ */
.btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}

.btn-primary {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
  font-weight: 800;
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--maroon);
  border-color: var(--maroon);
}
.btn-outline:hover {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
}

.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 15px; }
.btn-full { width: 100%; text-align: center; padding: 15px; font-size: 16px; }

/* ============================
   SECTIONS
============================ */
.section { padding: 80px 0; }

.section-head {
  text-align: center;
  margin-bottom: 52px;
}
.section-head::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
}
.section-head p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ============================
   NAV
============================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 59px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.3px;
}
.logo-text strong { color: #111; font-weight: 900; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-divider {
  width: 1px;
  height: 22px;
  background: #111;
  opacity: 0.18;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--maroon); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #111;
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--light);
  border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
  gap: 14px;
}
.nav-mobile a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
.nav-mobile a:hover { color: var(--maroon); }
.nav-mobile.open { display: flex; }

/* ============================
   PAGE HERO (sub-pages)
============================ */
.page-hero {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 48px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================
   CTA BANNER
============================ */
.cta-banner {
  background: var(--maroon);
  padding: 56px 0;
  text-align: center;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.cta-banner p {
  color: var(--gold-light);
  margin-bottom: 24px;
  font-size: 1rem;
}
.cta-banner .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.cta-banner .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--maroon);
}

/* ============================
   TEASER LINK
============================ */
.teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-weight: 700;
  color: var(--maroon);
  text-decoration: none;
}
.teaser-link:hover { text-decoration: underline; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.82) 45%, rgba(255,255,255,0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #111;
  padding: 90px 24px;
  max-width: 720px;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: #111;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  color: #111;
}

.hero-sub {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================
   STATS BAR
============================ */
.stats-bar {
  background: #111111;
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.stat { display: flex; flex-direction: column; gap: 5px; }

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.22s, box-shadow 0.22s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(0,0,0,0.13); }

.service-img {
  height: 260px;
  background-size: cover;
  background-position: center;
}

.service-body { padding: 26px 28px; }
.service-body h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; color: #111; }
.service-body p { color: var(--gray); font-size: 0.95rem; line-height: 1.65; }

/* ============================
   ABOUT
============================ */
.about-section { background: var(--light); color: #111; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.about-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.about-img-wrap {
  position: static;
}

.about-headshot {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 16%;
  border-radius: 16px;
  border: 3px solid #ddd;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.about-credential {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  text-align: center;
}

.cim-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.about-credential span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #111;
}

.about-text p {
  color: #444;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-text .btn { margin-top: 8px; }

/* ============================
   GALLERY / PORTFOLIO
============================ */
.gallery-section { background: var(--white); border-bottom: 1px solid var(--border); }
.gallery-section-alt { background: var(--light); }

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

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eee;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.22s;
}
.gallery-item:hover { transform: scale(1.015); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ============================
   BEFORE & AFTER
============================ */
.before-after-section { background: var(--light); }

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ba-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.ba-item img { width: 100%; height: 100%; object-fit: cover; }

/* ============================
   REVIEWS
============================ */
.reviews-section { background: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
}

.single-review {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 36px auto 0;
}

.review-card {
  background: var(--light);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--border);
}

.review-stars {
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 3px;
  line-height: 1;
}

.review-text {
  font-size: 0.94rem;
  color: #444;
  line-height: 1.75;
  flex: 1;
}
.review-text strong { color: #111; font-weight: 700; }

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-info { display: flex; flex-direction: column; gap: 2px; }
.reviewer-info strong { font-size: 0.9rem; color: #111; }
.reviewer-info span { font-size: 0.8rem; color: var(--gray); }

/* ============================
   SERVICE DETAIL SECTIONS
============================ */
.service-detail {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-detail-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  order: 1;
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }

.service-detail-text { order: 2; }
.service-detail.reverse .service-detail-img { order: 2; }
.service-detail.reverse .service-detail-text { order: 1; }

.service-detail-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: #111;
}
.service-detail-text p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.check-list {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.check-list li {
  position: relative;
  padding-left: 26px;
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
}
.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================
   PROCESS
============================ */
.process-section { background: var(--light); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.process-step { padding: 0 12px; }

.process-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.process-img img { width: 100%; height: 100%; object-fit: cover; }

.process-num {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--light);
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  margin: -22px auto 18px;
}

.process-step h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; color: #111; }
.process-step p { color: var(--gray); font-size: 0.94rem; line-height: 1.65; }

/* ============================
   LIGHTBOX
============================ */
.gallery-item img, .ba-item img { cursor: pointer; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 88vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 36px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

@media (max-width: 680px) {
  .lightbox-arrow { width: 42px; height: 42px; font-size: 28px; }
  .lightbox-close { font-size: 28px; top: 12px; right: 16px; }
}

/* ============================
   QUOTE FORM
============================ */
.quote-section {
  background: var(--light);
  border-top: 1px solid var(--border);
  padding: 80px 0;
  color: #111;
}

.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.quote-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.quote-text > p { color: var(--gray); margin-bottom: 28px; font-size: 1rem; line-height: 1.6; }

.quote-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--maroon);
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 10px;
}
.quote-phone:hover { text-decoration: underline; }

.quote-or { color: #888; font-size: 0.88rem; margin-top: 6px; }

.quote-form { display: flex; flex-direction: column; gap: 12px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: #111;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #999; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--maroon); }
.form-group select { color: #111; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; font-size: 12px; color: var(--gray); margin-top: 4px; }

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}

.form-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 22px 16px;
  border: 1.5px dashed var(--border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s;
}
.form-upload:hover { border-color: var(--maroon); }
.form-upload input[type="file"] {
  width: auto;
  padding: 0;
  border: none;
  font-size: 13px;
}
.form-upload-hint { font-size: 12px; color: var(--gray); }

/* ============================
   FOOTER
============================ */
.footer { background: #111111; padding: 48px 0 28px; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  text-align: left;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-col a,
.footer-col span {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-col a::before,
.footer-col span::before {
  content: '\2192';
  display: inline-block;
  margin-right: 6px;
  color: var(--gold-light);
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding-top: 24px;
}

.logo-footer { font-size: 1.25rem; font-weight: 700; color: #fff; text-decoration: none; }
.logo-footer strong { color: #fff; }

.footer-copy { font-size: 12px; color: #fff; opacity: 0.7; }

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-img-wrap { position: static; max-width: 200px; }
  .quote-inner { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .before-after-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-link:not(.btn) { display: none; }
  .nav-divider { display: none; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 28px; }
  .service-detail-img, .service-detail.reverse .service-detail-img,
  .service-detail-text, .service-detail.reverse .service-detail-text { order: initial; }
  .process-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-col { align-items: center; }
}

@media (max-width: 680px) {
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .single-review { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-right .btn { display: none; }
  .nav-toggle { display: block; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .section { padding: 56px 0; }
  .hero-content { padding: 64px 24px; }
  .hero-bg::after { background: rgba(255,255,255,0.92); }
  .gallery-grid { grid-template-columns: 1fr; }
  .before-after-grid { grid-template-columns: 1fr 1fr; }
}
