:root {
  --primary: #6B3F2A;
  --primary-dark: #3E2010;
  --accent: #C89B5F;
  --bg: #F7F0E6;
  --text: #2C1A0E;
  --text-light: #8C6E57;
  --surface: #ffffff;
  --border: #e8dcc8;
  --cream: #f5ede1;
  --dark: #2C1A0E;

  --font-serif: 'Lora', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --radius: 2px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -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-serif); line-height: 1.2; font-weight: 700; }

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 1px 8px rgba(107,63,42,0.08);
}

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

.logo { display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.005em;
}

.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 700;
  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-sans);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 26px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-sm { padding: 9px 20px; font-size: 0.78rem; }
.btn-lg { padding: 16px 36px; font-size: 0.92rem; }

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(107,63,42,0.25);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(200,155,95,0.3);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 800;
}
.btn-white:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.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.12);
  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: 22px; height: 2px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.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: 82vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(44,26,14,0.88) 0%,
    rgba(44,26,14,0.65) 35%,
    rgba(44,26,14,0.45) 100%
  );
}

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

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 600;
  margin-bottom: 20px;
  max-width: 720px;
  letter-spacing: -0.015em;
  line-height: 1.12;
}

.hero-sub {
  font-size: 1.08rem;
  opacity: 0.82;
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.7;
  font-weight: 400;
}

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

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 0.84rem;
  font-weight: 600;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0.78;
}
.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); }

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

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

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
  letter-spacing: -0.015em;
}
.section-dark .section-title { color: #fff; }

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

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

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

.svc-card-rich {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(107,63,42,0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.svc-card-rich:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(107,63,42,0.14);
}
.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.08); }

.svc-card-rich-body {
  padding: 22px 26px 26px;
  position: relative;
}
.svc-card-rich-body .svc-card-num {
  position: absolute;
  top: -15px; right: 22px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 5px 13px;
  border-radius: 2px;
  letter-spacing: 0.02em;
}
.svc-card-rich-body h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.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: 520px;
}
.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: 520px;
  transition: transform 0.7s var(--ease);
}
.split-section:hover .split-img img { transform: scale(1.03); }

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

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

.testi-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 30px;
  border-left: 3px solid var(--accent);
}
.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: 1rem;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 16px;
  color: #fff;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 6px;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
  flex-shrink: 0;
}
.testi-card cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
}
.testi-location {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
  display: block;
}

.area-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.area-section-img {
  overflow: hidden;
}
.area-section-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 500px;
}
.area-section-body {
  padding: clamp(40px, 5vw, 64px);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.area-section-body p {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 22px;
}
.area-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 10px;
}
.area-feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.area-feature svg { flex-shrink: 0; margin-top: 3px; }
.area-feature strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.area-feature span {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.55;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 52px;
  align-items: start;
}
.faq-left { position: sticky; top: 100px; }

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

.faq-item { border-bottom: 1px 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-sans);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }

.faq-icon {
  width: 20px; height: 20px;
  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: 12px; height: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 12px; 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.9rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 620px;
}

.cta-band {
  background: var(--primary);
  color: #fff;
  padding: clamp(52px, 7vw, 80px) 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: #fff;
}
.cta-band p {
  font-size: 0.96rem;
  opacity: 0.68;
  margin-top: 10px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.footer-body {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 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-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 14px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
  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: 9px; }
.footer-stars-text {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
}

.footer-col h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.32);
  margin-bottom: 18px;
  font-weight: 800;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.52);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #fff; }
.footer-col p {
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 9px;
}
.footer-col p strong { color: rgba(255,255,255,0.82); }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 18px 0;
}
.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.28);
  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(30px); }
[data-animate="fade-left"] { transform: translateX(-30px); }
[data-animate="fade-right"] { transform: translateX(30px); }
[data-animate="scale"] { transform: scale(0.94); }

[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(24px);
  animation: fadeIn 0.8s var(--ease) forwards;
}
.hero-anim-2 { animation-delay: 0.1s; }
.hero-anim-3 { animation-delay: 0.2s; }
.hero-anim-4 { animation-delay: 0.3s; }
.hero-anim-5 { animation-delay: 0.4s; }

@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; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .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: 80px 24px 24px;
    overflow-y: auto;
  }
  .main-nav.open ul { flex-direction: column; gap: 0; }
  .main-nav.open li { border-bottom: 1px solid var(--border); }
  .main-nav.open a { display: block; padding: 16px 0; font-size: 1rem; }

  .top-banner-inner { flex-direction: column; gap: 4px; text-align: center; }
  .hero { min-height: 75vh; }
  .hero h1 { font-size: 2.1rem; }
  .hero-trust { flex-direction: column; gap: 11px; }

  .svc-grid { grid-template-columns: 1fr; }

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