:root {
  --gold: #b8863b;
  --gold-soft: #d9b877;
  --charcoal: #1b2126;
  --charcoal-soft: #2b343b;
  --ink: #23292d;
  --muted: #6b7580;
  --paper: #ffffff;
  --cream: #f2ead9;
  --line: #e8e3d9;
  --radius: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

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

a { color: inherit; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--charcoal);
  white-space: nowrap;
  margin-right: auto;
}

.brand img { height: 62px; width: 62px; object-fit: contain; }

.brand-text {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: 0;
  color: #446588;
  text-transform: none;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav.main-nav a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.72;
  transition: opacity 0.2s ease, color 0.2s ease;
}

nav.main-nav a:hover { opacity: 1; color: var(--gold); }

.nav-cta {
  border: 1px solid var(--charcoal);
  padding: 11px 22px;
  border-radius: var(--radius);
  opacity: 1 !important;
}

.nav-cta:hover {
  background: var(--charcoal);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* Hero */
.hero {
  background:
    linear-gradient(160deg, rgba(27,33,38,0.62) 0%, rgba(35,43,49,0.52) 55%, rgba(44,56,65,0.52) 100%),
    url('images/hero-bg.jpg') center / cover no-repeat;
  color: #fff;
  padding: 140px 0 130px;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.25);
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 22px;
  font-family: "Inter", sans-serif;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  margin: 0 0 24px;
  line-height: 1.2;
  font-weight: 500;
}

.hero p {
  max-width: 560px;
  margin: 0 auto 42px;
  color: #c7ccd0;
  font-size: 1.05rem;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: "Inter", sans-serif;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.btn-primary:hover { background: #a3742f; border-color: #a3742f; }

.btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  background: transparent;
  margin-left: 14px;
}

.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.hero-actions { margin-top: 4px; }

/* Sections */
section { padding: 100px 0; }

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold);
  text-align: center;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}

.section-title {
  text-align: center;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin: 0 0 20px;
  color: var(--charcoal);
  font-weight: 500;
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 300;
}

.alt-bg { background: var(--cream); }

/* Portfolio (Before & After) — slider, 2 at a time */
.ba-slider {
  position: relative;
  margin-top: 20px;
  padding: 0 56px;
}
.ba-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ba-track::-webkit-scrollbar { display: none; }

.ba-slide {
  flex: 0 0 calc(50% - 12px);
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  box-shadow: 0 14px 30px rgba(27,33,38,0.08);
}
.ba-slide img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.ba-slide:hover img { transform: scale(1.05); }

.ba-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--charcoal);
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.ba-arrow:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.ba-prev { left: 0; }
.ba-next { right: 0; }

@media (max-width: 860px) {
  .ba-slide { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 560px) {
  .ba-slider { padding: 0 44px; }
  .ba-slide { flex: 0 0 100%; }
}

/* Services */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  box-shadow: 0 20px 44px rgba(27,33,38,0.07);
}

.service-card {
  background: var(--paper);
  padding: 44px 34px;
  text-align: left;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  box-sizing: border-box;
}

.service-card .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--charcoal);
  font-weight: 600;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 300;
}

/* About / two-column */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split h2 { color: var(--charcoal); margin-top: 0; font-size: 2rem; }
.split p { color: var(--muted); font-weight: 300; }

.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 34px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.stat { }
.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}
.stat span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Service Area */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.area-pill {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--charcoal);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.area-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Guarantee */
.guarantee {
  background: var(--charcoal);
  color: #fff;
  padding: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.guarantee h2 { margin-top: 0; font-size: 2rem; }
.guarantee p { color: #c7ccd0; font-weight: 300; }
.guarantee .eyebrow2 {
  color: var(--gold-soft);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-family: "Inter", sans-serif;
}

.guarantee-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--gold);
  text-align: center;
}

.guarantee-badge svg {
  width: 128px;
  height: 128px;
}

.guarantee-badge span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

/* Hours */
.hours-card {
  max-width: 440px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 44px;
  text-align: center;
  box-shadow: 0 20px 44px rgba(27,33,38,0.07);
}

.hours-card .status {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 26px;
}

