/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 32, 44, 0.95);
  color: #fff;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  border-radius: 4px;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s, opacity 0.25s;
}
.site-header.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.site-header.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav { display: flex; gap: 2rem; }
.nav a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav a:hover { color: #c9a227; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; z-index: 101; position: relative; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background: rgba(26, 32, 44, 0.98);
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
  }
  .site-header.is-open .nav {
    opacity: 1;
    visibility: visible;
  }
}

/* Hero — тёмный, как у коммерческих flooring-сайтов */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-inner { position: relative; z-index: 1; }
.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  line-height: 1.2;
  margin: 0 0 1.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-hero {
  background: #b91c1c;
  color: #fff;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-hero:hover { background: #991b1b; }
.btn-primary {
  background: #c9a227;
  color: #1a202c;
}
.btn-primary:hover { background: #d4af37; }
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-secondary:hover { border-color: #c9a227; color: #c9a227; }

/* Sections */
.block { padding: 4.5rem 0; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 1.5rem;
  text-align: center;
  letter-spacing: 0.02em;
}
.section-title--light { color: #fff; }

/* About — белый фон, заголовок тёмно-красный, текст по центру как у Anderson */
.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: #8b2e2e;
  text-align: center;
  margin: 0 0 1.5rem;
}
.about-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-text p {
  margin: 0 0 1rem;
  color: #374151;
  font-size: 1rem;
  line-height: 1.7;
}
.about-text p:last-child { margin-bottom: 0; }

/* Services — красный баннер + сетка 2x2 с фото как у Anderson */
.services.block { padding-top: 0; }
.services-banner {
  background: #b91c1c;
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.services-banner-title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
}
.services .container { padding-top: 2.5rem; padding-bottom: 4rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: #fff;
  padding: 0;
}
.service-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #1a1a1a;
}
.service-card-img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 1rem;
}
.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
}

/* Partner — тёмно-синий блок, две колонки как у Anderson */
.partner.block--dark {
  background: #1e3a5f;
  color: #fff;
}
.partner-title {
  margin: 0 0 2.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
.partner-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .partner-columns { grid-template-columns: 1fr; }
}
.partner-text {
  font-size: 1rem;
  line-height: 1.7;
}
.partner-text p { margin: 0 0 1rem; }
.partner-text p:last-child { margin-bottom: 0; }
.partner-services-intro {
  margin: 0 0 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.95);
}
.partner-services-list {
  margin: 0;
  padding-left: 1.25rem;
  color: #fff;
  line-height: 1.8;
}
.partner-services-list li { margin-bottom: 0.25rem; }

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.contact-form label span { font-weight: 500; font-size: 0.9rem; }
.contact-form input,
.contact-form textarea {
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #cbd5e0;
  border-radius: 4px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c9a227;
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.2);
}
.contact-info { padding: 1rem 0; }
.office h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: #1a202c;
}
.office p { margin: 0 0 0.35rem; color: #4a5568; }

/* Footer */
.site-footer {
  background: #1a202c;
  color: rgba(255,255,255,0.7);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}
