/* ===== Brand tokens ===== */
:root {
  --charcoal: #2b2624;
  --charcoal-soft: #4a4442;
  --blush: #c98d87;
  --blush-deep: #b06e68;
  --blush-light: #e9c3bf;
  --cream: #faf1e8;
  --cream-alt: #f2e3d7;
  --white: #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-w: 1180px;
  --radius: 14px;
  --shadow-soft: 0 20px 40px -20px rgba(43, 38, 36, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0 0 0.5em; color: var(--charcoal); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--blush-deep);
  margin-bottom: 0.6em;
}
.eyebrow--light { color: var(--blush-light); }

.section { padding: 96px 0; }
.section--alt { background: var(--cream); }
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.section-lede { max-width: 640px; color: var(--charcoal-soft); font-size: 1.05rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--blush-deep);
  color: var(--white);
}
.btn--primary:hover { background: var(--charcoal); }
.btn--ghost {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn--ghost:hover { background: var(--white); color: var(--charcoal); }
.btn--ghost-dark {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn--ghost-dark:hover { background: var(--charcoal); color: var(--white); }
.btn--full { width: 100%; }

/* ===== Topbar ===== */
.topbar {
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.85rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 10px 24px;
  flex-wrap: wrap;
}
.topbar__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(250, 241, 232, 0.12);
  color: var(--cream);
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover {
  background: var(--blush-deep);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== Header ===== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(43,38,36,0.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 24px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav a:not(.nav__cta):hover { color: var(--blush-deep); }

.nav-item { position: relative; }
.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.chevron { transition: transform 0.18s ease; }
.nav-item:hover .chevron,
.nav-item:focus-within .chevron { transform: rotate(180deg); }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 720px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 60;
}
.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.mega-menu__col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mega-menu__col a {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--charcoal-soft);
  white-space: nowrap;
}
.mega-menu__col a:hover { color: var(--blush-deep); }

.mega-menu--areas {
  min-width: 260px;
  grid-template-columns: 1fr;
  padding: 24px 28px;
}

.nav__cta {
  background: var(--blush-deep);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
}
.nav__cta:hover { background: var(--charcoal); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100px;
  height: 100px;
  display: block;
  box-shadow: var(--shadow-soft);
}
.hero__badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__media, .hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(43,38,36,0.82) 0%, rgba(43,38,36,0.55) 55%, rgba(43,38,36,0.25) 100%);
}
.hero__content {
  position: relative;
  color: var(--white);
  max-width: 640px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
}
.hero h1 span { color: var(--blush-light); font-style: italic; }
.hero__subhead {
  font-size: 1.1rem;
  color: rgba(250, 241, 232, 0.9);
  max-width: 520px;
}
.hero--page { min-height: 420px; }
.hero--page h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* ===== Trust strip ===== */
.trust-strip {
  background: var(--cream-alt);
  border-bottom: 1px solid rgba(43,38,36,0.06);
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: space-between;
  padding: 22px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}
.trust-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blush-deep);
  color: var(--white);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.service-card {
  display: block;
  background: var(--white);
  border: 1px solid rgba(43,38,36,0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card--static { cursor: default; }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--cream-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card__icon svg {
  width: 34px;
  height: 34px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.4em; }
.service-card p { color: var(--charcoal-soft); font-size: 0.94rem; margin: 0; }

/* ===== Why us ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.why-card img { height: 200px; object-fit: cover; }
.why-card h3, .why-card p { padding: 0 24px; }
.why-card h3 { margin-top: 20px; }
.why-card p { color: var(--charcoal-soft); font-size: 0.94rem; padding-bottom: 24px; }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.gallery-item img { width: 100%; height: 340px; object-fit: cover; }
.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(43,38,36,0.85), transparent);
  color: var(--white);
  padding: 16px 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 5;
  pointer-events: none;
}

/* ===== Before/After drag slider ===== */
.ba-slider {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
}
.gallery-item .ba-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-slider__img--before { z-index: 2; }
.ba-slider__img--after { z-index: 1; }

.ba-slider__tag {
  position: absolute;
  top: 16px;
  z-index: 3;
  background: rgba(43,38,36,0.72);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  pointer-events: none;
}
.ba-slider__tag--before { left: 16px; }
.ba-slider__tag--after { right: 16px; }

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  pointer-events: none;
}
.ba-slider__handle::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(43,38,36,0.15);
}
.ba-slider__handle-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blush-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
}
.ba-slider:focus-visible {
  outline: 3px solid var(--blush-deep);
  outline-offset: 3px;
}
.gallery-note {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  font-style: italic;
}

