:root {
  /* Color Palette */
  --color-rich-black: #0D0D0D;
  --color-eerie-charcoal: #161A1D;
  --color-deep-graphite: #1F2428;
  --color-dark-slate: #232B34;
  --color-midnight-navy: #0B1221;
  
  /* Accent Colors */
  --color-fresh-cream: #F8F6F3;
  --color-soft-sage: #A8B89F;
  --color-warm-terracotta: #C5A491;
  --color-petal-white: #FDFCFB;
  --color-stem-green: #6B8E65;
  
  /* Typography Scale */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 50%;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 70px;
}

/* ========================================
   Reset & Base Styles
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--color-deep-graphite);
  background-color: var(--color-petal-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ========================================
   Container & Layout
   ======================================== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-padding {
  padding: var(--space-4xl) 0;
}

/* ========================================
   Header Navigation
   ======================================== */

.site-header {
  position: relative;
  background: linear-gradient(135deg, var(--color-rich-black) 0%, var(--color-eerie-charcoal) 100%);
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  position: relative;
}

.brand-logo a {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-petal-white);
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
}

.brand-logo a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-soft-sage);
  transition: width var(--transition-base);
}

.brand-logo a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  z-index: 1001;
}

.menu-toggle .bar {
  width: 25px;
  height: 2px;
  background-color: var(--color-petal-white);
  transition: all var(--transition-base);
}

.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-fresh-cream);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  position: relative;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-soft-sage);
  transition: width var(--transition-base);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 80%;
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-midnight-navy) 0%, var(--color-dark-slate) 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, transparent 30%, rgba(168, 184, 159, 0.05) 30%, rgba(168, 184, 159, 0.05) 70%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(107, 142, 101, 0.05) 30%, rgba(107, 142, 101, 0.05) 70%, transparent 70%);
  background-size: 60px 60px;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-petal-white);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--color-fresh-cream);
  margin-bottom: var(--space-2xl);
  font-weight: var(--font-weight-light);
}

.hero-actions {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-soft-sage);
  color: var(--color-rich-black);
}

.btn-primary:hover {
  background: var(--color-stem-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--color-petal-white);
  border: 2px solid var(--color-soft-sage);
}

.btn-secondary:hover {
  background: var(--color-soft-sage);
  color: var(--color-rich-black);
  transform: translateY(-2px);
}

.btn-large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--text-base);
}

/* ========================================
   Section Headers
   ======================================== */

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-stem-green);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-rich-black);
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.section-text {
  font-size: var(--text-base);
  color: var(--color-deep-graphite);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.section-header-center {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

/* ========================================
   Philosophy Section
   ======================================== */

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.grid-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.feature-icons {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.feature-item i {
  font-size: var(--text-2xl);
  color: var(--color-stem-green);
}

.feature-item span {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-deep-graphite);
}

/* ========================================
   Services Section
   ======================================== */

.services-section {
  background: linear-gradient(180deg, var(--color-petal-white) 0%, var(--color-fresh-cream) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(168, 184, 159, 0.2);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-soft-sage) 0%, var(--color-stem-green) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}

.service-icon i {
  font-size: var(--text-2xl);
  color: white;
}

.service-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-rich-black);
  margin-bottom: var(--space-md);
}

.service-description {
  font-size: var(--text-sm);
  color: var(--color-deep-graphite);
  line-height: 1.7;
}

/* ========================================
   Values Section
   ======================================== */

.values-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: start;
}

.values-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.value-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.value-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-soft-sage);
  line-height: 1;
  flex-shrink: 0;
}

.value-text h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-rich-black);
  margin-bottom: var(--space-sm);
}

