:root {
  --color-cream: #FDF8F3;
  --color-charcoal: #2B2B2B;
  --color-terracotta: #D97D5F;
  --color-teal: #5B8C8A;
  --color-mustard: #E6C07A;
  --color-magenta: #D46FA6;
  
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Lato', sans-serif;
  
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  --transition-fast: 0.3s ease;
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
  margin-bottom: var(--space-md);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--color-cream) 0%, rgba(253, 248, 243, 0.95) 100%);
  backdrop-filter: blur(10px);
  padding: var(--space-md) var(--space-lg);
  transition: transform var(--transition-smooth), box-shadow var(--transition-fast);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0 var(--space-md);
}

.brand-identity {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-charcoal);
  letter-spacing: 0.5px;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.main-navigation {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-charcoal);
  position: relative;
  padding: var(--space-sm) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-magenta));
  transition: width var(--transition-fast);
}

.nav-link.active::after {
  width: 100%;
}

.burger-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: var(--space-sm);
  cursor: pointer;
  z-index: 1001;
}

.burger-line {
  width: 28px;
  height: 3px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.burger-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}


.mobile-nav-overlay {
  display: block;
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, var(--color-charcoal) 0%, rgba(43, 43, 43, 0.98) 100%);
  padding: 0;
  margin-top: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav-overlay.active {
  opacity: 1;
  max-height: 800px;
  padding: var(--space-xxl) var(--space-lg);
  overflow: visible;
  animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.mobile-nav-menu li {
  width: 100%;
  max-width: 400px;
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active .mobile-nav-menu li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-menu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-menu li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-menu li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-menu li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-menu li:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav-menu li:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-cream);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(217, 125, 95, 0.2), transparent);
  transition: left 0.5s ease;
}


.mobile-nav-link:active {
  transform: scale(0.98);
}

.hero-primary {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  overflow-y: visible;
  padding: var(--space-xxl) var(--space-lg);
  margin-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(253, 248, 243, 0.9) 0%, rgba(91, 140, 138, 0.15) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-charcoal);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  overflow-y: visible;
}

.btn-primary {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-magenta));
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}


.btn-secondary {
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--color-charcoal);
  font-weight: 600;
  font-size: 1.05rem;
  border: 2px solid var(--color-charcoal);
  border-radius: var(--radius-lg);
  transition: var(--transition-fast);
}


.content-section {
  padding: var(--space-xxl) var(--space-lg);
  position: relative;
  overflow-y: visible;
  overflow-x: hidden;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow-y: visible;
  overflow-x: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-subtitle {
  color: var(--color-teal);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.section-divider {
  width: 120px;
  height: 3px;
  background: transparent;
  margin: var(--space-lg) auto;
  border-bottom: 3px dashed var(--color-charcoal);
  position: relative;
  transform: rotate(-0.5deg);
}

.section-divider::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -8px;
  width: 96px;
  height: 5px;
  border: 1px dashed var(--color-terracotta);
  opacity: 0.25;
  border-radius: 2px;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: 1px;
  right: -8px;
  width: 96px;
  height: 5px;
  border: 1px dotted var(--color-mustard);
  opacity: 0.25;
  border-radius: 2px;
}

.grid-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  overflow-y: visible;
}

.grid-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  overflow-y: visible;
}

.asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  overflow-y: visible;
}

.grid-item-large {
  grid-column: span 8;
}

.grid-item-medium {
  grid-column: span 4;
}

.grid-item-small {
  grid-column: span 6;
}

.product-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  border: 1px solid transparent;
}

.product-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px dashed var(--color-teal);
  border-radius: var(--radius-md);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  z-index: -1;
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  overflow-y: hidden;
  overflow-x: hidden;
  aspect-ratio: 3 / 4;
  touch-action: none;
  -webkit-overflow-scrolling: touch;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
  touch-action: none;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 111, 166, 0.8) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
}

.product-details {
  padding: var(--space-lg);
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-charcoal);
}

