*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #8b4557;
  --secondary: #d4a574;
  --accent: #2c3e50;
  --light: #fdf6f0;
  --dark: #1a1a1a;
  --text: #333;
  --white: #fff;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}
html {
  scroll-behavior: smooth;
  font-size: 14px;
}
body {
  font-family: "Nunito", sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
  min-width: 320px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.2;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: #6d3645;
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}
.section {
  padding: 50px 0;
}
.section-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
  color: var(--accent);
}
.section-title span {
  color: var(--primary);
}
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(253, 246, 240, 0.98);
  backdrop-filter: blur(10px);
}
.header.visible {
  transform: translateY(0);
}
.header.at-top {
  transform: translateY(0);
  background: transparent;
  backdrop-filter: none;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}
.logo span {
  color: var(--accent);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
}
.nav-menu a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  position: relative;
  padding: 5px 0;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--light) 0%, #e8ddd4 100%);
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(139, 69, 87, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-text h1 {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 15px;
}
.hero-text h1 span {
  color: var(--primary);
}
.hero-text p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #555;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
}
.hero-image img {
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.hero-image::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--secondary);
  border-radius: 12px;
  z-index: -1;
}
.features {
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.feature-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  transition: var(--transition);
  background: var(--light);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--accent);
}
.feature-card p {
  font-size: 0.85rem;
  color: #666;
}
.about-preview {
  background: linear-gradient(135deg, #f5ede8 0%, var(--light) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-image img {
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--accent);
}
.about-text p {
  margin-bottom: 15px;
  color: #555;
  font-size: 0.9rem;
}
.about-list {
  margin: 20px 0;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}
.about-list i {
  color: var(--primary);
  font-size: 1rem;
}
.products {
  background: var(--white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.product-card {
  background: var(--light);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.product-image {
  height: 180px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image i {
  font-size: 3rem;
  color: var(--white);
  opacity: 0.8;
}
.product-info {
  padding: 20px;
}
.product-info h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--accent);
}
.product-info p {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 12px;
}
.product-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}
.product-price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: #888;
}
.testimonials {
  background: var(--light);
}
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.testimonial-card {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
  font-size: 0.9rem;
  position: relative;
  padding-left: 25px;
}
.testimonial-text::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-size: 1rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-info h4 {
  font-size: 0.9rem;
  color: var(--accent);
}
.testimonial-info span {
  font-size: 0.75rem;
  color: #888;
}
.cta {
  background: linear-gradient(135deg, var(--primary), #6d3645);
  color: var(--white);
  text-align: center;
}
.cta h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--white);
}
.cta p {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 0.9rem;
}
.cta .btn-primary {
  background: var(--white);
  color: var(--primary);
}
.cta .btn-primary:hover {
  background: var(--secondary);
  color: var(--white);
}
.footer {
  background: var(--accent);
  color: var(--white);
  padding: 35px 0 20px;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 25px;
}
.footer-brand h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 12px;
}
.footer-contact p {
  font-size: 0.8rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact i {
  color: var(--secondary);
  width: 16px;
}
.footer-links h4,
.footer-hours h4 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--secondary);
}
.footer-links ul li {
  margin-bottom: 6px;
}
.footer-links a {
  font-size: 0.8rem;
  opacity: 0.8;
  transition: var(--transition);
}
.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
}
.footer-hours p {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.75rem;
  opacity: 0.7;
}
.policy-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.policy-links a {
  font-size: 0.75rem;
  opacity: 0.7;
  transition: var(--transition);
}
.policy-links a:hover {
  opacity: 1;
  color: var(--secondary);
}
.page-hero {
  background: linear-gradient(135deg, var(--primary), #6d3645);
  color: var(--white);
  padding: 100px 0 50px;
  text-align: center;
}
.page-hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.page-hero p {
  opacity: 0.9;
  font-size: 0.9rem;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 0.8rem;
}
.breadcrumb a {
  opacity: 0.8;
}
.breadcrumb a:hover {
  opacity: 1;
}
.breadcrumb span {
  opacity: 0.6;
}
.content-section {
  background: var(--white);
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.content-text h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--accent);
}
.content-text p {
  margin-bottom: 12px;
  color: #555;
  font-size: 0.9rem;
}
.content-image img {
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.techniques-list {
  background: var(--light);
}
.techniques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.technique-item {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
}
.technique-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.technique-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.technique-item h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--accent);
}
.technique-item p {
  font-size: 0.8rem;
  color: #666;
}
.process-section {
  background: var(--white);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-step {
  text-align: center;
  padding: 20px;
  position: relative;
}
.process-step::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: var(--secondary);
}
.process-step:last-child::after {
  display: none;
}
.step-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.process-step h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--accent);
}
.process-step p {
  font-size: 0.8rem;
  color: #666;
}
.team-section {
  background: var(--light);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.team-member {
  background: var(--white);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: var(--transition);
}
.team-member:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
}
.team-member h3 {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 5px;
}
.team-member span {
  font-size: 0.8rem;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}
