/* ========================================
   WallCraft Innovations — Main Stylesheet
   ======================================== */

/* --- Color System --- */
:root {
  --ink: #2F241F;
  --ink-strong: #231A16;
  --ink-elev: #43322C;
  --muted: #6E5B50;
  --muted-strong: #594940;
  --muted-soft: #8C7A6F;
  --muted-contrast: #D8C9BC;
  --bg: #F3ECE3;
  --bg-alt: #E5D7C7;
  --surface: #FFFFFF;
  --surface-soft: #F9F2EA;
  --border: #DCCCBD;
  --border-soft: #CDB7A6;
  --accent: #C5653C;
  --accent-hover: #9D4A2B;
  --accent-rgb: 197,101,60;
  --on-accent: #FFF7F1;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color .25s; }
a:hover { color: var(--accent-hover); }

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

h1, h2, h3, h4 { font-family: 'Playfair Display', 'Georgia', serif; color: var(--ink); line-height: 1.3; }
h1 { font-size: 2.6rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: .8rem; }
h3 { font-size: 1.5rem; margin-bottom: .6rem; }

p { margin-bottom: 1rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- Header --- */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--bg-alt);
  position: sticky;
  top: 0;
  z-index: 1300;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: .85rem;
  border-bottom: 1px solid var(--bg-alt);
}

.header-top .contact-info {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-top .contact-info a {
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.header-top .contact-info a:hover { color: var(--accent); }

.header-top .contact-info svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.5px;
}

.logo span { color: var(--accent); }

/* --- Desktop Navigation --- */
.main-nav { display: flex; align-items: center; gap: 0; }

.main-nav > ul {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}

.main-nav > ul > li { position: relative; }

.main-nav > ul > li > a {
  display: block;
  padding: 12px 18px;
  color: var(--ink);
  font-weight: 500;
  font-size: .95rem;
  transition: color .25s, background .25s;
  border-radius: 6px;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--accent);
  background: rgba(var(--accent-rgb),.08);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface);
  min-width: 260px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  border: 1px solid var(--bg-alt);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s, visibility .3s;
  list-style: none;
  padding: 8px 0;
  z-index: 100;
}

.main-nav > ul > li:hover > .dropdown-menu,
.main-nav > ul > li:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li { opacity: 0; transform: translateY(6px); }

.main-nav > ul > li:hover > .dropdown-menu li,
.main-nav > ul > li:focus-within > .dropdown-menu li {
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu li:nth-child(1) { transition: opacity .25s .05s, transform .25s .05s; }
.dropdown-menu li:nth-child(2) { transition: opacity .25s .1s, transform .25s .1s; }
.dropdown-menu li:nth-child(3) { transition: opacity .25s .15s, transform .25s .15s; }
.dropdown-menu li:nth-child(4) { transition: opacity .25s .2s, transform .25s .2s; }
.dropdown-menu li:nth-child(5) { transition: opacity .25s .25s, transform .25s .25s; }
.dropdown-menu li:nth-child(6) { transition: opacity .25s .3s, transform .25s .3s; }
.dropdown-menu li:nth-child(7) { transition: opacity .25s .35s, transform .25s .35s; }
.dropdown-menu li:nth-child(8) { transition: opacity .25s .4s, transform .25s .4s; }
.dropdown-menu li:nth-child(9) { transition: opacity .25s .45s, transform .25s .45s; }
.dropdown-menu li:nth-child(10) { transition: opacity .25s .5s, transform .25s .5s; }
.dropdown-menu li:nth-child(11) { transition: opacity .25s .55s, transform .25s .55s; }

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--ink);
  font-size: .9rem;
  transition: background .2s, color .2s, padding-left .2s;
}

.dropdown-menu a:hover {
  background: var(--bg);
  color: var(--accent);
  padding-left: 26px;
}

/* --- Mobile Menu Toggle --- */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.mobile-toggle svg { width: 28px; height: 28px; color: var(--ink); }

