*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #7c9473;
  --primary-dark: #5b7352;
  --primary-light: #b5ccb0;
  --primary-lighter: #e8f0e6;
  --secondary: #f5f0e8;
  --accent: #c5a572;
  --accent-light: #e8d5b5;
  --text: #2d3b2d;
  --text-light: #6b7b6b;
  --white: #fafaf7;
  --dark: #1e2d1e;
  --border: rgba(124, 148, 115, 0.2);
  --shadow-sm: 0 2px 8px rgba(44, 62, 45, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 62, 45, 0.1);
  --shadow-lg: 0 8px 40px rgba(44, 62, 45, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --transition: 0.3s ease;
  --container: 1100px;
}
html {
  scroll-behavior: smooth;
  font-size: 15px;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  transition: color var(--transition);
}
ul,
ol {
  list-style: none;
}
button {
  font-family: var(--font-body);
  cursor: pointer;
}
input,
textarea,
select {
  font-family: var(--font-body);
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
.site-header {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1140px;
  z-index: 1000;
  transition: all var(--transition);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 22px;
  background: rgba(250, 250, 247, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.site-header.header-hidden {
  transform: translateX(-50%) translateY(calc(-100% - 20px));
}
.site-header.header-scrolled .nav-container {
  background: rgba(250, 250, 247, 0.97);
  box-shadow: var(--shadow-md);
}
.brand {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--primary-lighter);
  color: var(--primary-dark);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}
.nav-toggle:hover {
  background: var(--primary-lighter);
}
body.nav-open .nav-container {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
body.nav-open .brand {
  color: var(--white);
}
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 45, 30, 0.97);
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.mobile-overlay.active .mobile-nav a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-overlay.active .mobile-nav a:nth-child(1) {
  transition-delay: 0.08s;
}
.mobile-overlay.active .mobile-nav a:nth-child(2) {
  transition-delay: 0.14s;
}
.mobile-overlay.active .mobile-nav a:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-overlay.active .mobile-nav a:nth-child(4) {
  transition-delay: 0.26s;
}
.mobile-overlay.active .mobile-nav a:nth-child(5) {
  transition-delay: 0.32s;
}
.mobile-nav a:hover {
  color: var(--primary-light);
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 80px;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 45, 30, 0.5),
    rgba(30, 45, 30, 0.68)
  );
  z-index: -1;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.hero h1 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.hero p {
  font-size: 0.95rem;
  color: rgba(250, 250, 247, 0.88);
  margin-bottom: 26px;
  line-height: 1.7;
}
.subpage-hero {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 50%,
    var(--primary-light) 100%
  );
  padding: 100px 20px 46px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -120px;
  right: -60px;
}
.subpage-hero::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  bottom: -80px;
  left: -40px;
}
.subpage-hero h1 {
  font-size: 2.1rem;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.subpage-hero p {
  color: rgba(250, 250, 247, 0.82);
  font-size: 0.9rem;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.72rem;
  position: relative;
  z-index: 1;
}
.breadcrumb a {
  color: rgba(250, 250, 247, 0.65);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb span {
  color: rgba(250, 250, 247, 0.35);
}
.breadcrumb span:last-child {
  color: rgba(250, 250, 247, 0.88);
}
.section {
  padding: 60px 20px;
}
.section-alt {
  background: var(--secondary);
}
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-primary {
  background: var(--primary);
  color: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 36px;
}
.section-header h2 {
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 8px;
}
.section-header p {
  color: var(--text-light);
  font-size: 0.85rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}
.section-dark .section-header h2,
.section-primary .section-header h2 {
  color: var(--white);
}
.section-dark .section-header p,
.section-primary .section-header p {
  color: rgba(250, 250, 247, 0.75);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-lighter);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.card h3 {
  font-size: 1.1rem;
  margin-bottom: 7px;
  color: var(--text);
}
.card p {
  color: var(--text-light);
  font-size: 0.8rem;
  line-height: 1.6;
}
.card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary-dark);
  text-decoration: none;
  margin-top: 12px;
  transition: gap var(--transition);
}
.card a.card-link:hover {
  gap: 8px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.product-card .product-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 14px;
}
.product-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--text);
}
.product-card .product-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.5;
}
.product-card .price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 10px 0 4px;
}
.product-card .price-note {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.product-card ul {
  text-align: left;
  margin: 0 0 18px;
  padding: 0;
}
.product-card ul li {
  font-size: 0.78rem;
  color: var(--text-light);
  padding: 5px 0;
  border-bottom: 1px solid rgba(124, 148, 115, 0.1);
  display: flex;
  align-items: center;
  gap: 7px;
}
.product-card ul li i {
  color: var(--primary);
  font-size: 0.65rem;
  flex-shrink: 0;
}
.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border);
}
.step {
  text-align: center;
  flex: 1;
  position: relative;
}
.step-number {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 auto 12px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.step h3 {
  font-size: 0.95rem;
  margin-bottom: 5px;
  color: var(--text);
}
.step p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.split-section img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.split-content h2 {
  font-size: 1.75rem;
  margin-bottom: 14px;
  color: var(--text);
}
.split-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 10px;
}
.feature-list {
  padding: 0;
  margin: 14px 0 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.82rem;
  color: var(--text);
}
.feature-list li i {
  color: var(--primary);
  margin-top: 3px;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.cta-section {
  text-align: center;
  padding: 60px 20px;
}
.cta-section h2 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}
.cta-section p {
  font-size: 0.88rem;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.section-dark .cta-section h2 {
  color: var(--white);
}
.section-dark .cta-section p {
  color: rgba(250, 250, 247, 0.75);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1.4;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-sm {
  padding: 7px 16px;
  font-size: 0.75rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.contact-form-wrap h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: var(--text);
}
.contact-form-wrap .form-subtitle {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 148, 115, 0.1);
}
.form-group textarea {
  height: 90px;
  resize: vertical;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}
.checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--primary);
  flex-shrink: 0;
}
.checkbox-group label {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
  cursor: pointer;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  transition: all var(--transition);
}
.info-card:hover {
  box-shadow: var(--shadow-sm);
}
.info-card-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-lighter);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.info-card h3 {
  font-size: 0.95rem;
  margin-bottom: 3px;
  color: var(--text);
}
.info-card p,
.info-card a {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: none;
  line-height: 1.5;
}
.info-card a:hover {
  color: var(--primary);
}
.map-wrap {
  width: 100%;
}
.map-wrap iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
  border-radius: var(--radius-md);
}
.site-footer {
  background: var(--dark);
  color: rgba(250, 250, 247, 0.7);
  padding: 28px 20px 18px;
}
.footer-content {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.footer-contact {
  font-size: 0.72rem;
  margin-bottom: 3px;
  color: rgba(250, 250, 247, 0.55);
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 12px 0;
}
.footer-links a {
  font-size: 0.7rem;
  color: rgba(250, 250, 247, 0.5);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--primary-light);
}
.copyright {
  font-size: 0.68rem;
  color: rgba(250, 250, 247, 0.35);
  padding-top: 12px;
  border-top: 1px solid rgba(250, 250, 247, 0.07);
}
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-popup.active {
  transform: translateY(0);
}
.cookie-content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-content p {
  font-size: 0.76rem;
  color: rgba(250, 250, 247, 0.78);
  flex: 1;
  min-width: 200px;
  line-height: 1.5;
}
.cookie-content p a {
  color: var(--primary-light);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.message-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}
