:root {
  --primary: #C0392B;
  --primary-dark: #922B21;
  --accent: #E67E22;
  --bg: #FDF6EC;
  --text: #2C1810;
  --text-light: #7D4E37;
  --surface: #ffffff;
  --border: #E8D6C0;
  --cream: #FAF3E8;
  --dark: #2C1810;

  --font-heading: 'Fraunces', serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --radius: 2px;
  --btn-radius: 1px;
  --card-radius: 2px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-heading); line-height: 1.1; font-weight: 800; }

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

.top-banner {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.top-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 24px;
}
.top-banner a {
  color: var(--accent);
  font-weight: 900;
  transition: color 0.2s;
}
.top-banner a:hover { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,253,247,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(44,24,16,0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 48px; width: auto; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--primary);
  transition: color 0.2s;
}
.header-phone:hover { color: var(--accent); }
.header-phone svg { flex-shrink: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.82rem;
  padding: 13px 26px;
  border: none;
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn-sm { padding: 10px 20px; font-size: 0.75rem; }
.btn-lg { padding: 17px 36px; font-size: 0.88rem; }

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(192,57,43,0.35);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230,126,34,0.35);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 900;
  border: 2px solid transparent;
}
.btn-white:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  box-shadow: inset 0 0 0 2px var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.2);
  box-shadow: inset 0 0 0 2px #fff;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.mobile-toggle span {
  display: block;
  width: 24px; height: 3px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(44,24,16,0.88) 0%,
    rgba(146,43,33,0.7) 35%,
    rgba(192,57,43,0.55) 70%,
    rgba(230,126,34,0.4) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 100px;
  width: 100%;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  margin-bottom: 20px;
  max-width: 760px;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 1.15rem;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.7;
  font-weight: 400;
}

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

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 2px solid rgba(255,255,255,0.2);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0.8;
}
.hero-trust-item svg { flex-shrink: 0; }

.star { font-size: 0.85em; }
.star-full { color: var(--accent); }
.star-half { color: var(--accent); opacity: 0.5; }
.star-empty { color: rgba(255,255,255,0.2); }
.section-dark .star-empty,
.site-footer .star-empty { color: rgba(255,255,255,0.15); }

.trust-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 0;
  box-shadow: inset 0 2px 0 rgba(0,0,0,0.15);
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 2px solid rgba(255,255,255,0.12);
  transition: background 0.3s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,0.08); }

.trust-item-value {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 900;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.trust-item-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.65;
  font-weight: 700;
}

.section { padding: clamp(64px, 8vw, 100px) 0; }
.section-dark { background: var(--dark); color: #fff; }
.section-cream { background: var(--cream); }
.section-menu { background: var(--bg); }

.section-label {
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.section-dark .section-label { color: var(--accent); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--dark);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.section-dark .section-title { color: #fff; }

.section-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.75;
}
.section-dark .section-intro { color: rgba(255,255,255,0.6); }

.section-header { margin-bottom: clamp(44px, 5vw, 64px); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card-rich {
  background: var(--surface);
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 2px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.svc-card-rich:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(44,24,16,0.15);
  border-color: var(--accent);
}
.svc-card-rich-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.svc-card-rich-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.svc-card-rich:hover .svc-card-rich-img img { transform: scale(1.1); }

.svc-card-rich-body {
  padding: 24px 26px 28px;
  position: relative;
}
.svc-card-rich-body .svc-card-num {
  position: absolute;
  top: -16px; right: 22px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: var(--card-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.svc-card-rich-body h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.svc-card-rich-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 540px;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-img { overflow: hidden; }
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 540px;
  transition: transform 0.8s var(--ease);
}
.split-section:hover .split-img img { transform: scale(1.04); }

.split-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 72px);
  background: var(--surface);
}
.split-body p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.8;
}
.split-body .btn { align-self: flex-start; margin-top: 16px; }

.stats-band {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.stats-band-overlay {
  background: linear-gradient(135deg, rgba(44,24,16,0.92) 0%, rgba(146,43,33,0.88) 100%);
  padding: clamp(56px, 7vw, 84px) 0;
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats-band-item {
  text-align: center;
  padding: 28px 18px;
  border-right: 2px solid rgba(255,255,255,0.1);
  color: #fff;
}
.stats-band-item:last-child { border-right: none; }
.stats-band-value {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.stats-band-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.55;
  font-weight: 700;
  margin-bottom: 10px;
}
.stats-band-detail {
  font-size: 0.82rem;
  opacity: 0.45;
}

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

.testi-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--card-radius);
  padding: 32px;
  border-left: 4px solid var(--accent);
  border-bottom: 2px solid rgba(255,255,255,0.08);
}
.testi-stars {
  margin-bottom: 14px;
}
.testi-card .star-full { color: var(--accent); }
.testi-card .star-empty { color: rgba(255,255,255,0.12); }
.testi-card blockquote {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #fff;
}
.testi-card cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  display: block;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
}
.testi-card cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.testi-location {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
}