/* --- Mobile Navigation --- */
@media (max-width: 992px) {
  .header-top { display: none; }
  .header-top .contact-info { font-size: .78rem; gap: 12px; }

  .mobile-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(88vw, 360px);
    min-width: 0;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 70px 0 30px;
    box-shadow: -4px 0 24px rgba(0,0,0,.12);
    transition: right .35s ease;
    overflow-y: auto;
    z-index: 1320;
  }

  .main-nav.open { right: 0; }

  .main-nav > ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: stretch;
  }

  .main-nav > ul > li {
    width: 100%;
  }

  .main-nav > ul > li > a {
    display: block;
    padding: 14px 24px;
    border-bottom: 1px solid var(--bg-alt);
    border-radius: 0;
    font-size: 1rem;
    text-align: left;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0;
    background: var(--bg);
  }

  .dropdown-menu.open { max-height: 600px; padding: 4px 0; }

  .dropdown-menu li {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .dropdown-menu a {
    display: block;
    padding: 10px 24px 10px 40px;
    border-bottom: 1px solid var(--bg-alt);
    font-size: .9rem;
    text-align: left;
    width: 100%;
  }

  .mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    width: 44px;
    height: 44px;
  }

  .mobile-close svg { width: 28px; height: 28px; color: var(--ink); }

  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    z-index: 1200;
  }

  .mobile-overlay.active { display: block; }

  body.menu-open .mobile-toggle {
    opacity: 0;
    pointer-events: none;
  }

  .has-dropdown > a::after { display: none; }
}

@media (min-width: 993px) {
  .mobile-close { display: none; }
  .mobile-overlay { display: none !important; }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding: 72px 0 84px;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(22,16,13,.88) 0%, rgba(22,16,13,.72) 46%, rgba(22,16,13,.52) 100%),
    linear-gradient(145deg, #2B201B 0%, #1D1512 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .42;
  transform: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24,18,15,.5) 0%, rgba(24,18,15,.24) 44%, rgba(24,18,15,.08) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 440px);
  align-items: end;
  gap: 44px;
}

.hero-text {
  color: var(--surface);
  padding: 0;
  max-width: 700px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #FFEAD9;
  background: rgba(var(--accent-rgb), .6);
  border: 1px solid rgba(255,255,255,.14);
}

.hero-text h1 {
  color: var(--surface);
  font-size: clamp(2.3rem, 4.5vw, 4.25rem);
  margin-bottom: 1.05rem;
  line-height: 1.04;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.hero-lead {
  font-size: 1.16rem;
  opacity: .96;
  margin-bottom: 1.45rem;
  max-width: 580px;
  color: rgba(255,255,255,.94);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 1.4rem;
}

.hero .hero-btn-outline {
  border-color: rgba(255,255,255,.8);
  color: var(--surface);
  background: rgba(255,255,255,.08);
}

.hero .hero-btn-outline:hover {
  border-color: var(--surface);
  background: rgba(255,255,255,.2);
  color: var(--surface);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 1rem;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.24);
}

.hero-trust-item {
  min-width: 120px;
}

.hero-trust-item strong {
  display: block;
  color: #FFE2D0;
  font-size: 1.46rem;
  font-weight: 700;
  line-height: 1;
}

.hero-trust-item span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  line-height: 1.3;
}

.hero-points {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0;
}

.hero-points li {
  position: relative;
  padding-left: 20px;
  color: rgba(255,255,255,.9);
  font-size: .96rem;
  line-height: 1.38;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: .86rem;
  color: #FFC8AA;
  font-weight: 700;
}

.hero-form {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  transform: none;
}

.hero-form .feedback-form-container {
  width: 100%;
  max-width: 430px;
  border-radius: 18px;
  border: none;
  background: #FFFDFB;
  box-shadow: 0 22px 54px rgba(8,5,3,.38);
  color: var(--ink);
  padding: 0;
  overflow: hidden;
}

