:root {
  --primary: #2D9F79;
  --primary-rgb: 45, 159, 121;
  --secondary: #682C87;
  --secondary-rgb: 104, 44, 135;
  --accent: #C1953E;
  --accent-rgb: 193, 149, 62;
  --background: #FAF8F5;
  --background-alt: #F0ECE6;
  --text: #2C2520;
  --text-muted: #6B6055;
  --section-dark: #2C2520;
  --section-accent: #EDE6DD;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --font-xxl: 1.5rem;
  --font-hero: 2rem;
  --max-width: 1200px;
  --border-radius: 4px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--font-base);
  line-height: 1.6;
  color: var(--text);
  background-color: var(--background);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  color: var(--text);
}

h1 {
  font-size: var(--font-hero);
}

h2 {
  font-size: var(--font-xxl);
}

h3 {
  font-size: var(--font-xl);
}

h4 {
  font-size: var(--font-lg);
}

h5, h6 {
  font-size: var(--font-base);
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.grid-2 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.grid-2 > * {
  flex: 1 1 calc(50% - var(--spacing-lg));
  min-width: 280px;
}

.grid-3 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.grid-3 > * {
  flex: 1 1 calc(33.333% - var(--spacing-lg));
  min-width: 260px;
}

.grid-4 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.grid-4 > * {
  flex: 1 1 calc(25% - var(--spacing-lg));
  min-width: 240px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.98);
  border-bottom: 1px solid rgba(44, 37, 32, 0.1);
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(250, 248, 245, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
}

.logo {
  font-family: 'Merriweather', Georgia, serif;
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--primary);
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--secondary);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-xl);
  align-items: center;
  padding: 0;
  margin: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: var(--font-base);
  font-weight: 500;
  color: var(--text);
  padding: var(--spacing-sm) 0;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

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

.nav-link.active {
  color: var(--primary);
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
  padding: var(--spacing-sm);
  transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
  color: var(--primary);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(var(--spacing-xxl) * 2) 0;
  margin-top: 72px;
  background: linear-gradient(135deg, rgba(45, 159, 121, 0.08) 0%, rgba(104, 44, 135, 0.05) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 159, 121, 0.12) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 149, 62, 0.08) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
  z-index: 0;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-xxl);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1 1 500px;
  min-width: 300px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}

.hero p {
  font-size: var(--font-lg);
  color: var(--text-muted);
  margin-bottom: var(--spacing-xl);
}

.hero-image {
  flex: 1 1 400px;
  min-width: 300px;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.header-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--spacing-xxl) * 2) var(--spacing-lg);
  margin-top: 72px;
  background: var(--section-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.header-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 159, 121, 0.15) 0%, rgba(104, 44, 135, 0.15) 100%);
  z-index: 0;
}

.header-hero h1 {
  font-size: 2.5rem;
  color: white;
  position: relative;
  z-index: 1;
  margin-bottom: var(--spacing-md);
}

.header-hero p {
  font-size: var(--font-lg);
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.content-section {
  padding: var(--spacing-xxl) 0;
}

.section {
  padding: var(--spacing-xxl) 0;
}

.block {
  padding: var(--spacing-xxl) 0;
}

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

.section-header h2 {
  font-size: var(--font-xxl);
  margin-bottom: var(--spacing-md);
}

.section-header p {
  font-size: var(--font-lg);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.section-dark {
  background-color: var(--section-dark);
  color: white;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: white;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.9);
}

.section-dark .text-muted {
  color: rgba(255, 255, 255, 0.7);
}

.section-accent {
  background-color: var(--section-accent);
}

.two-col-layout {
  display: flex;
  align-items: center;
  gap: var(--spacing-xxl);
  flex-wrap: wrap;
}

.two-col-layout > * {
  flex: 1 1 400px;
  min-width: 300px;
}

.two-col-layout.reverse {
  flex-direction: row-reverse;
}

.card {
  background: white;
  border: 1px solid rgba(44, 37, 32, 0.1);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.card h3 {
  margin-bottom: var(--spacing-md);
  color: var(--primary);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-md);
}

.item {
  background: white;
  border: 1px solid rgba(44, 37, 32, 0.1);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  transition: border-color 0.3s ease;
}

.item:hover {
  border-color: var(--secondary);
}

.feature {
  text-align: center;
  padding: var(--spacing-lg);
  background: white;
  border: 1px solid rgba(44, 37, 32, 0.1);
  border-radius: var(--border-radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  color: white;
  font-size: 1.75rem;
}

.feature h3 {
  margin-bottom: var(--spacing-md);
}

.testimonial-card {
  background: white;
  border-left: 4px solid var(--primary);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  font-size: 3rem;
  font-family: 'Merriweather', Georgia, serif;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
  font-size: var(--font-sm);
}

.pricing-card {
  background: white;
  border: 2px solid rgba(44, 37, 32, 0.1);
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
  border-color: var(--primary);
  border-width: 3px;
  position: relative;
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--border-radius);
  font-size: var(--font-sm);
  font-weight: 600;
}

.pricing-card h3 {
  margin-bottom: var(--spacing-md);
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--spacing-md);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-lg);
  text-align: left;
}

.pricing-card li {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(44, 37, 32, 0.06);
}

.pricing-card li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  margin-right: var(--spacing-sm);
}

