:root {
  --navy: #1a2332;
  --navy-light: #243044;
  --gold: #c8a050;
  --gold-hover: #d4ae60;
  --cream: #faf8f5;
  --warm: #f4f0ea;
  --text: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --border: #e4ddd2;
  --white: #ffffff;
  --green: #2a7a4a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
.site-header {
  background: var(--navy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.5px;
}

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

.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  font-family: system-ui, -apple-system, sans-serif;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.header-phone:hover { color: var(--white); }

.btn-consult {
  font-family: system-ui, -apple-system, sans-serif;
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 9px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-consult:hover { background: var(--gold-hover); }

nav {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}

nav a {
  font-family: system-ui, -apple-system, sans-serif;
  display: block;
  padding: 12px 18px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

nav a:hover, nav a.active { color: var(--white); }

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 32px 70px;
  text-align: center;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.hero-location {
  font-family: system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 12px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero .tagline {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-rating {
  margin-top: 28px;
  font-family: system-ui, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.hero-rating strong { color: var(--gold); }

/* ── PAGE HERO (for inner pages) ── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 50px 32px 45px;
  text-align: center;
}

.page-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.page-hero .breadcrumb {
  font-family: system-ui, sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}

.page-hero .breadcrumb a:hover { color: rgba(255,255,255,0.7); }

.page-hero h1 {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
}

/* ── SECTIONS ── */
.section {
  padding: 64px 32px;
}

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

.section-inner {
  max-width: 800px;
  margin: 0 auto;
}

.section-wide {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-family: system-ui, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.section h2 {
  font-size: 30px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-intro {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 640px;
}

/* ── CONTENT (articles, service pages) ── */
.content {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--text-mid);
}

.content h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--navy);
}

.content h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--navy);
}

.content p { margin-bottom: 16px; }

.content ul, .content ol {
  margin: 12px 0 20px 24px;
}

.content li { margin-bottom: 6px; }

.content strong { color: var(--text); }

/* ── FEATURES GRID ── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
}

.feature-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.feature h3 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
}

.feature p {
  font-family: system-ui, sans-serif;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.service-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card p {
  font-family: system-ui, sans-serif;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-card .link {
  font-family: system-ui, sans-serif;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}

.review-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review blockquote {
  font-size: 15px;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.review-author {
  font-family: system-ui, sans-serif;
  font-size: 13px;
}

.review-author strong { color: var(--text); display: block; }
.review-author span { color: var(--text-light); }

/* ── CITIES ── */
.cities-section { columns: 4; column-gap: 24px; }

.city-group { break-inside: avoid; margin-bottom: 24px; }

.city-group h4 {
  font-family: system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.city-group ul { list-style: none; }

.city-group li {
  font-family: system-ui, sans-serif;
  font-size: 14px;
  color: var(--text-mid);
  padding: 3px 0;
}

.city-group a {
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.city-group a:hover { color: var(--gold); }

/* ── PROMISES ── */
.promises {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.promise {
  text-align: center;
  padding: 20px 16px;
}

.promise-icon { font-size: 28px; margin-bottom: 10px; }

.promise h4 {
  font-family: system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.promise p {
  font-family: system-ui, sans-serif;
  font-size: 13px;
  color: var(--text-mid);
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.faq-q {
  font-size: 17px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q::after {
  content: '+';
  font-family: system-ui, sans-serif;
  font-size: 20px;
  color: var(--text-light);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding-top: 12px;
  font-family: system-ui, sans-serif;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

.faq-item.open .faq-a { display: block; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  padding: 56px 32px;
  text-align: center;
}

.cta-banner h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--white);
}

.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}

.cta-banner .btn-consult { font-size: 14px; padding: 12px 32px; }

.cta-banner .cta-phone {
  display: block;
  margin-top: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-family: system-ui, sans-serif;
  font-size: 14px;
}

/* ── BLOG LIST ── */
.blog-list { list-style: none; }

.blog-list li {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.blog-list a {
  text-decoration: none;
  color: var(--text);
}

.blog-list h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 6px;
  transition: color 0.2s;
}

.blog-list a:hover h3 { color: var(--gold); }

.blog-list p {
  font-family: system-ui, sans-serif;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.blog-meta {
  font-family: system-ui, sans-serif;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 6px;
}

/* ── SIDEBAR ── */
.page-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.sidebar {
  font-family: system-ui, sans-serif;
}

.sidebar-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
}

.sidebar-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.sidebar-card ul { list-style: none; }

.sidebar-card li { padding: 6px 0; }

.sidebar-card a {
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.sidebar-card a:hover { color: var(--gold); }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 48px 32px 28px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  font-family: system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 8px;
}

.footer-col h4 {
  font-family: system-ui, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
  font-weight: 600;
}

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

.footer-col li { padding: 4px 0; }

.footer-col a {
  font-family: system-ui, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1140px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-family: system-ui, sans-serif;
  font-size: 12px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  margin-left: 16px;
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  font-family: system-ui, sans-serif;
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: system-ui, sans-serif;
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .features { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .promises { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cities-section { columns: 2; }
  .page-with-sidebar { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .page-hero h1 { font-size: 28px; }
}

@media (max-width: 600px) {
  .header-top { flex-direction: column; gap: 10px; }
  nav ul { flex-wrap: wrap; justify-content: center; }
  .hero { padding: 50px 20px 40px; }
  .section { padding: 40px 20px; }
  .promises { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cities-section { columns: 1; }
  .hero-btns { flex-direction: column; align-items: center; }
}

@media print {
  .site-header { position: static; }
  .cta-banner { background: #f0f0f0; color: #1a1a1a; }
  .cta-banner h2 { color: #1a1a1a; }
}