.hours-list { list-style: none; padding: 0; margin: 0; text-align: left; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 300;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list span:last-child { color: var(--ink); font-weight: 500; }

/* Reviews */
.review-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.review-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.review-summary-stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.review-summary-text { color: var(--muted); font-size: 0.88rem; font-weight: 500; }

.review-cycle {
  position: relative;
  min-height: 150px;
}

.review-card {
  background: var(--paper);
  border-left: 2px solid var(--gold);
  padding: 26px 28px;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  box-shadow: 0 16px 36px rgba(27,33,38,0.07);
}

.review-card.is-active {
  display: block;
  opacity: 1;
}

.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 12px; font-size: 0.9rem; }
.review-card p { font-style: italic; font-weight: 300; margin: 0; color: var(--muted); }
.review-author { margin-top: 12px; font-size: 0.82rem; color: var(--muted); font-weight: 500; }

/* Contact form */
.contact-wrap {
  max-width: 660px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 52px;
  box-shadow: 0 20px 44px rgba(27,33,38,0.07);
}

.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-weight: 500;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 9px;
  color: var(--charcoal);
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.96rem;
  font-family: inherit;
  background: var(--cream);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.form-row textarea { min-height: 130px; resize: vertical; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 18px;
}

.form-success {
  display: none;
  border: 1px solid var(--gold);
  color: var(--charcoal);
  padding: 16px 18px;
  margin-bottom: 22px;
  font-weight: 500;
}

/* Footer */
footer.site-footer {
  background: var(--charcoal);
  color: #b8bec2;
  padding: 56px 0 32px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 26px;
}

.footer-brand { display: flex; align-items: center; gap: 12px; font-size: 1.15rem; color: #fff; }
.footer-brand img { height: 30px; width: 30px; object-fit: contain; }

.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  text-decoration: none;
  color: #b8bec2;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links a:hover { color: var(--gold-soft); }

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #7d8489;
  letter-spacing: 0.02em;
}

/* Page hero (interior pages) */
.page-hero {
  background: var(--charcoal);
  color: #fff;
  padding: 80px 0 64px;
  text-align: center;
}
.page-hero h1 { margin: 0 0 12px; font-size: clamp(2rem, 4.4vw, 2.8rem); font-weight: 500; }
.page-hero p { color: #c7ccd0; margin: 0; font-weight: 300; }
.breadcrumb {
  font-size: 0.78rem;
  color: #9098a0;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Inter", sans-serif;
}
.breadcrumb a { color: #c7ccd0; text-decoration: none; }

/* Service detail list */
.service-detail {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: 0 20px 44px rgba(27,33,38,0.07);
}
.service-detail-row {
  background: var(--paper);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 28px;
  align-items: center;
}
.service-detail-row .icon { font-size: 1.6rem; color: var(--gold); }
.service-detail-row h3 { margin: 0 0 8px; font-size: 1.25rem; color: var(--charcoal); }
.service-detail-row p { margin: 0; color: var(--muted); font-weight: 300; font-size: 0.95rem; }

/* Responsive */
@media (max-width: 860px) {
  .service-card { flex: 0 0 50%; max-width: 50%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .guarantee, .review-wrap { grid-template-columns: 1fr; }
  .guarantee { padding: 44px 30px; }
  .service-detail-row { grid-template-columns: 44px 1fr; }
  .service-detail-row .btn { grid-column: 1 / -1; margin-top: 10px; justify-self: start; }
}

@media (max-width: 560px) {
  .service-detail-row {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    gap: 12px;
  }
  .service-detail-row .btn { grid-column: auto; justify-self: start; }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 32px;
    border-bottom: 1px solid var(--line);
    display: none;
    gap: 20px;
  }
  nav.main-nav.open { display: flex; }
  .nav-cta { margin-top: 4px; }
}

.faq-list {
  max-width: 780px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 4px 26px;
  box-shadow: 0 10px 26px rgba(27,33,38,0.05);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 34px 20px 0;
  position: relative;
  font-weight: 500;
  color: var(--charcoal);
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
  content: "\2212";
}
.faq-item p {
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .service-card { flex: 0 0 100%; max-width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .btn-outline { margin-left: 0; margin-top: 14px; }
  .contact-wrap { padding: 30px; }
  section { padding: 68px 0; }
  .hero { padding: 100px 0 90px; }
}
