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

:root {
  --primary-color: #3d4a5c;
  --secondary-color: #8b9db5;
  --accent-color: #c4d1e0;
  --text-dark: #2a3441;
  --text-light: #6b7a8a;
  --bg-light: #f5f7fa;
  --bg-white: #ffffff;
  --border-color: #e0e6ed;
  --border-radius: 14px;
  --spacing-base: 32px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-size-base: 17px;
  --line-height-base: 1.75;
  --max-width: 1200px;
  --shadow-light: 0 3px 10px rgba(61, 74, 92, 0.08);
  --shadow-medium: 0 6px 20px rgba(61, 74, 92, 0.12);
  --shadow-soft: 0 2px 6px rgba(61, 74, 92, 0.06);
}

body {
  font-family: "Playfair Display", "Georgia", serif;
  line-height: var(--line-height-base);
  color: var(--text-dark);
  background-color: var(--bg-white);
  font-size: var(--font-size-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-base);
}

.header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 28px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-soft);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.logo {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.8px;
  font-family: "Playfair Display", serif;
  min-width: 0;
  flex-shrink: 1;
}

.logo-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 44px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 400;
  font-size: 16px;
  transition: var(--transition);
  position: relative;
  padding-bottom: 6px;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 7px;
  padding: 10px;
  flex-shrink: 0;
}

.burger-menu span {
  width: 28px;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition);
}

.hero {
  padding: 160px 0 120px;
  text-align: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 32px;
  letter-spacing: -0.8px;
  line-height: 1.25;
  font-family: "Playfair Display", serif;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto 52px;
  font-weight: 400;
  line-height: 1.85;
}

.btn {
  display: inline-block;
  padding: 18px 40px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
  border-radius: var(--border-radius);
  font-family: "Playfair Display", serif;
}

.btn:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.btn-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-secondary {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--bg-white);
}

.features {
  padding: 120px 0;
  background-color: var(--bg-white);
}

.features h2 {
  font-size: 44px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 80px;
  color: var(--text-dark);
  letter-spacing: -0.6px;
  font-family: "Playfair Display", serif;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 52px;
}

.feature-card {
  background-color: var(--bg-white);
  padding: 52px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-color);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 28px;
}

.feature-card h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.85;
}

.services-preview {
  padding: 120px 0;
  background-color: var(--bg-light);
}

.services-preview h2 {
  font-size: 44px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 80px;
  color: var(--text-dark);
  letter-spacing: -0.6px;
  font-family: "Playfair Display", serif;
}

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

.service-card {
  border: 1px solid var(--border-color);
  overflow: hidden;
  border-radius: var(--border-radius);
  background-color: var(--bg-white);
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.service-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card-content {
  padding: 40px;
}

.service-card h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.85;
}

.cooking-content {
  padding: 120px 0;
  background-color: var(--bg-white);
}

.cooking-content h2 {
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 52px;
  color: var(--text-dark);
  letter-spacing: -0.6px;
  font-family: "Playfair Display", serif;
}

.cooking-text {
  max-width: 900px;
}

.cooking-text h3 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
}

.cooking-text p {
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.85;
}

.benefits {
  padding: 120px 0;
  background-color: var(--bg-light);
}

.benefits h2 {
  font-size: 44px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 80px;
  color: var(--text-dark);
  letter-spacing: -0.6px;
  font-family: "Playfair Display", serif;
}

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

.benefit-item {
  padding: 40px 0;
  border-top: 2px solid var(--border-color);
  transition: var(--transition);
}

.benefit-item:hover {
  border-top-color: var(--accent-color);
  padding-left: 16px;
}

.benefit-item h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
}

.benefit-item p {
  color: var(--text-light);
  line-height: 1.85;
}

.process {
  padding: 120px 0;
  background-color: var(--bg-white);
}

.process h2 {
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 52px;
  color: var(--text-dark);
  letter-spacing: -0.6px;
  font-family: "Playfair Display", serif;
}

.process-content {
  max-width: 900px;
}

.process-text h3 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
}

.process-text p {
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.85;
}

.testimonials {
  padding: 120px 0;
  background-color: var(--bg-light);
}

.testimonials h2 {
  font-size: 44px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 80px;
  color: var(--text-dark);
  letter-spacing: -0.6px;
  font-family: "Playfair Display", serif;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 52px;
}

