@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Syne:wght@400;500;600;700&display=swap');

:root {
  --color-slate: #4a5568;
  --color-slate-dark: #2d3748;
  --color-slate-light: #718096;
  --color-sand: #d4a574;
  --color-sand-light: #e8d4b8;
  --color-cream: #faf8f5;
  --color-cream-dark: #f0ebe3;
  --color-ochre: #c45d35;
  --color-ochre-dark: #a04a2a;
  --color-white: #ffffff;
  --color-black: #1a1a1a;
  --font-primary: 'Space Grotesk', sans-serif;
  --font-accent: 'Syne', sans-serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 50%;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.12);
  --shadow-float: 0 15px 35px rgba(0,0,0,0.15);
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --max-width: 75rem;
  --header-height: 4rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-slate-dark);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-accent);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-slate-dark);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.375rem, 3vw, 1.875rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-ochre);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-ochre-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--color-slate);
  color: var(--color-white);
}

.btn-secondary:hover {
  background: var(--color-slate-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-slate);
  color: var(--color-slate);
}

.btn-outline:hover {
  background: var(--color-slate);
  color: var(--color-white);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  max-width: 60rem;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-accent);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-slate-dark);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--color-ochre);
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: var(--space-lg);
}

.nav-desktop a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-slate);
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-ochre);
  transition: width var(--transition-base);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-sm);
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-slate-dark);
  transition: all var(--transition-base);
  transform-origin: center;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background: var(--color-white);
  padding: 0 var(--space-xl);
  padding-top: calc(var(--header-height) + var(--space-lg));
  padding-bottom: var(--space-3xl);
  transition: max-height var(--transition-base);
  z-index: 999;
  box-shadow: var(--shadow-xl);
  display: none;
}

.mobile-nav.active {
  max-height: 100vh;
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  padding: var(--space-sm) 0;
  color: var(--color-slate-dark);
  border-bottom: 1px solid var(--color-cream-dark);
}

.mobile-nav a:hover {
  color: var(--color-ochre);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 998;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: linear-gradient(135deg, var(--color-sand-light) 0%, var(--color-cream) 100%);
  border-radius: 0 0 0 40%;
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-text {
  max-width: 32rem;
}

.hero-badge {
  display: inline-block;
  background: var(--color-sand-light);
  color: var(--color-slate-dark);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  margin-bottom: var(--space-md);
}

.hero-desc {
  color: var(--color-slate);
  margin-bottom: var(--space-lg);
  font-size: 0.9375rem;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  transform: rotate(2deg);
}

.hero-image-wrapper img {
  width: 100%;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-ochre) 0%, transparent 50%);
  opacity: 0.1;
  z-index: 1;
}

.hero-float {
  position: absolute;
  background: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  font-size: 0.75rem;
  font-weight: 500;
}

.hero-float-1 {
  top: 10%;
  left: -10%;
  transform: rotate(-5deg);
}

