:root {
  --fog-grey: #F5F7F6;
  --forest-green: #1A3D2E;
  --earth-clay: #B8926A;
  --stone-black: #2C2C2C;
  --sage-green: #7A9B8A;
  --terracotta: #C97D60;
  --slate-blue: #5A6B7D;
  --cream: #FAF8F5;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --font-size-xs: 0.7rem;
  --font-size-sm: 0.8rem;
  --font-size-base: 0.95rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.15rem;
  --font-size-xl: 1.35rem;
  --font-size-2xl: 1.6rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--stone-black);
  background-color: var(--fog-grey);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
  color: var(--forest-green);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.5rem, 3.5vw, var(--font-size-3xl));
}

h2 {
  font-size: clamp(1.25rem, 3vw, var(--font-size-2xl));
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, var(--font-size-xl));
}

h4 {
  font-size: clamp(1rem, 2vw, var(--font-size-lg));
}

h5 {
  font-size: clamp(0.9rem, 1.8vw, var(--font-size-md));
}

h6 {
  font-size: clamp(0.85rem, 1.5vw, var(--font-size-base));
}

p {
  margin-bottom: var(--space-md);
  font-size: clamp(0.875rem, 2vw, var(--font-size-base));
}

a {
  color: var(--forest-green);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--earth-clay);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

.header {
  background: rgba(245, 247, 246, 0.98);
  backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(26, 61, 46, 0.08);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--forest-green);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  letter-spacing: -0.01em;
}

.nav-menu {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, var(--cream) 0%, var(--fog-grey) 100%);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s, opacity 0.4s;
  z-index: 999;
  padding: var(--space-xl) var(--space-lg);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  border-left: 1px solid rgba(26, 61, 46, 0.1);
  visibility: hidden;
  opacity: 0;
}

.nav-menu.active {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.nav-menu a {
  font-size: var(--font-size-md);
  color: var(--forest-green);
  padding: var(--space-sm) 0;
  display: block;
  border-bottom: 1px solid rgba(26, 61, 46, 0.08);
  transition: var(--transition);
  position: relative;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--earth-clay);
  transition: height 0.3s ease;
}

.nav-menu a:hover::before {
  height: 60%;
}

.nav-menu a:hover {
  color: var(--earth-clay);
  padding-left: var(--space-xs);
}

.menu-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  font-size: var(--font-size-2xl);
  color: var(--forest-green);
  cursor: pointer;
  padding: var(--space-xs);
  line-height: 1;
}

.menu-toggle {
  background: rgba(26, 61, 46, 0.05);
  border: 1px solid rgba(26, 61, 46, 0.1);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-lg);
  color: var(--forest-green);
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}

.menu-toggle:hover {
  background: rgba(26, 61, 46, 0.1);
  border-color: var(--earth-clay);
}

.menu-toggle.hidden {
  display: none;
}

.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 61, 46, 0.5) 0%, rgba(44, 44, 44, 0.7) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(184, 146, 106, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: var(--space-xl) var(--space-md);
  max-width: 800px;
}

.hero h1 {
  color: white;
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, var(--font-size-lg));
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.95);
}

.animated-figure {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 146, 106, 0.4) 0%, rgba(122, 155, 138, 0.2) 100%);
  backdrop-filter: blur(8px);
  animation: float 8s ease-in-out infinite;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.animated-figure:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.animated-figure:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
  width: 80px;
  height: 80px;
}

.animated-figure:nth-child(3) {
  bottom: 15%;
  left: 20%;
  animation-delay: 4s;
  width: 100px;
  height: 100px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--forest-green);
  color: white;
  border: 2px solid var(--forest-green);
  border-radius: var(--radius-md);
  font-size: clamp(0.8rem, 1.8vw, var(--font-size-sm));
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: var(--space-md);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  background: var(--earth-clay);
  border-color: var(--earth-clay);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: white;
  color: var(--forest-green);
}

.section {
  padding: var(--space-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  padding-bottom: var(--space-md);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--earth-clay), transparent);
}

.section-content {
  max-width: 900px;
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(26, 61, 46, 0.08);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--earth-clay), var(--sage-green));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(184, 146, 106, 0.2);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.card h3 {
  margin-bottom: var(--space-sm);
  font-size: clamp(1rem, 2.2vw, var(--font-size-lg));
}

.card p {
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-sm);
}

.price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--earth-clay);
  margin-top: var(--space-sm);
}

.contact-section {
  background: white;
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--forest-green);
  font-size: var(--font-size-sm);
}

.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: var(--space-sm);
  border: 2px solid rgba(47, 74, 60, 0.2);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-family: inherit;
  transition: var(--transition);
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest-green);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-size: var(--font-size-sm);
  font-weight: normal;
}

.map-container {
  margin: var(--space-xl) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 100%;
}