.testimonial-item {
  padding: 44px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.testimonial-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.testimonial-text {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
}

.cta {
  padding: 140px 0;
  text-align: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.cta h2 {
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--text-dark);
  letter-spacing: -0.6px;
  font-family: "Playfair Display", serif;
}

.cta p {
  font-size: 20px;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto 52px;
  line-height: 1.85;
}

.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.page-hero h1 {
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--text-dark);
  letter-spacing: -0.6px;
  font-family: "Playfair Display", serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.page-subtitle {
  font-size: 20px;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.85;
}

.about-content,
.mission {
  padding: 120px 0;
}

.about-text,
.mission-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-text h2,
.mission-content h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--text-dark);
  letter-spacing: -0.6px;
  font-family: "Playfair Display", serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.about-text p,
.mission-content p {
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.85;
}

.values {
  padding: 120px 0;
  background-color: var(--bg-light);
}

.values h2 {
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 80px;
  color: var(--text-dark);
  letter-spacing: -0.6px;
  font-family: "Playfair Display", serif;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 52px;
}

.value-item {
  padding: 44px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.value-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.value-item h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
}

.value-item p {
  color: var(--text-light);
  line-height: 1.85;
}

.services-content {
  padding: 120px 0;
}

.services-content h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 52px;
  color: var(--text-dark);
  letter-spacing: -0.6px;
  font-family: "Playfair Display", serif;
}

.service-detail {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-detail h3 {
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
}

.service-detail p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.85;
}

.service-detail ul {
  list-style: none;
  margin-top: 28px;
}

.service-detail li {
  color: var(--text-light);
  margin-bottom: 20px;
  padding-left: 32px;
  position: relative;
  line-height: 1.85;
}

.service-detail li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 500;
}

.contact-content {
  padding: 120px 0;
}

.contact-info {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
}

.contact-info h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 52px;
  color: var(--text-dark);
  letter-spacing: -0.6px;
  font-family: "Playfair Display", serif;
}

.contact-details {
  margin-bottom: 52px;
}

.contact-details p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.85;
  font-size: 18px;
}

.contact-form {
  max-width: 720px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 400;
  font-family: "Playfair Display", serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 16px;
  font-family: inherit;
  color: var(--text-dark);
  background-color: var(--bg-white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(61, 74, 92, 0.1);
}

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

.checkbox-group {
  margin-bottom: 32px;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.footer {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  padding: 100px 0 48px;
  margin-top: 120px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 52px;
  margin-bottom: 52px;
}

.footer-section h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
}

.footer-section p {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 12px;
  font-size: 16px;
}

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

.footer-section ul li {
  margin-bottom: 16px;
}

.footer-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 15px;
}

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .logo {
    font-size: 18px;
    max-width: calc(100% - 60px);
  }

  .logo-text {
    max-width: 100%;
  }

  .nav-menu {
    position: fixed;
    top: 88px;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 28px;
    border-bottom: 1px solid var(--border-color);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 28px;
    box-shadow: var(--shadow-medium);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .features h2,
  .services-preview h2,
  .benefits h2,
  .process h2,
  .testimonials h2,
  .cta h2 {
    font-size: 36px;
  }

  .features-grid,
  .services-grid,
  .benefits-grid,
  .values-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .container {
    padding: 0 24px;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .features,
  .services-preview,
  .cooking-content,
  .benefits,
  .process,
  .testimonials,
  .cta {
    padding: 80px 0;
  }

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

  .page-hero h1 {
    font-size: 40px;
  }

  .about-content,
  .mission,
  .values,
  .services-content,
  .contact-content {
    padding: 80px 0;
  }

  .about-text h2,
  .mission-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-base: 24px;
  }

  .logo {
    font-size: 16px;
    max-width: calc(100% - 60px);
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .btn {
    padding: 16px 32px;
    font-size: 15px;
  }

  .feature-card,
  .service-card-content,
  .value-item,
  .testimonial-item {
    padding: 36px;
  }

  .features h2,
  .services-preview h2,
  .benefits h2,
  .process h2,
  .testimonials h2,
  .cta h2 {
    font-size: 32px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .about-text h2,
  .mission-content h2 {
    font-size: 28px;
  }
}