.area-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.area-section-img {
  overflow: hidden;
}
.area-section-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 520px;
}
.area-section-body {
  padding: clamp(44px, 6vw, 72px);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 4px solid var(--accent);
}
.area-section-body p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
}
.area-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 10px;
}
.area-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.area-feature svg { flex-shrink: 0; margin-top: 3px; }
.area-feature strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.area-feature span {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.6;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.faq-left { position: sticky; top: 110px; }

.faq-list { max-width: 740px; }

.faq-item { border-bottom: 2px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.faq-q:hover { color: var(--accent); }

.faq-icon {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-light);
  transition: transform 0.3s var(--ease);
}
.faq-icon::before { width: 14px; height: 3px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after { width: 3px; height: 14px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a p {
  padding-bottom: 22px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 640px;
}

.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: clamp(56px, 7vw, 88px) 0;
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.cta-band p {
  font-size: 1rem;
  opacity: 0.7;
  margin-top: 10px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
}

.footer-body {
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  display: block;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-brand-col p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.footer-stars { display: flex; align-items: center; gap: 10px; }
.footer-stars-text {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
}

.footer-col h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
  font-weight: 900;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #fff; }
.footer-col p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.footer-col p strong { color: rgba(255,255,255,0.85); }

.footer-bottom {
  background: rgba(0,0,0,0.35);
  padding: 18px 0;
  border-top: 2px solid rgba(255,255,255,0.08);
}
.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

[data-animate] {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-animate].in-view { opacity: 1; transform: none; }

[data-animate="fade-up"] { transform: translateY(36px); }
[data-animate="fade-left"] { transform: translateX(-36px); }
[data-animate="fade-right"] { transform: translateX(36px); }
[data-animate="scale"] { transform: scale(0.92); }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

.hero-anim {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeIn 0.9s var(--ease) forwards;
}
.hero-anim-2 { animation-delay: 0.15s; }
.hero-anim-3 { animation-delay: 0.3s; }
.hero-anim-4 { animation-delay: 0.45s; }

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section, .area-section { grid-template-columns: 1fr; }
  .split-section.reverse { direction: ltr; }
  .testi-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band-item:nth-child(2) { border-right: none; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-left { position: static; }
}

@media (max-width: 768px) {
  .main-nav, .header-right { display: none; }
  .mobile-toggle { display: flex; }

  .main-nav.open {
    display: block;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 200;
    padding: 90px 24px 24px;
    overflow-y: auto;
  }
  .main-nav.open ul { flex-direction: column; gap: 0; }
  .main-nav.open li { border-bottom: 2px solid var(--border); }
  .main-nav.open a { display: block; padding: 18px 0; font-size: 1.05rem; }

  .top-banner-inner { flex-direction: column; gap: 6px; text-align: center; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 2.2rem; }
  .hero-trust { flex-direction: column; gap: 12px; }

  .svc-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .stats-band-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .split-img img, .area-section-img img { min-height: 300px; }
}