.message-content {
  max-width: 420px;
}
.message-content .message-icon {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 18px;
}
.message-content h1 {
  font-size: 1.9rem;
  color: var(--text);
  margin-bottom: 10px;
}
.message-content p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 22px;
  line-height: 1.6;
}
.policy-page {
  padding: 50px 20px 60px;
}
.policy-inner {
  max-width: 780px;
  margin: 0 auto;
}
.policy-inner h1 {
  font-size: 1.7rem;
  margin-bottom: 6px;
  color: var(--text);
}
.policy-inner .policy-date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 28px;
}
.policy-inner h2 {
  font-size: 1.25rem;
  margin: 26px 0 8px;
  color: var(--text);
}
.policy-inner h3 {
  font-size: 1.05rem;
  margin: 18px 0 6px;
  color: var(--text);
}
.policy-inner p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 10px;
}
.policy-inner ul {
  margin: 8px 0 14px 18px;
  padding: 0;
  list-style: disc;
}
.policy-inner ul li {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 3px;
}
.policy-inner a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.policy-inner a:hover {
  color: var(--primary);
}
.icon-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  text-align: center;
  padding: 18px 12px;
}
.icon-item i {
  font-size: 1.4rem;
  color: var(--primary);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-lighter);
  border-radius: 50%;
}
.icon-item h3 {
  font-size: 0.9rem;
  color: var(--text);
}
.icon-item p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.tip-card {
  padding: 20px;
  border-left: 3px solid var(--primary);
  background: var(--white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-sm);
}
.tip-card h3 {
  font-size: 0.95rem;
  margin-bottom: 5px;
  color: var(--text);
}
.tip-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.value-card {
  text-align: center;
  padding: 24px 18px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.value-card i {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.value-card h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--text);
}
.value-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.story-text h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text);
}
.story-text p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 8px;
}
.story-stats {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}
.stat {
  text-align: center;
}
.stat .stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}
.stat .stat-label {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 2px;
}
.contact-hero-content {
  max-width: 500px;
  margin: 0 auto;
}
.contact-theme-icon {
  font-size: 2rem;
  color: rgba(250, 250, 247, 0.3);
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .card-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split-section,
  .story-block {
    grid-template-columns: 1fr;
  }
  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
  }
  .process-steps::before {
    display: none;
  }
  .step {
    min-width: 140px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tips-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero {
    min-height: 85vh;
    padding: 90px 20px 60px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .section-header h2 {
    font-size: 1.45rem;
  }
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  .step {
    width: 100%;
    max-width: 260px;
  }
  .subpage-hero {
    padding: 85px 16px 36px;
  }
  .subpage-hero h1 {
    font-size: 1.6rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 44px 16px;
  }
  .split-section {
    gap: 24px;
  }
  .story-stats {
    justify-content: center;
  }
  .icon-row {
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 0.85rem;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-buttons {
    justify-content: center;
  }
  .site-header {
    width: calc(100% - 20px);
    top: 6px;
  }
  .nav-container {
    padding: 7px 14px;
  }
  .brand {
    font-size: 0.95rem;
  }
  .btn {
    padding: 9px 18px;
    font-size: 0.78rem;
  }
  .section {
    padding: 36px 14px;
  }
  .footer-links {
    gap: 5px 10px;
  }
  .map-wrap iframe {
    height: 220px;
    border-radius: var(--radius-sm);
  }
  .mobile-nav a {
    font-size: 1.4rem;
  }
}
@media (max-width: 320px) {
  .brand {
    font-size: 0.82rem;
  }
  .hero h1 {
    font-size: 1.25rem;
  }
  .btn {
    padding: 8px 14px;
    font-size: 0.74rem;
  }
  .section-header h2 {
    font-size: 1.2rem;
  }
  .nav-container {
    padding: 6px 10px;
  }
  .product-card {
    padding: 20px 14px;
  }
}