.product-description {
  color: rgba(43, 43, 43, 0.7);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-terracotta);
  font-family: var(--font-heading);
}

.product-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--color-mustard);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
}

.feature-card {
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  border-top: 3px solid transparent;
  overflow-y: visible;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-magenta));
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.feature-icon {
  font-size: 3rem;
  color: var(--color-teal);
  margin-bottom: var(--space-md);
  display: inline-block;
  transition: var(--transition-fast);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-charcoal);
}

.feature-text {
  color: rgba(43, 43, 43, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
  overflow-y: visible;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  overflow-y: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  cursor: pointer;
  touch-action: none;
  -webkit-overflow-scrolling: touch;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
  touch-action: none;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent, rgba(43, 43, 43, 0.9));
  color: white;
  padding: var(--space-lg);
  transform: translateY(100%);
  transition: transform var(--transition-fast);
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
  margin-top: var(--space-xl);
  overflow-y: visible;
}

.story-content {
  overflow-y: visible;
}

.story-content h3 {
  margin-bottom: var(--space-lg);
  color: var(--color-charcoal);
}

.story-content p {
  margin-bottom: var(--space-md);
  color: rgba(43, 43, 43, 0.8);
}

.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  overflow-y: visible;
}

.story-image-main {
  grid-column: span 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  overflow-y: hidden;
  overflow-x: hidden;
  box-shadow: var(--shadow-soft);
  touch-action: none;
  -webkit-overflow-scrolling: touch;
}

.story-image-small {
  border-radius: var(--radius-md);
  overflow: hidden;
  overflow-y: hidden;
  overflow-x: hidden;
  box-shadow: var(--shadow-soft);
  touch-action: none;
  -webkit-overflow-scrolling: touch;
}

.story-image-main img,
.story-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  touch-action: none;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  margin-top: var(--space-xl);
  overflow-y: visible;
}

.form-container {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow-y: visible;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--color-charcoal);
  font-size: 1rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid rgba(43, 43, 43, 0.1);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-fast);
  background: var(--color-cream);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  background: white;
}

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

.form-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-checkbox {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 0.9rem;
  color: rgba(43, 43, 43, 0.7);
  line-height: 1.4;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--color-teal), var(--color-terracotta));
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}


.form-error {
  color: var(--color-terracotta);
  font-size: 0.85rem;
  margin-top: var(--space-xs);
  display: none;
}

.form-group.error .form-error {
  display: block;
}

.form-group.error .form-input,
.form-group.error .form-textarea {
  border-color: var(--color-terracotta);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  overflow-y: visible;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-icon {
  font-size: 2rem;
  color: var(--color-teal);
  flex-shrink: 0;
}

.contact-text h4 {
  margin-bottom: var(--space-sm);
  color: var(--color-charcoal);
}

.contact-text p {
  color: rgba(43, 43, 43, 0.7);
  margin: 0;
}

.map-container {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  overflow-y: visible;
  box-shadow: var(--shadow-soft);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.site-footer {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, rgba(43, 43, 43, 0.95) 100%);
  color: var(--color-cream);
  padding: var(--space-xl) var(--space-lg);
  margin-top: var(--space-xxl);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-mustard), var(--color-magenta));
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.footer-section h4 {
  white-space: nowrap;
  word-break: keep-all;
  margin-bottom: var(--space-md);
  color: var(--color-mustard);
  font-family: var(--font-heading);
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  color: rgba(253, 248, 243, 0.8);
  transition: var(--transition-fast);
  display: inline-block;
}


.footer-bottom {
  max-width: 1400px;
  margin: var(--space-xl) auto 0;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(253, 248, 243, 0.2);
  text-align: center;
  color: rgba(253, 248, 243, 0.6);
  font-size: 0.9rem;
}

.privacy-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(43, 43, 43, 0.9);
  z-index: 2000;
  padding: var(--space-lg);
  overflow-y: auto;
}

.privacy-popup.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-content {
  background: var(--color-cream);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-hover);
}

.privacy-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--color-charcoal);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}