.team-member p {
  font-size: 0.8rem;
  color: #666;
}
.contact-section {
  background: var(--white);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-form-container {
  background: linear-gradient(135deg, var(--light), #fff);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.contact-form-container h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--accent);
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e8ddd4;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}
.form-checkbox label {
  font-size: 0.8rem;
  font-weight: 400;
  color: #555;
}
.form-checkbox a {
  color: var(--primary);
  text-decoration: underline;
}
.contact-info-container h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--accent);
}
.contact-info-grid {
  display: grid;
  gap: 15px;
  margin-bottom: 25px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: var(--light);
  border-radius: 8px;
  transition: var(--transition);
}
.contact-info-item:hover {
  background: #e8ddd4;
}
.contact-info-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 3px;
}
.contact-info-item p {
  font-size: 0.85rem;
  color: #666;
}
.map-container {
  border-radius: 10px;
  overflow: hidden;
  height: 200px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.policy-section {
  background: var(--white);
}
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}
.policy-content h2 {
  font-size: 1.4rem;
  margin: 30px 0 15px;
  color: var(--accent);
}
.policy-content h3 {
  font-size: 1.1rem;
  margin: 20px 0 10px;
  color: var(--primary);
}
.policy-content p {
  margin-bottom: 12px;
  color: #555;
  font-size: 0.9rem;
  text-align: justify;
}
.policy-content ul {
  margin: 15px 0;
  padding-left: 20px;
}
.policy-content li {
  margin-bottom: 8px;
  color: #555;
  font-size: 0.9rem;
  position: relative;
  padding-left: 15px;
}
.policy-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.page-full {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 15px;
}
.page-full-content i {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 20px;
}
.page-full-content h1 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 15px;
}
.page-full-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 25px;
  max-width: 500px;
}
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  color: var(--white);
  padding: 15px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-popup.show {
  transform: translateY(0);
}
.cookie-content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-content p {
  font-size: 0.85rem;
  flex: 1;
}
.cookie-content a {
  color: var(--secondary);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-buttons .btn {
  padding: 8px 20px;
  font-size: 0.8rem;
}
.designs-gallery {
  background: var(--light);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow);
}
.gallery-image {
  height: 160px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-image i {
  font-size: 2.5rem;
  color: var(--white);
  opacity: 0.8;
}
.gallery-info {
  padding: 15px;
}
.gallery-info h3 {
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 5px;
}
.gallery-info p {
  font-size: 0.8rem;
  color: #666;
}
.values-section {
  background: var(--white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  text-align: center;
  padding: 25px 15px;
  background: var(--light);
  border-radius: 10px;
  transition: var(--transition);
}
.value-card:hover {
  background: #e8ddd4;
}
.value-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.value-card h3 {
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.8rem;
  color: #666;
}
.timeline-section {
  background: var(--light);
}
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}
.timeline-content {
  width: 45%;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.timeline-content h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 5px;
}
.timeline-content p {
  font-size: 0.85rem;
  color: #666;
}
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .content-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
  .techniques-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step::after {
    display: none;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: row;
    justify-content: flex-end;
  }
  .timeline-content {
    width: calc(100% - 50px);
  }
  .timeline-dot {
    left: 20px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 13px;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--light);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: none;
  }
  .nav-menu.active {
    right: 0;
    display: flex;
  }
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
  .techniques-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 12px;
  }
  .section {
    padding: 40px 0;
  }
  .hero-text h1 {
    font-size: 1.9rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  .page-hero {
    padding: 80px 0 40px;
  }
  .page-hero h1 {
    font-size: 1.6rem;
  }
}
@media (max-width: 320px) {
  html {
    font-size: 11px;
  }
  .container {
    padding: 0 10px;
  }
  .hero-text h1 {
    font-size: 1.7rem;
  }
}