.hero-float-2 {
  bottom: 15%;
  right: -5%;
  transform: rotate(3deg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto var(--space-2xl);
}

.section-tag {
  display: inline-block;
  color: var(--color-ochre);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-desc {
  color: var(--color-slate);
  font-size: 0.9375rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-card {
  position: relative;
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-ochre);
  transition: height var(--transition-base);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  color: var(--color-ochre);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.service-title {
  margin-bottom: var(--space-sm);
}

.service-desc {
  color: var(--color-slate);
  font-size: 0.875rem;
}

.features-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.feature-main {
  background: linear-gradient(135deg, var(--color-slate-dark) 0%, var(--color-slate) 100%);
  color: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  position: relative;
  overflow: hidden;
}

.feature-main::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 100%;
  background: var(--color-ochre);
  opacity: 0.1;
  border-radius: 50%;
}

.feature-main h3 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.feature-main p {
  opacity: 0.9;
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
}

.feature-list i {
  color: var(--color-sand);
}

.feature-side {
  display: grid;
  gap: var(--space-md);
}

.feature-item {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.feature-item i {
  font-size: 1.25rem;
  color: var(--color-ochre);
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 0.9375rem;
  margin-bottom: var(--space-xs);
}

.feature-item p {
  font-size: 0.8125rem;
  color: var(--color-slate);
}

.process-timeline {
  position: relative;
  padding-left: var(--space-xl);
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0.625rem;
  width: 2px;
  height: 100%;
  background: var(--color-sand-light);
}

.process-step {
  position: relative;
  padding-bottom: var(--space-xl);
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-dot {
  position: absolute;
  left: calc(-1 * var(--space-xl) + 0.25rem);
  top: 0;
  width: 1rem;
  height: 1rem;
  background: var(--color-ochre);
  border-radius: var(--radius-full);
  border: 3px solid var(--color-cream);
}

.process-content {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.process-num {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-ochre);
  margin-bottom: var(--space-xs);
}

.process-title {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.process-desc {
  font-size: 0.8125rem;
  color: var(--color-slate);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.product-image {
  position: relative;
  height: 12rem;
  background: var(--color-cream-dark);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--color-ochre);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-body {
  padding: var(--space-lg);
}

.product-title {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.product-desc {
  font-size: 0.8125rem;
  color: var(--color-slate);
  margin-bottom: var(--space-md);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-accent);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-ochre);
}

.product-price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-slate);
}

.testimonials-slider {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-md);
  right: var(--space-lg);
  font-family: var(--font-accent);
  font-size: 4rem;
  color: var(--color-sand-light);
  line-height: 1;
}

.testimonial-text {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--color-slate);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-sand-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--color-slate-dark);
  font-size: 0.875rem;
}

.testimonial-info h4 {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.testimonial-info p {
  font-size: 0.75rem;
  color: var(--color-slate);
}

.cta-section {
  background: linear-gradient(135deg, var(--color-slate-dark) 0%, var(--color-slate) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 50%;
  height: 150%;
  background: var(--color-ochre);
  opacity: 0.1;
  border-radius: 50%;
  transform: rotate(-20deg);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 32rem;
  margin: 0 auto;
}

.cta-title {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-desc {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-lg);
  font-size: 0.9375rem;
}

.contact-section {
  padding: var(--space-3xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-info {
  background: linear-gradient(135deg, var(--color-slate-dark) 0%, var(--color-slate) 100%);
  padding: var(--space-xl);
  border-radius: var(--radius-2xl);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.contact-info::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 50%;
  height: 80%;
  background: var(--color-ochre);
  opacity: 0.15;
  border-radius: 50%;
}

.contact-info h3 {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-item i {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--color-sand);
  flex-shrink: 0;
}

.contact-item h4 {
  color: var(--color-white);
  font-size: 0.875rem;
  margin-bottom: var(--space-xs);
}

.contact-item p,
.contact-item a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.8);
}

.contact-item a:hover {
  color: var(--color-sand);
}

.contact-form-wrapper {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--color-slate-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
  background: var(--color-cream);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-ochre);
  background: var(--color-white);
}

.form-group textarea {
  min-height: 6rem;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: var(--color-slate);
}

.form-checkbox input {
  width: auto;
  margin-top: 2px;
  flex-shrink: 0;
}

.form-checkbox a {
  color: var(--color-ochre);
  text-decoration: underline;
}

.map-wrapper {
  margin-top: var(--space-xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  width: 100%;
  height: 15rem;
  border: none;
}

.footer {
  background: var(--color-slate-dark);
  color: var(--color-white);
  padding: var(--space-xl) 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
}

.footer-logo span {
  color: var(--color-ochre);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.footer-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-sand);
}

.footer-copy {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.5);
}

.page-hero {
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-2xl);
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sand-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 40%;
  height: 80%;
  background: var(--color-ochre);
  opacity: 0.05;
  border-radius: 50%;
}

