@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --color-terracotta: #c4725f;
  --color-terracotta-light: #d4897a;
  --color-sage: #9caa8c;
  --color-sage-light: #b8c4ab;
  --color-sand: #e8dcc8;
  --color-sand-light: #f5f0e8;
  --color-slate: #3d4654;
  --color-slate-light: #5a6475;
  --color-burnt-orange: #d4713c;
  --color-white: #ffffff;
  --color-cream: #faf8f5;
  --color-dark: #2a2d32;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Nunito Sans', sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3rem;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 50%;
  --shadow-sm: 0 1px 2px rgba(61, 70, 84, 0.08);
  --shadow-md: 0 4px 12px rgba(61, 70, 84, 0.1);
  --shadow-lg: 0 8px 24px rgba(61, 70, 84, 0.12);
  --shadow-xl: 0 16px 48px rgba(61, 70, 84, 0.15);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --max-width: 75rem;
  --header-height: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-slate);
  background-color: var(--color-cream);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 {
  font-size: var(--fs-4xl);
}

h2 {
  font-size: var(--fs-3xl);
}

h3 {
  font-size: var(--fs-2xl);
}

h4 {
  font-size: var(--fs-xl);
}

p {
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--color-slate-light);
  max-width: 35rem;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background-color: var(--color-terracotta);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-burnt-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-slate);
  border: 1px solid var(--color-slate);
}

.btn-secondary:hover {
  background-color: var(--color-slate);
  color: var(--color-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-terracotta);
  border: 1px solid var(--color-terracotta);
}

.btn-outline:hover {
  background-color: var(--color-terracotta);
  color: var(--color-white);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: var(--space-lg) 0;
  transition: all var(--transition-base);
}

.header.scrolled {
  position: fixed;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-md) 0;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--color-terracotta);
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-desktop a {
  font-size: var(--fs-sm);
  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-color: var(--color-terracotta);
  transition: width var(--transition-fast);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  z-index: 101;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  transition: all var(--transition-fast);
  transform-origin: center;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  z-index: 100;
}

.nav-mobile.active {
  transform: translateX(0);
}

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--color-dark);
  transition: color var(--transition-fast);
}

.nav-mobile a:hover {
  color: var(--color-terracotta);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--color-sand-light);
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero-content {
  max-width: 30rem;
}

.hero-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background-color: var(--color-sage-light);
  color: var(--color-slate);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.hero h1 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-md);
}

.hero p {
  color: var(--color-slate-light);
  margin-bottom: var(--space-lg);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero-visual {
  position: relative;
}

.hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.hero-accent {
  position: absolute;
  width: 6rem;
  height: 6rem;
  background-color: var(--color-terracotta);
  border-radius: var(--radius-full);
  opacity: 0.2;
  top: -2rem;
  right: -1rem;
}

.features {
  background-color: var(--color-white);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.feature-card {
  padding: var(--space-lg);
  background-color: var(--color-cream);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-terracotta-light);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
}

.feature-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: var(--fs-sm);
  color: var(--color-slate-light);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.product-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  aspect-ratio: 4/3;
  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);
  padding: var(--space-xs) var(--space-sm);
  background-color: var(--color-burnt-orange);
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.product-content {
  padding: var(--space-lg);
}

.product-content h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xs);
}

.product-content p {
  font-size: var(--fs-sm);
  color: var(--color-slate-light);
  margin-bottom: var(--space-md);
}

.product-price {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-terracotta);
}