.map-container iframe {
  width: 100%;
  max-width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.footer {
  background: var(--forest-green);
  color: white;
  padding: var(--space-xl) var(--space-md);
  margin-top: var(--space-2xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

.footer h4 {
  color: white;
  margin-bottom: var(--space-md);
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-sm);
}

.footer a:hover {
  color: white;
}

.footer p {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.legal-page {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
  overflow-wrap: break-word;
  word-wrap: break-word;
  box-sizing: border-box;
}

.legal-page h1 {
  margin-bottom: var(--space-lg);
  text-align: center;
  font-size: clamp(1.4rem, 3.5vw, var(--font-size-2xl));
}

.legal-page h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: clamp(1.1rem, 2.8vw, var(--font-size-lg));
  border-left: 3px solid var(--earth-clay);
  padding-left: var(--space-sm);
}

.legal-page p {
  margin-bottom: var(--space-md);
}

.legal-page ul,
.legal-page ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-page li {
  margin-bottom: var(--space-xs);
}

.table-wrapper {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  width: 100%;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
}

.legal-page table th,
.legal-page table td {
  padding: var(--space-sm);
  border: 1px solid rgba(47, 74, 60, 0.2);
  text-align: left;
}

.legal-page table th {
  background: var(--fog-grey);
  font-weight: 600;
  color: var(--forest-green);
}

.home-button {
  display: inline-block;
  margin-top: var(--space-lg);
  padding: var(--space-sm) var(--space-lg);
  background: var(--forest-green);
  color: white;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.home-button:hover {
  background: var(--earth-clay);
  color: white;
}

.thank-you-page,
.error-page {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-page h1,
.error-page h1 {
  margin-bottom: var(--space-lg);
}

.thank-you-page p,
.error-page p {
  font-size: clamp(1rem, 2.5vw, var(--font-size-lg));
  margin-bottom: var(--space-md);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--forest-green);
  color: white;
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.privacy-popup.active {
  transform: translateY(0);
}

.privacy-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 768px) {
  .privacy-popup-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.privacy-popup p {
  margin: 0;
  font-size: var(--font-size-sm);
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-sm);
}

.privacy-popup button {
  padding: var(--space-xs) var(--space-md);
  border: 2px solid white;
  border-radius: var(--radius-md);
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: var(--font-size-sm);
  transition: var(--transition);
}

.privacy-popup button:hover {
  background: white;
  color: var(--forest-green);
}

.privacy-popup button.accept {
  background: white;
  color: var(--forest-green);
}

.privacy-popup button.accept:hover {
  background: var(--fog-grey);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.feature-icon {
  font-size: var(--font-size-2xl);
  color: var(--earth-clay);
  flex-shrink: 0;
}

.process-step {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  border-left: 4px solid var(--forest-green);
}

.process-step h3 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--forest-green);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: var(--font-size-lg);
}

.image-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .image-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .image-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.asymmetric-section {
  padding: var(--space-xl) 0;
  position: relative;
}

.asymmetric-section:nth-child(even) {
  background: var(--cream);
}

.asymmetric-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .asymmetric-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .asymmetric-content.reverse {
    direction: rtl;
  }
  
  .asymmetric-content.reverse > * {
    direction: ltr;
  }
}

.text-block {
  padding: var(--space-lg);
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.image-block {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.image-block img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

.image-block .icon-display {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(184, 146, 106, 0.1) 0%, rgba(122, 155, 138, 0.1) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  min-height: 400px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.image-block .icon-display::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(184, 146, 106, 0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.image-block .icon-display > div {
  position: relative;
  z-index: 1;
}

.image-block .icon-display i {
  font-size: clamp(4rem, 15vw, 8rem);
  color: var(--earth-clay);
  margin-bottom: var(--space-md);
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  animation: float-icon 3s ease-in-out infinite;
  max-width: 100%;
}

@keyframes float-icon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.image-block .icon-display h3 {
  color: var(--forest-green);
  margin-bottom: var(--space-sm);
}

.image-block .icon-display p {
  color: var(--stone-black);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
  }
}

.quote-section {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--slate-blue) 100%);
  color: white;
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '"';
  position: absolute;
  font-size: clamp(6rem, 15vw, 12rem);
  font-family: 'Manrope', sans-serif;
  opacity: 0.1;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  max-width: 100%;
  overflow: hidden;
}

.quote-section h2,
.quote-section p {
  color: white;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(26, 61, 46, 0.08);
}

.stat-number {
  font-size: clamp(1.5rem, 4vw, var(--font-size-3xl));
  font-weight: 700;
  color: var(--earth-clay);
  display: block;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--stone-black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline-section {
  position: relative;
  padding: var(--space-xl) 0;
}

.timeline-item {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--earth-clay);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--earth-clay);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 12px;
  width: 2px;
  height: calc(100% + var(--space-lg));
  background: linear-gradient(to bottom, var(--earth-clay), transparent);
}

.timeline-item:last-child::after {
  display: none;
}

.feature-box {
  background: linear-gradient(135deg, rgba(184, 146, 106, 0.05) 0%, rgba(122, 155, 138, 0.05) 100%);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--earth-clay);
  margin: var(--space-lg) 0;
}

@media (max-width: 767px) {
  .container {
    padding: 0 var(--space-sm);
    width: 100%;
    max-width: 100%;
  }
  
  .section {
    padding: var(--space-lg) 0;
    width: 100%;
    overflow-x: hidden;
  }
  
  .asymmetric-section,
  .quote-section {
    width: 100%;
    overflow-x: hidden;
  }
  
  .text-block,
  .image-block {
    width: 100%;
    max-width: 100%;
  }
  
  .feature-box {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }
  
  .card {
    width: 100%;
    max-width: 100%;
  }
  
  .grid,
  .feature-grid,
  .split-section,
  .stats-grid {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 var(--space-xs);
  }
  
  .hero {
    min-height: 50vh;
  }
  
  h1 {
    font-size: 1.3rem;
  }
  
  h2 {
    font-size: 1.1rem;
  }
  
  .section {
    padding: var(--space-md) 0;
  }
  
  .text-block {
    padding: var(--space-md);
  }
  
  .card {
    padding: var(--space-md);
  }
}
