/* Grande Vista — рулонные шторы, жалюзи, плиссе, блэкаут. СПб и Ленобласть */

:root {
  --bg: #faf7f2;
  --bg-alt: #f1ece2;
  --card: #ffffff;
  --text: #2b2621;
  --text-muted: #6d6459;
  --line: #e6ddcf;
  --accent: #a8622f;
  --accent-dark: #7e491f;
  --accent-light: #f0dcc8;
  --ok: #4b7a51;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(43, 38, 33, 0.08);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Verdana, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.6em;
  color: var(--text);
}
h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--text); }
a { color: var(--accent-dark); }
a:hover { color: var(--accent); }
ul { padding-left: 1.2em; }
img, svg { max-width: 100%; height: auto; display: block; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.logo span { color: var(--accent); }
.logo svg { width: 28px; height: 28px; }

nav.main-nav { display: flex; gap: 6px 15px; flex-wrap: wrap; justify-content: flex-end; flex: 1 1 auto; min-width: 0; }
nav.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
nav.main-nav a:hover, nav.main-nav a.active {
  color: var(--accent-dark);
  border-bottom-color: var(--accent);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.phone-link {
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  font-size: 0.94rem;
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--accent-dark); }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent-dark) !important;
}
.btn-ghost:hover { background: var(--accent-light); }
.burger { display: none; }

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 14px 0 0;
}
.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent-dark); }

/* Hero */
.hero {
  padding: 56px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 10px;
}
.hero p.lead { font-size: 1.12rem; color: var(--text-muted); max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-stats div strong { display: block; font-size: 1.5rem; font-family: Georgia, serif; color: var(--accent-dark); }
.hero-stats div span { font-size: 0.86rem; color: var(--text-muted); }
.hero-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* Sections */
section { padding: 46px 0; }
section.alt { background: var(--bg-alt); }
.section-head { max-width: 62ch; margin-bottom: 34px; }
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--accent-dark);
  font-weight: 700;
}

/* Category cards */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(43,38,33,0.14); }
.card .card-media { aspect-ratio: 4/3; background: var(--bg-alt); }
.card .card-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.card h3 { margin-bottom: 6px; }
.card p { color: var(--text-muted); font-size: 0.95rem; flex: 1; }
.card .card-price { font-weight: 700; color: var(--accent-dark); margin-top: 8px; }
.tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  width: fit-content;
}

/* Feature list */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.feature { text-align: left; }
.feature .num {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

/* Steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.step { position: relative; padding-top: 8px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

/* Table */
table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
th { background: var(--bg-alt); font-family: Georgia, serif; }
tr:last-child td { border-bottom: none; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-item summary { font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--accent); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin-top: 12px; color: var(--text-muted); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery figcaption { padding: 10px 14px; font-size: 0.85rem; color: var(--text-muted); background: var(--card); }

/* CTA band */
.cta-band {
  background: var(--accent-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { color: #f0dcc8; margin: 0; }
.cta-band .btn { background: #fff; color: var(--accent-dark) !important; }
.cta-band .btn:hover { background: var(--accent-light); }

/* Footer */
footer.site-footer {
  background: #211c17;
  color: #cfc6b8;
  padding: 52px 0 24px;
  margin-top: 40px;
}
footer.site-footer a { color: #e9dfcd; text-decoration: none; }
footer.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-grid h4 { color: #fff; font-family: Georgia, serif; font-size: 1rem; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; font-size: 0.92rem; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #3a3229;
  font-size: 0.82rem;
  color: #8f8576;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Article / blog */
.article { max-width: 74ch; margin: 0 auto; }
.article h2 { margin-top: 1.4em; }
.article-meta { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 24px; }
.article img, .article svg { border-radius: var(--radius); margin: 20px 0; box-shadow: var(--shadow); }

/* Utility */
.center { text-align: center; }
.muted { color: var(--text-muted); }
.mt-0 { margin-top: 0; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-4, .steps { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .grid-4, .grid-3, .grid-2, .gallery, .steps, .features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .header-inner { padding: 12px 18px; }
}