.hero-form .feedback-form-container h2 {
  text-align: center;
  margin: 0;
  padding: 18px 20px;
  color: var(--surface);
  font-size: 1.28rem;
  line-height: 1.2;
  background: linear-gradient(120deg, #2B1E18 0%, #1D1512 100%);
}

.hero-form .feedback-form-container .contact-form {
  padding: 16px 20px 20px;
}

.hero-form .feedback-form-container .form-group {
  margin-bottom: 10px;
}

.hero-form .feedback-form-container .form-group input,
.hero-form .feedback-form-container .form-group textarea {
  background: #FFFFFF;
  border-color: #D9C8BC;
  color: var(--ink);
  border-radius: 10px;
  padding: 13px 14px;
}

.hero-form .feedback-form-container .form-group input::placeholder,
.hero-form .feedback-form-container .form-group textarea::placeholder {
  color: #7A6860;
}

.hero-form .feedback-form-container .form-group input:focus,
.hero-form .feedback-form-container .form-group textarea:focus {
  border-color: #D3774F;
  box-shadow: 0 0 0 3px rgba(211,119,79,.22);
}

.hero-form .feedback-form-container .submit-btn {
  width: 100%;
  padding: 13px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #CE7048, #B85D37);
  box-shadow: none;
}

.hero-form .feedback-form-container .submit-btn:hover {
  background: linear-gradient(135deg, #BE6742, #A85130);
}

.hero-form .feedback-form-container #form-success p {
  color: var(--ink);
}

@media (max-width: 992px) {
  .hero {
    padding: 52px 0 58px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-trust {
    gap: 14px;
  }

  .hero-form {
    justify-content: flex-start;
    align-self: auto;
    transform: none;
  }

  .hero-form .feedback-form-container {
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0 44px;
  }

  .hero-form .feedback-form-container {
    max-width: none;
  }

  .hero-kicker {
    font-size: .69rem;
    padding: 7px 11px;
  }

  .hero-text h1 {
    font-size: 2.15rem;
  }

  .hero-lead {
    font-size: 1.03rem;
  }

  .hero-trust {
    gap: 12px;
    padding-top: 12px;
  }

  .hero-trust-item {
    min-width: 92px;
  }

  .hero-trust-item strong {
    font-size: 1.22rem;
  }

  .hero-form .feedback-form-container h2 {
    padding: 16px 16px;
    font-size: 1.16rem;
  }

  .hero-form .feedback-form-container .contact-form {
    padding: 14px 16px 16px;
  }
}

/* --- Contact Form --- */
.feedback-form-container {
  background: var(--surface);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

.feedback-form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 1.4rem;
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 0;
}

.form-group {
  flex: 1;
  margin-bottom: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  background: var(--surface-soft);
  transition: border-color .25s, box-shadow .25s;
  color: var(--ink);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),.15);
  background: var(--surface);
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

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

.submit-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s, transform .15s;
  height: 52px;
  font-family: inherit;
}

.submit-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .form-row { flex-direction: column; gap: 0; }
  .feedback-form-container { padding: 24px 18px; }
}

#form-success {
  text-align: center;
  padding: 30px;
}

#form-success p {
  color: var(--ink);
  font-size: 1.1rem;
}

/* --- Sections --- */
.section {
  padding: 70px 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 { margin-bottom: .5rem; }

.section-title p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- CTA Button --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: 12px;
  font-weight: 600;
  font-size: .95rem;
  transition: background .25s, transform .15s;
  height: 52px;
  line-height: 24px;
  text-align: center;
}

.btn:hover {
  background: var(--accent-hover);
  color: var(--on-accent);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.cta-block {
  text-align: center;
  padding: 30px 0;
}

.cta-block p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.home-services-grid {
  grid-template-columns: repeat(2, 1fr);
}

.home-services-grid .card {
  display: flex;
  flex-direction: column;
}

.home-services-grid .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.home-services-grid .card-img {
  flex: 0 0 220px;
}

.home-services-grid .card-body .btn {
  margin-top: auto;
}

@media (max-width: 768px) {
  .home-services-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

.card-img {
  height: 220px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.card:hover .card-img img { transform: scale(1.05); }

.card-body { padding: 24px; }
.card-body h3 { margin-bottom: .5rem; font-size: 1.25rem; }
.card-body p { color: var(--muted); font-size: .92rem; margin-bottom: 1rem; }

/* --- Image + Text Rows --- */
.img-text-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
}

.img-text-row.reverse { flex-direction: row-reverse; }

.img-text-row .img-col {
  flex: 0 0 48%;
  border-radius: 12px;
  overflow: hidden;
}

.img-text-row .img-col img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
}

.img-text-row .text-col { flex: 1; }

@media (max-width: 768px) {
  .img-text-row, .img-text-row.reverse { flex-direction: column; gap: 24px; }
  .img-text-row .img-col { flex: none; width: 100%; }
}

/* --- Map --- */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* --- Footer --- */
.site-footer {
  background: var(--ink);
  color: var(--muted-contrast);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3,
.footer-col-title,
.footer-brand strong {
  color: var(--surface);
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.footer-col-title,
.footer-brand {
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col p { font-size: .9rem; line-height: 1.8; }

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul a {
  color: var(--muted-contrast);
  font-size: .9rem;
  transition: color .2s, padding-left .2s;
}

.footer-col ul a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--muted-strong);
  padding: 20px 0;
  text-align: center;
  font-size: .85rem;
}

/* --- Sticky Quote Button --- */
.sticky-quote-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb),.4);
  transition: background .25s, transform .15s, box-shadow .25s;
  font-family: inherit;
}