.page-hero-content {
  max-width: 32rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: var(--color-slate);
  margin-bottom: var(--space-md);
}

.breadcrumb a {
  color: var(--color-slate);
}

.breadcrumb a:hover {
  color: var(--color-ochre);
}

.breadcrumb span {
  color: var(--color-slate-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: rotate(-2deg);
}

.about-image img {
  width: 100%;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-ochre) 0%, transparent 60%);
  opacity: 0.1;
}

.about-content h3 {
  margin-bottom: var(--space-md);
}

.about-content p {
  color: var(--color-slate);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
  background: var(--color-cream);
  border-radius: var(--radius-lg);
}

.stat-num {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-ochre);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-slate);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.value-card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.value-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  color: var(--color-ochre);
  flex-shrink: 0;
}

.value-text h4 {
  font-size: 0.9375rem;
  margin-bottom: var(--space-xs);
}

.value-text p {
  font-size: 0.8125rem;
  color: var(--color-slate);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-content {
  max-width: 24rem;
}

.error-code {
  font-family: var(--font-accent);
  font-size: 6rem;
  font-weight: 700;
  color: var(--color-sand-light);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.error-title {
  margin-bottom: var(--space-md);
}

.error-desc {
  color: var(--color-slate);
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sand-light) 100%);
}

.thankyou-content {
  max-width: 28rem;
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.thankyou-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-ochre);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 1.5rem;
  margin: 0 auto var(--space-lg);
}

.thankyou-title {
  margin-bottom: var(--space-md);
}

.thankyou-desc {
  color: var(--color-slate);
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
}

.policy-content {
  padding: var(--space-2xl) 0;
}

.policy-wrapper {
  max-width: 48rem;
  margin: 0 auto;
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.policy-wrapper h2 {
  font-size: 1.25rem;
  margin: var(--space-xl) 0 var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-cream-dark);
}

.policy-wrapper h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy-wrapper p {
  color: var(--color-slate);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.policy-wrapper ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.policy-wrapper li {
  color: var(--color-slate);
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
  list-style: disc;
}

.policy-date {
  font-size: 0.75rem;
  color: var(--color-slate-light);
  margin-bottom: var(--space-lg);
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  display: none;
  max-width: 28rem;
}

.cookie-popup.active {
  display: block;
}

.cookie-text {
  font-size: 0.8125rem;
  color: var(--color-slate);
  margin-bottom: var(--space-md);
}

.cookie-text a {
  color: var(--color-ochre);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.seasonal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.seasonal-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.seasonal-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: var(--color-cream);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

.seasonal-content {
  position: relative;
  z-index: 1;
}

.seasonal-badge {
  display: inline-block;
  background: var(--color-ochre);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.seasonal-title {
  margin-bottom: var(--space-sm);
}

.seasonal-desc {
  font-size: 0.875rem;
  color: var(--color-slate);
  margin-bottom: var(--space-md);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-slate-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--color-cream);
}

.faq-question i {
  transition: transform var(--transition-base);
  color: var(--color-ochre);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.875rem;
  color: var(--color-slate);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .logo {
    font-size: 1rem;
  }

  h1 {
    font-size: 1.4rem;
  }
}

@media (min-width: 480px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .seasonal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  
  .burger {
    display: none;
  }
  
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-block {
    grid-template-columns: 1fr 1fr;
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonials-slider {
    flex-direction: row;
  }
  
  .testimonial-card {
    flex: 1;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .seasonal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cookie-popup {
    left: var(--space-lg);
    right: auto;
  }
}

@media (min-width: 1024px) {
  html {
    font-size: 17px;
  }
  
  .container {
    padding: 0 var(--space-xl);
  }
  
  .section {
    padding: var(--space-3xl) 0 calc(var(--space-3xl) + var(--space-lg));
  }
  
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