.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--font-base);
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: #248865;
  box-shadow: 0 6px 16px rgba(45, 159, 121, 0.3);
}

.btn-secondary {
  background: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background: #55236d;
  box-shadow: 0 6px 16px rgba(104, 44, 135, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  box-shadow: 0 6px 16px rgba(45, 159, 121, 0.3);
}

.btn-lg {
  padding: var(--spacing-lg) var(--spacing-xxl);
  font-size: var(--font-lg);
}

.cta {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  background: var(--accent);
  color: white;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  background: #a87f33;
  box-shadow: 0 6px 16px rgba(193, 149, 62, 0.3);
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

form {
  max-width: 600px;
  margin: 0 auto;
}

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

label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--text);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: var(--spacing-md);
  font-size: var(--font-base);
  font-family: 'Source Sans Pro', sans-serif;
  border: 1px solid rgba(44, 37, 32, 0.2);
  border-radius: var(--border-radius);
  background: white;
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 159, 121, 0.1);
}

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

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid rgba(44, 37, 32, 0.1);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--spacing-lg);
  background: white;
  border: none;
  text-align: left;
  font-size: var(--font-lg);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
  background: var(--section-accent);
  color: var(--primary);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 var(--spacing-lg);
}

.faq-answer.active {
  max-height: 500px;
  padding: var(--spacing-md) var(--spacing-lg) var(--spacing-lg);
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: var(--spacing-lg);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.slider-btn {
  background: var(--primary);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.slider-btn:hover {
  background: var(--secondary);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(44, 37, 32, 0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.gallery-item {
  flex: 1 1 calc(33.333% - var(--spacing-md));
  min-width: 250px;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 37, 32, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--spacing-lg);
  color: white;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-weight: 600;
  font-size: var(--font-lg);
  margin-bottom: var(--spacing-xs);
}

.gallery-item-desc {
  font-size: var(--font-sm);
  opacity: 0.9;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
}

.blog-card {
  flex: 1 1 calc(50% - var(--spacing-xl));
  min-width: 300px;
  background: white;
  border: 1px solid rgba(44, 37, 32, 0.1);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-card-content {
  padding: var(--spacing-lg);
}

.blog-card-meta {
  font-size: var(--font-sm);
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
}

.blog-card h3 {
  margin-bottom: var(--spacing-md);
}

.blog-card p {
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
}

.blog-card .btn {
  font-size: var(--font-sm);
  padding: var(--spacing-sm) var(--spacing-lg);
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.location-card {
  background: white;
  border: 1px solid rgba(44, 37, 32, 0.1);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
  transition: border-color 0.3s ease;
}

.location-card:hover {
  border-color: var(--primary);
}

.location-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.location-details h3 {
  margin-bottom: var(--spacing-sm);
}

.location-details p {
  margin-bottom: var(--spacing-xs);
  color: var(--text-muted);
}

.section-divider {
  display: block;
  width: 100%;
  height: auto;
  margin: -1px 0;
  line-height: 0;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.section-divider.flip {
  transform: scaleY(-1);
}

footer {
  background: var(--section-dark);
  color: white;
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

footer h4 {
  color: white;
  margin-bottom: var(--spacing-md);
}

footer p,
footer a {
  color: rgba(255, 255, 255, 0.85);
}

footer a:hover {
  color: white;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
  padding: var(--spacing-lg) 0;
}

.footer-links {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: var(--font-sm);
  transition: color 0.3s ease;
}

.copyright {
  text-align: center;
  padding-top: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.7);
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-in"] {
  transform: none;
}

[data-animate="fade-in"].visible {
  opacity: 1;
}

[data-animate="slide-left"] {
  transform: translateX(-30px);
}

[data-animate="slide-left"].visible {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="slide-right"] {
  transform: translateX(30px);
}

[data-animate="slide-right"].visible {
  opacity: 1;
  transform: translateX(0);
}

[data-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-stagger] > *.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --font-hero: 1.75rem;
    --font-xxl: 1.375rem;
    --font-xl: 1.125rem;
  }

  .container {
    padding: 0 var(--spacing-md);
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 280px;
    height: calc(100vh - 72px);
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-lg);
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(44, 37, 32, 0.1);
  }

  .nav-link {
    display: block;
    padding: var(--spacing-md) 0;
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: var(--spacing-xxl) 0;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-content {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .header-hero {
    min-height: 30vh;
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .header-hero h1 {
    font-size: 1.75rem;
  }

  .two-col-layout {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .two-col-layout.reverse {
    flex-direction: column;
  }

  .grid-2 > *,
  .grid-3 > *,
  .grid-4 > * {
    flex: 1 1 100%;
  }

  .gallery-item {
    flex: 1 1 calc(50% - var(--spacing-md));
    min-width: 160px;
  }

  .blog-card {
    flex: 1 1 100%;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 480px) {
  :root {
    --spacing-lg: 16px;
    --spacing-xl: 24px;
    --spacing-xxl: 32px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .header-hero h1 {
    font-size: 1.5rem;
  }

  .gallery-item {
    flex: 1 1 100%;
  }

  .btn,
  .cta {
    width: 100%;
    text-align: center;
  }

  .pricing-card {
    padding: var(--spacing-lg);
  }
}