.about-section {
  background-color: var(--color-sand-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image::before {
  content: '';
  position: absolute;
  top: var(--space-lg);
  left: calc(-1 * var(--space-lg));
  width: 100%;
  height: 100%;
  background-color: var(--color-sage);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.about-content h2 {
  margin-bottom: var(--space-md);
}

.about-content p {
  color: var(--color-slate-light);
  margin-bottom: var(--space-md);
}

.about-list {
  margin: var(--space-lg) 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: var(--fs-sm);
}

.about-list i {
  color: var(--color-terracotta);
  margin-top: 3px;
}

.testimonials {
  background-color: var(--color-white);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.testimonial-card {
  padding: var(--space-xl);
  background-color: var(--color-cream);
  border-radius: var(--radius-lg);
  position: relative;
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: var(--fs-2xl);
  color: var(--color-terracotta-light);
  opacity: 0.3;
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
}

.testimonial-text {
  font-style: italic;
  color: var(--color-slate-light);
  margin-bottom: var(--space-lg);
  padding-top: var(--space-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  background-color: var(--color-sage);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 600;
}

.testimonial-info h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
}

.testimonial-info span {
  font-size: var(--fs-xs);
  color: var(--color-slate-light);
}

.cta-section {
  background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-burnt-orange) 100%);
  color: var(--color-white);
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: var(--space-xl);
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background-color: var(--color-white);
  color: var(--color-terracotta);
}

.cta-section .btn-primary:hover {
  background-color: var(--color-sand-light);
}

.contact-section {
  background-color: var(--color-sand-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.contact-info h2 {
  margin-bottom: var(--space-md);
}

.contact-info > p {
  color: var(--color-slate-light);
  margin-bottom: var(--space-xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-terracotta);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.contact-item-text p,
.contact-item-text a {
  font-size: var(--fs-sm);
  color: var(--color-slate-light);
}

.contact-item-text a:hover {
  color: var(--color-terracotta);
}

.contact-form-wrapper {
  background-color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-dark);
}

.form-group input,
.form-group textarea {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: var(--fs-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(196, 114, 95, 0.1);
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-checkbox input {
  margin-top: 3px;
  accent-color: var(--color-terracotta);
}

.form-checkbox label {
  font-size: var(--fs-xs);
  color: var(--color-slate-light);
  line-height: 1.4;
}

.form-checkbox a {
  color: var(--color-terracotta);
  text-decoration: underline;
}

.map-container {
  margin-top: var(--space-2xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 18rem;
  border: none;
}

.footer {
  background-color: var(--color-slate);
  color: var(--color-sand-light);
  padding: var(--space-xl) 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-white);
}

.footer-logo span {
  color: var(--color-terracotta-light);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.footer-links a {
  font-size: var(--fs-xs);
  color: var(--color-sand);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-terracotta-light);
}

.footer-copy {
  font-size: var(--fs-xs);
  color: var(--color-slate-light);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-popup.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.cookie-content p {
  font-size: var(--fs-sm);
  color: var(--color-slate-light);
  margin: 0;
}

.cookie-content a {
  color: var(--color-terracotta);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

.page-header {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-2xl);
  background-color: var(--color-sand-light);
  text-align: center;
}

.page-header h1 {
  margin-bottom: var(--space-sm);
}

.page-header p {
  color: var(--color-slate-light);
  max-width: 30rem;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-sm);
}

.breadcrumbs a {
  color: var(--color-slate-light);
}

.breadcrumbs a:hover {
  color: var(--color-terracotta);
}

.breadcrumbs span {
  color: var(--color-slate);
}

.policy-content {
  background-color: var(--color-white);
}

.policy-text {
  max-width: 50rem;
  margin: 0 auto;
}

.policy-text h2 {
  font-size: var(--fs-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.policy-text h3 {
  font-size: var(--fs-lg);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.policy-text p,
.policy-text ul {
  font-size: var(--fs-sm);
  color: var(--color-slate-light);
  margin-bottom: var(--space-md);
}

.policy-text ul {
  padding-left: var(--space-lg);
}

.policy-text li {
  list-style: disc;
  margin-bottom: var(--space-sm);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-content h1 {
  font-size: 6rem;
  color: var(--color-terracotta);
  margin-bottom: var(--space-md);
}

.error-content h2 {
  margin-bottom: var(--space-md);
}

.error-content p {
  color: var(--color-slate-light);
  margin-bottom: var(--space-xl);
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  background-color: var(--color-sand-light);
}

.thankyou-content {
  max-width: 30rem;
}

.thankyou-icon {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-sage);
  color: var(--color-white);
  font-size: var(--fs-3xl);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-xl);
}

.thankyou-content h1 {
  margin-bottom: var(--space-md);
}

.thankyou-content p {
  color: var(--color-slate-light);
  margin-bottom: var(--space-xl);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.pricing-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 2px solid var(--color-terracotta);
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: var(--space-xs) var(--space-md);
  background-color: var(--color-terracotta);
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.pricing-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--color-terracotta);
  margin-bottom: var(--space-md);
}

.pricing-card .price span {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--color-slate-light);
}

.pricing-features {
  margin-bottom: var(--space-lg);
}

.pricing-features li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-sand);
  font-size: var(--fs-sm);
  color: var(--color-slate-light);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.process-section {
  background-color: var(--color-white);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.process-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.process-number {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-terracotta);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.process-content h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xs);
}

.process-content p {
  font-size: var(--fs-sm);
  color: var(--color-slate-light);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.team-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--color-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-4xl);
  color: var(--color-white);
}

.team-info {
  padding: var(--space-lg);
}

.team-info h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xs);
}

.team-info span {
  font-size: var(--fs-sm);
  color: var(--color-terracotta);
  display: block;
  margin-bottom: var(--space-sm);
}

.team-info p {
  font-size: var(--fs-sm);
  color: var(--color-slate-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.value-card {
  padding: var(--space-xl);
  background-color: var(--color-sand-light);
  border-radius: var(--radius-lg);
  text-align: center;
}

.value-icon {
  font-size: var(--fs-3xl);
  color: var(--color-terracotta);
  margin-bottom: var(--space-md);
}

.value-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.value-card p {
  font-size: var(--fs-sm);
  color: var(--color-slate-light);
}

.story-section {
  background-color: var(--color-sand-light);
}

.story-timeline {
  position: relative;
  padding-left: var(--space-xl);
}

.story-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: var(--color-terracotta-light);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-xl);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-xl) - 5px);
  top: 0;
  width: 12px;
  height: 12px;
  background-color: var(--color-terracotta);
  border-radius: var(--radius-full);
}

.timeline-item h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xs);
}

.timeline-item span {
  font-size: var(--fs-sm);
  color: var(--color-terracotta);
  display: block;
  margin-bottom: var(--space-sm);
}

.timeline-item p {
  font-size: var(--fs-sm);
  color: var(--color-slate-light);
}

.faq-section {
  background-color: var(--color-white);
}

.faq-list {
  max-width: 50rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-sand);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
}

.faq-question i {
  transition: transform var(--transition-fast);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer p {
  padding-bottom: var(--space-lg);
  font-size: var(--fs-sm);
  color: var(--color-slate-light);
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: var(--space-lg);
  }
}

@media (min-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-slider {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  :root {
    --fs-4xl: 3.5rem;
    --fs-3xl: 2.75rem;
  }
  
  .nav-desktop {
    display: block;
  }
  
  .burger {
    display: none;
  }
  
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero h1 {
    font-size: var(--fs-4xl);
  }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .cookie-content {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
  
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonials-slider {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