.sticky-quote-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(var(--accent-rgb),.5);
}

@media (max-width: 768px) {
  .sticky-quote-btn {
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
    width: calc(100% - 40px);
    max-width: 320px;
    text-align: center;
  }
  .sticky-quote-btn:hover { transform: translateX(50%) translateY(-2px); }
}

/* --- Modal --- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal-content {
  background: var(--surface);
  border-radius: 16px;
  padding: 0;
  max-width: 500px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn .3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--bg);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .2s;
}

.modal-close:hover { background: var(--bg-alt); }
.modal-close svg { width: 18px; height: 18px; color: var(--ink); }

.modal-content .feedback-form-container {
  box-shadow: none;
  border-radius: 16px;
}

/* --- Page Header (inner pages) --- */
.page-header {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-elev) 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--surface);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('') center/cover;
  opacity: .15;
}

.page-header h1 { color: var(--surface); font-size: 2.6rem; margin-bottom: .5rem; position: relative; }
.page-header p { color: rgba(255,255,255,.82); font-size: 1.1rem; position: relative; max-width: 600px; margin: 0 auto; }

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 14px 0;
  font-size: .85rem;
  color: var(--muted-soft);
  background: var(--surface);
  border-bottom: 1px solid var(--bg-alt);
}

.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }

/* --- FAQ --- */
.faq-item {
  background: var(--surface);
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid var(--bg-alt);
  overflow: hidden;
}

.faq-question {
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
}

.faq-question:hover { background: var(--bg); }

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--accent);
}

.faq-item.active .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer-inner {
  padding: 0 24px 18px;
  color: var(--muted-strong);
  line-height: 1.8;
}

.faq-item.active .faq-answer { max-height: 500px; }

/* --- Lists --- */
.content-list { padding-left: 20px; margin-bottom: 1.2rem; }
.content-list li { margin-bottom: 8px; color: var(--muted-strong); line-height: 1.7; }

.check-list { list-style: none; padding: 0; }
.check-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: var(--muted-strong);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* --- Ordered Steps --- */
.steps-list { counter-reset: step; list-style: none; padding: 0; }
.steps-list li {
  counter-increment: step;
  padding: 14px 0 14px 50px;
  position: relative;
  border-bottom: 1px solid var(--bg-alt);
}
.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 12px;
  width: 34px;
  height: 34px;
  background: var(--accent);
  color: var(--ink-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-list { list-style: none; padding: 0; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--bg-alt);
}

.contact-info-list li svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-list li strong { display: block; margin-bottom: 2px; }

/* --- Areas Grid --- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.area-card {
  display: block;
  padding: 20px;
  background: var(--surface);
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--bg-alt);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.area-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  color: var(--accent);
}

/* --- Neighborhoods --- */
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.neighborhoods-grid span {
  padding: 10px 14px;
  background: var(--surface);
  border-radius: 8px;
  font-size: .9rem;
  text-align: center;
  border: 1px solid var(--bg-alt);
}

/* --- Utilities --- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.pt-0 { padding-top: 0; }

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* --- Dropdown arrow indicator --- */
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
  transition: transform .3s;
}

.has-dropdown:hover > a::after { transform: rotate(180deg); }

@media (max-width: 992px) {
  .has-dropdown > a::after { margin-left: auto; }
}

/* --- About page --- */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--bg-alt);
}

.value-card svg {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 16px;
}

.value-card h3 { margin-bottom: .5rem; font-size: 1.15rem; }
.value-card p { color: var(--muted); font-size: .9rem; margin-bottom: 0; }

/* Print */
@media print {
  .site-header, .site-footer, .sticky-quote-btn, .modal-overlay { display: none; }
}
