:root {
  --color-bg: #FAF8F5;
  --color-bg-alt: #F2EDE6;
  --color-text: #2C2925;
  --color-text-muted: #6B6560;
  --color-accent: #8B6914;
  --color-accent-light: #C9A227;
  --color-accent-dark: #5C4710;
  --color-border: #E5DFD6;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--color-border);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--color-accent-dark);
}

.header-phone {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(139, 105, 20, 0.06) 0%, transparent 50%),
    var(--color-bg);
}

.hero-content {
  position: relative;
  text-align: center;
}

.hero-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  font-weight: 400;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-accent);
  color: white;
  border: 2px solid var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--color-text-muted);
  border-bottom: 2px solid var(--color-text-muted);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* Services */
.services {
  padding: 100px 0;
  background: var(--color-bg-alt);
}

.services h2,
.about h2,
.contact h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.section-intro {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin: 0 0 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--color-bg);
  padding: 36px 32px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--color-accent-light);
  box-shadow: 0 12px 40px rgba(139, 105, 20, 0.08);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.service-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* About */
.about {
  padding: 100px 0;
}

.about-content {
  max-width: 640px;
}

.about-content p {
  margin: 0 0 16px;
  color: var(--color-text-muted);
}

.about-features {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.about-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.about-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* Contact */
.contact {
  padding: 100px 0;
  background: var(--color-bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
  background: var(--color-bg);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(139, 105, 20, 0.1);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact-value {
  font-weight: 600;
  text-align: center;
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.footer-copy {
  margin-top: 8px;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Mobile */
@media (max-width: 768px) {
  .nav,
  .header-phone {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    padding: 24px;
    border-bottom: 1px solid var(--color-border);
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-tagline {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .services,
  .about,
  .contact {
    padding: 60px 0;
  }
}

/* Улучшенная форма обратной связи */
.feedback-form {
  max-width: 800px; /* Увеличиваем общую ширину формы */
  margin: 0 auto;
  background: var(--color-bg);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 24px; /* Увеличиваем отступы между полями */
}

.feedback-form input,
.feedback-form textarea {
  width: 100%; /* Растягиваем поля на всю ширину контейнера */
  padding: 16px 20px; /* Увеличиваем внутренние отступы (поля станут выше) */
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1.1rem; /* Слегка увеличиваем шрифт текста */
  transition: border-color var(--transition);
  background: #fff;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(139, 105, 20, 0.05); /* Легкое свечение при фокусе */
}

/* Стили конкретно для текстового поля "Что бы вы хотели" */
.feedback-form textarea {
  min-height: 180px; /* Делаем его заметно больше остальных полей */
  resize: none;      /* Запрещаем пользователю растягивать поле вручную */
  line-height: 1.5;
}

.feedback-form .btn {
  width: 100%; /* Кнопка на всю ширину */
  padding: 18px; /* Делаем кнопку массивнее */
  font-size: 1.1rem;
  border: none;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .feedback-form {
    padding: 24px;
  }
}