/* ===== Service area ===== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0 32px;
}
.area-card {
  background: var(--white);
  border: 1px solid rgba(43,38,36,0.08);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.area-card__icon { font-size: 1.4rem; display: block; margin-bottom: 10px; }
.area-card h3 { font-size: 1.05rem; margin: 0; }

/* ===== About ===== */
.about__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about__media {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.about__list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__list li {
  padding-left: 22px;
  position: relative;
  color: var(--charcoal-soft);
}
.about__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blush-deep);
}

/* ===== Service page quote CTA band ===== */
.quote-cta { background: var(--cream-alt); }
.quote-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.quote-cta .section-title { margin-bottom: 0.3em; }
.quote-cta .section-lede { margin-bottom: 0; }
.quote-cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(43,38,36,0.1);
  padding: 24px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-alt);
  color: var(--blush-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 16px 0 0;
  color: var(--charcoal-soft);
  line-height: 1.7;
}

/* ===== Quote / Contact ===== */
.quote { background: var(--charcoal); color: var(--cream); }
.quote .eyebrow { color: var(--blush-light); }
.quote .section-title { color: var(--white); }
.quote .section-lede { color: rgba(250,241,232,0.75); }

.quote__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.quote-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  margin-top: 32px;
  color: var(--charcoal);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal-soft);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(43,38,36,0.15);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--charcoal);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blush-deep);
}

.form-field__label-static {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--charcoal-soft);
}
.radio-toggle {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.radio-toggle__option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
}
.radio-toggle__option input { accent-color: var(--blush-deep); width: 16px; height: 16px; }

.form-consent {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--charcoal-soft);
  cursor: pointer;
}
.checkbox-field input {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--blush-deep);
  width: 16px;
  height: 16px;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--cream-alt);
  border-radius: 8px;
  color: var(--blush-deep);
  font-weight: 500;
  font-size: 0.92rem;
}
.form-success.is-visible { display: block; }

.form-error {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  background: #f8e4e1;
  border-radius: 8px;
  color: #a13d33;
  font-weight: 500;
  font-size: 0.92rem;
}
.form-error.is-visible { display: block; }

.quote__call-card {
  background: rgba(250,241,232,0.06);
  border: 1px solid rgba(250,241,232,0.18);
  border-radius: var(--radius);
  padding: 40px 32px;
  margin-top: 32px;
}
.quote__call-card h3 { color: var(--white); }
.quote__call-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--blush-light);
  margin: 12px 0 16px;
}
.quote__call-card p { color: rgba(250,241,232,0.75); }
.quote__hours { font-weight: 600; color: var(--cream) !important; }
.quote__response-note {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blush-light) !important;
}
.quote__service-area {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(250,241,232,0.18);
}
.quote__service-area h4 { color: var(--white); margin-bottom: 0.4em; font-family: var(--font-body); font-size: 0.95rem; }

/* ===== Footer ===== */
.site-footer { background: #201c1a; color: rgba(250,241,232,0.8); padding-top: 64px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250,241,232,0.1);
}
.footer__brand img { height: 56px; margin-bottom: 14px; }
.footer__socials { display: flex; gap: 16px; margin-top: 12px; }
.footer__socials a:hover { color: var(--blush-light); }
.footer__col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; }
.footer__col a:hover { color: var(--blush-light); }
.footer__bottom {
  padding: 20px 0;
  font-size: 0.82rem;
  text-align: center;
  color: rgba(250,241,232,0.5);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .services-grid, .why-grid, .area-grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner, .quote__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .quote-cta__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .hero__badge { width: 70px; height: 70px; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    box-shadow: var(--shadow-soft);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(43,38,36,0.06); }
  .nav__cta { margin-top: 12px; text-align: center; }
  .nav-toggle { display: flex; }

  .nav-item { width: 100%; }
  .nav-item .chevron { display: none; }
  .mega-menu { display: none; }

  .services-grid, .why-grid, .gallery-grid, .area-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}