.value-text p {
  font-size: var(--text-sm);
  color: var(--color-deep-graphite);
  line-height: 1.7;
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials-section {
  background: linear-gradient(180deg, var(--color-petal-white) 0%, var(--color-fresh-cream) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-soft-sage);
}

.testimonial-stars {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  color: var(--color-warm-terracotta);
}

.testimonial-text {
  font-size: var(--text-sm);
  color: var(--color-deep-graphite);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.testimonial-author strong {
  font-weight: var(--font-weight-semibold);
  color: var(--color-rich-black);
}

.testimonial-author span {
  font-size: var(--text-xs);
  color: var(--color-deep-graphite);
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
  background: linear-gradient(135deg, var(--color-midnight-navy) 0%, var(--color-dark-slate) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, transparent 30%, rgba(168, 184, 159, 0.03) 30%, rgba(168, 184, 159, 0.03) 70%, transparent 70%);
  background-size: 40px 40px;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-petal-white);
  margin-bottom: var(--space-lg);
}

.cta-text {
  font-size: var(--text-lg);
  color: var(--color-fresh-cream);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
  background: var(--color-rich-black);
  color: var(--color-fresh-cream);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-xl);
}

.footer-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-petal-white);
  margin-bottom: var(--space-sm);
}

.footer-text {
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-deep-graphite);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--color-soft-sage);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-petal-white);
  margin-bottom: var(--space-md);
}

.footer-list,
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  font-size: var(--text-sm);
}

.footer-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-list i {
  color: var(--color-soft-sage);
}

.footer-menu a {
  opacity: 0.8;
  transition: all var(--transition-base);
}

.footer-menu a:hover {
  opacity: 1;
  color: var(--color-soft-sage);
  padding-left: var(--space-xs);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(248, 246, 243, 0.1);
}

.copyright {
  font-size: var(--text-xs);
  opacity: 0.7;
}

/* ========================================
   Privacy Popup
   ======================================== */

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-rich-black);
  color: var(--color-petal-white);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  z-index: 9999;
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.privacy-text {
  font-size: var(--text-sm);
  line-height: 1.6;
}

.privacy-text a {
  color: var(--color-soft-sage);
  text-decoration: underline;
}

.privacy-accept {
  padding: var(--space-sm) var(--space-xl);
  background: var(--color-soft-sage);
  color: var(--color-rich-black);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-medium);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: all var(--transition-base);
}

.privacy-accept:hover {
  background: var(--color-stem-green);
}

/* ========================================
   Contact Form Styles
   ======================================== */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info {
  position: sticky;
  top: var(--space-xl);
}

.info-card {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-lg);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-soft-sage) 0%, var(--color-stem-green) 100%);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.info-icon i {
  color: white;
  font-size: var(--text-lg);
}

.info-details h3 {
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-rich-black);
  margin-bottom: var(--space-xs);
}

.info-details p,
.info-details a {
  font-size: var(--text-sm);
  color: var(--color-deep-graphite);
}

.map-container {
  margin-top: var(--space-xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

.contact-form-wrapper {
  background: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-rich-black);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-deep-graphite);
  background: var(--color-fresh-cream);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-soft-sage);
  background: white;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox-wrapper {
  display: flex;
  align-items: start;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.form-checkbox {
  margin-top: 4px;
  cursor: pointer;
}

.form-checkbox-label {
  font-size: var(--text-sm);
  color: var(--color-deep-graphite);
  cursor: pointer;
}

.form-checkbox-label a {
  color: var(--color-stem-green);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
}

/* ========================================
   Product Cards
   ======================================== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.product-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-details {
  padding: var(--space-lg);
}

.product-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-rich-black);
  margin-bottom: var(--space-sm);
}

.product-description {
  font-size: var(--text-sm);
  color: var(--color-deep-graphite);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-stem-green);
}

.product-action {
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-soft-sage);
  color: var(--color-rich-black);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-base);
}

.product-action:hover {
  background: var(--color-stem-green);
  color: white;
}

/* ========================================
   Thank You Page
   ======================================== */

.thankyou-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thankyou-content {
  max-width: 600px;
}

.thankyou-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-soft-sage) 0%, var(--color-stem-green) 100%);
  border-radius: var(--radius-full);
}

.thankyou-icon i {
  font-size: var(--text-4xl);
  color: white;
}