.thankyou-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  overflow-y: visible;
}

.thankyou-content {
  max-width: 600px;
  overflow-y: visible;
}

.thankyou-icon {
  font-size: 5rem;
  color: var(--color-teal);
  margin-bottom: var(--space-lg);
  animation: scaleIn 0.5s ease-out;
}

.thankyou-title {
  color: var(--color-charcoal);
  margin-bottom: var(--space-md);
}

.thankyou-message {
  color: rgba(43, 43, 43, 0.7);
  font-size: 1.2rem;
  margin-bottom: var(--space-xl);
}

.error-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  overflow-y: visible;
}

.error-content {
  max-width: 600px;
  overflow-y: visible;
}

.error-code {
  font-size: 8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.error-title {
  color: var(--color-charcoal);
  margin-bottom: var(--space-md);
}

.error-message {
  color: rgba(43, 43, 43, 0.7);
  font-size: 1.2rem;
  margin-bottom: var(--space-xl);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  overflow-y: visible;
}

.policy-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-charcoal);
}

.policy-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-teal);
}

.policy-content ul {
  list-style: disc;
  margin-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.policy-content li {
  margin-bottom: var(--space-sm);
  color: rgba(43, 43, 43, 0.8);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.stagger-animation > * {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }


.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: visible;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  overflow-y: visible;
}

@media (max-width: 1025px) {
  body {
    overflow-x: hidden;
  }
  
  .site-header {
    padding: var(--space-md) var(--space-md);
    box-sizing: border-box;
  }
  
  .content-section {
    padding: var(--space-xxl) var(--space-md);
    box-sizing: border-box;
    width: 100%;
    overflow-y: visible;
    overflow-x: hidden;
  }
  
  .hero-primary {
    padding: var(--space-xxl) var(--space-md);
    box-sizing: border-box;
    width: 100%;
  }
  
  .section-container,
  .header-container,
  .footer-container {
    max-width: 100%;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
    box-sizing: border-box;
  }
  
  .asymmetric-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  
  .grid-item-large,
  .grid-item-medium,
  .grid-item-small {
    grid-column: span 1;
  }
  
  .story-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    width: 100%;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    width: 100%;
  }
  
  .grid-showcase,
  .grid-masonry {
    width: 100%;
  }
  
  .form-container,
  .privacy-content {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (min-width: 1053px) {
  .mobile-nav-overlay {
    display: none !important;
  }
}

@media (max-width: 1052px) {
  .nav-menu {
    display: none;
  }
  
  .burger-toggle {
    display: flex;
  }
  
  .mobile-nav-overlay {
    display: block;
  }
  
  .grid-showcase,
  .grid-masonry {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  
  .hero-primary {
    min-height: 70vh;
    padding: var(--space-xl) var(--space-md);
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .grid-showcase .feature-card img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
  }
  
  .grid-showcase {
    justify-items: center;
  }
  
  .feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }
  
  .feature-card img {
    margin: 0 auto var(--space-md) auto;
  }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 2rem;
    --space-xxl: 3rem;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .product-details {
    padding: var(--space-md);
  }
  
  .feature-card {
    padding: var(--space-lg);
  }
  
  .form-container {
    padding: var(--space-lg);
  }
  
  .privacy-content {
    padding: var(--space-lg);
  }
  
  .error-code {
    font-size: 5rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
    overflow-x: hidden;
  }
  
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }
  
  :root {
    --space-lg: 1rem;
    --space-xl: 1.5rem;
    --space-xxl: 2rem;
  }
  
  .site-header {
    padding: var(--space-sm) var(--space-sm);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .header-container {
    padding: 0 var(--space-xs);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .brand-identity {
    font-size: 1.1rem;
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .main-navigation {
    gap: var(--space-xs);
  }
  
  .content-section {
    padding: var(--space-xl) var(--space-sm);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible;
  }
  
  .hero-primary {
    padding: var(--space-xl) var(--space-sm);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  .section-container {
    width: 100%;
    max-width: 100%;
    padding: 0 var(--space-xs);
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: auto;
    touch-action: none;
  }

  .product-image-wrapper,
  .gallery-item,
  .story-image-main,
  .story-image-small {
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    touch-action: none !important;
    -webkit-overflow-scrolling: auto;
  }

  .product-image,
  .gallery-item img,
  .story-image-main img,
  .story-image-small img {
    touch-action: none;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
  }

  .gallery-item {
    touch-action: none !important;
    -webkit-overflow-scrolling: auto;
    overflow: hidden !important;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
  }

  .gallery-item img {
    touch-action: none !important;
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
  }
  
  .form-container {
    padding: var(--space-md);
    width: 100%;
    box-sizing: border-box;
  }
  
  .privacy-content {
    padding: var(--space-md);
    width: 100%;
    box-sizing: border-box;
  }
  
  .mobile-nav-container {
    width: 100%;
    padding: var(--space-lg) var(--space-md);
    box-sizing: border-box;
    max-width: 100%;
  }
  
  .mobile-nav-overlay {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .mobile-nav-overlay.active {
    padding: var(--space-xxl) var(--space-md);
  }
  
  .mobile-nav-menu {
    padding: var(--space-sm) 0;
    gap: var(--space-md);
    width: 100%;
  }
  
  .mobile-nav-menu li {
    max-width: 100%;
    width: 100%;
    padding: 0 var(--space-xs);
  }
  
  .mobile-nav-link {
    padding: var(--space-lg) var(--space-md);
    font-size: 1.4rem;
    width: 100%;
    margin: 0 auto;
  }
  
  .footer-container {
    padding: 0 var(--space-sm);
    width: 100%;
    box-sizing: border-box;
  }
  
  .site-footer {
    padding: var(--space-lg) var(--space-sm);
    width: 100%;
    box-sizing: border-box;
  }
  
  .grid-showcase,
  .grid-masonry,
  .gallery-grid {
    gap: var(--space-md);
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
  }
  
  .hero-cta {
    width: 100%;
    gap: var(--space-sm);
  }
  
  .contact-wrapper {
    width: 100%;
    gap: var(--space-lg);
  }
  
  .story-layout {
    width: 100%;
    gap: var(--space-lg);
  }
}

@media (hover: hover) {
  .nav-link:hover::after {
    width: 100%;
  }

  .mobile-nav-link:hover::before {
    left: 100%;
  }

  .mobile-nav-link:hover {
    color: var(--color-terracotta);
    background: rgba(217, 125, 95, 0.15);
    transform: scale(1.02);
  }

  .btn-primary:hover::before {
    left: 100%;
  }

  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
  }

  .btn-secondary:hover {
    background: var(--color-charcoal);
    color: var(--color-cream);
    transform: translateY(-3px);
  }

  .product-card:hover::before {
    opacity: 0.15;
  }

  .product-card:hover {
    transform: translateY(-8px) rotate(0.3deg);
    box-shadow: var(--shadow-hover);
    border: 2px dashed var(--color-teal);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(91, 140, 138, 0.02) 0%, rgba(230, 192, 122, 0.02) 100%);
  }

  .product-card:hover .product-image {
    transform: scale(1.05);
  }

  .product-card:hover .product-overlay {
    opacity: 1;
  }

  .feature-card:hover::after {
    opacity: 1;
  }

  .feature-card:hover {
    transform: translateY(-5px) rotate(-0.2deg);
    box-shadow: var(--shadow-hover);
    border: 2px dashed var(--color-teal);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(91, 140, 138, 0.03) 0%, rgba(230, 192, 122, 0.03) 100%);
  }

  .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--color-magenta);
  }

  .gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
  }

  .gallery-item:hover .gallery-caption {
    transform: translateY(0);
  }

  .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
  }

  .footer-link:hover {
    color: var(--color-terracotta);
    transform: translateX(5px);
  }

  .privacy-close:hover {
    background: var(--color-terracotta);
    transform: rotate(90deg);
  }
}