.thankyou-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-rich-black);
  margin-bottom: var(--space-lg);
}

.thankyou-message {
  font-size: var(--text-lg);
  color: var(--color-deep-graphite);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

/* ========================================
   404 Page
   ======================================== */

.error-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-content {
  max-width: 600px;
}

.error-code {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-soft-sage);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.error-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-rich-black);
  margin-bottom: var(--space-lg);
}

.error-message {
  font-size: var(--text-lg);
  color: var(--color-deep-graphite);
  margin-bottom: var(--space-2xl);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
  }
  
  .section-grid,
  .values-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .services-grid,
  .testimonials-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-eerie-charcoal);
    padding: var(--space-4xl) var(--space-xl);
    transition: right var(--transition-slow);
    box-shadow: var(--shadow-xl);
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: var(--space-lg);
    align-items: flex-start;
  }
  
  .hero-title {
    font-size: var(--text-3xl);
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .feature-icons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .privacy-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .privacy-accept {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --space-4xl: 3rem;
    --space-3xl: 2rem;
  }
  
  .container {
    width: 95%;
  }
  
  .brand-logo a {
    font-size: var(--text-lg);
  }
  
  .section-title {
    font-size: var(--text-2xl);
  }
  
  .btn {
    font-size: var(--text-xs);
    padding: var(--space-sm) var(--space-lg);
  }
  
  .service-card,
  .testimonial-card,
  .product-card {
    padding: var(--space-lg);
  }
}

@media (max-width: 320px) {
  :root {
    --text-xs: 0.65rem;
    --text-sm: 0.75rem;
    --text-base: 0.85rem;
    --text-lg: 1rem;
    --text-xl: 1.1rem;
    --text-2xl: 1.25rem;
    --text-3xl: 1.5rem;
    --text-4xl: 1.75rem;
    --text-5xl: 2rem;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 0.75rem;
    --space-lg: 1rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;
  }

  /* Containers & Layout */
  .container {
    width: 95%;
    padding: 0 var(--space-sm);
  }

  .section-padding {
    padding: var(--space-2xl) 0;
  }

  /* Header */
  .brand-logo a {
    font-size: var(--text-xl);
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    width: 100%;
    max-width: 100%;
    padding: var(--space-4xl) var(--space-md);
  }

  .nav-list {
    gap: var(--space-md);
  }

  /* Hero Section */
  .hero-title {
    font-size: var(--text-3xl);
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: var(--text-base);
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
  }

  /* Feature Icons */
  .feature-icons {
    flex-direction: column;
    gap: var(--space-md);
  }

  /* Grids */
  .section-grid,
  .values-wrapper,
  .contact-wrapper,
  .services-grid,
  .testimonials-grid,
  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  /* Buttons */
  .btn {
    font-size: var(--text-sm);
    padding: var(--space-sm) var(--space-md);
  }

  /* Cards */
  .service-card,
  .testimonial-card,
  .product-card {
    padding: var(--space-lg);
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  /* Privacy Popup */
  .privacy-content {
    flex-direction: column;
    gap: var(--space-md);
  }

  .privacy-accept {
    width: 100%;
  }

  /* Contact Form */
  .contact-form-wrapper,
  .contact-info {
    width: 100%;
    padding: var(--space-lg);
  }

  .form-input,
  .form-textarea {
    padding: var(--space-sm);
    font-size: var(--text-sm);
  }

  /* Product Cards */
  .product-image {
    height: 200px;
  }

  .product-details {
    padding: var(--space-md);
  }

  .product-name {
    font-size: var(--text-base);
  }

  .product-price {
    font-size: var(--text-xl);
  }

  .product-action {
    padding: var(--space-sm);
    font-size: var(--text-sm);
  }

  /* Thank You & Error Pages */
  .thankyou-title,
  .error-code {
    font-size: var(--text-3xl);
  }

  .thankyou-message,
  .error-message {
    font-size: var(--text-base);
  }
}
