/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #3D2B1F;
  background: #FAF6F1;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Custom Properties ────────────────────────────── */
:root {
  --terracotta: #C4704B;
  --terracotta-dark: #A85A38;
  --sand: #E8D5C0;
  --sand-light: #F4EDE4;
  --cream: #FAF6F1;
  --warm-white: #FFFDF9;
  --brown-dark: #3D2B1F;
  --brown-mid: #6B4F3C;
  --line: rgba(196, 112, 75, 0.18);
  --line-strong: rgba(196, 112, 75, 0.35);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 4px 30px rgba(61, 43, 31, 0.07);
  --shadow-card: 0 8px 40px rgba(61, 43, 31, 0.10);
  --shadow-float: 0 16px 50px rgba(61, 43, 31, 0.13);
}

/* ── Utility ──────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 64px); }
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
  color: var(--brown-dark);
}
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.divider {
  width: 48px;
  height: 1px;
  background: var(--terracotta);
  margin: 0 auto;
  opacity: 0.5;
}

/* ── Navigation ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(24px, 5vw, 64px);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding-top: 0;
  padding-bottom: 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--brown-dark);
}
.nav-logo span { color: var(--terracotta); }
.nav-links { display: flex; gap: clamp(20px, 3vw, 40px); align-items: center; }
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--brown-mid);
  position: relative;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--warm-white) !important;
  background: var(--terracotta);
  padding: 10px 24px;
  border-radius: 100px;
  transition: background 0.25s ease, transform 0.2s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--terracotta-dark); transform: translateY(-1px); }

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--brown-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(250, 246, 241, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--brown-dark);
  transition: color 0.25s ease;
}
.mobile-menu a:hover { color: var(--terracotta); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(24px, 5vw, 64px) 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,112,75,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tag::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--terracotta);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.08;
  color: var(--brown-dark);
  margin-bottom: 1.75rem;
}
.hero-title em {
  font-style: italic;
  color: var(--terracotta);
}
.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--brown-mid);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--warm-white);
  background: var(--terracotta);
  padding: 16px 36px;
  border-radius: 100px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,112,75,0.25); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--brown-dark);
  padding: 16px 28px;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.btn-secondary:hover { border-color: var(--terracotta); color: var(--terracotta); background: rgba(196,112,75,0.04); }

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-image-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}
.hero-image-main img { width: 100%; height: 100%; object-fit: cover; }

/* Floating stat cards */
.stat-card {
  position: absolute;
  background: var(--warm-white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}
.stat-card:nth-child(2) { animation-delay: -1s; }
.stat-card:nth-child(3) { animation-delay: -2s; }
.stat-card:nth-child(4) { animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.stat-card--top { top: 8%; left: -12%; }
.stat-card--mid { top: 42%; right: -10%; }
.stat-card--bottom { bottom: 12%; left: -6%; }
.stat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { width: 20px; height: 20px; stroke: var(--terracotta); fill: none; stroke-width: 1.5; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--brown-dark);
  line-height: 1.2;
}
.stat-label {
  font-size: 0.6875rem;
  color: var(--brown-mid);
  letter-spacing: 0.04em;
}

/* ── About ────────────────────────────────────────── */
.about {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--warm-white);
}
.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 5 / 6;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content { max-width: 520px; }
.about-content .section-title { font-size: clamp(1.75rem, 3vw, 2.75rem); margin-bottom: 1.5rem; }
.about-text {
  font-size: 0.9375rem;
  color: var(--brown-mid);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.about-features {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon svg { width: 18px; height: 18px; stroke: var(--terracotta); fill: none; stroke-width: 1.5; }
.about-feature-text { font-size: 0.8125rem; font-weight: 400; color: var(--brown-dark); line-height: 1.5; }
.about-feature-sub { font-size: 0.75rem; color: var(--brown-mid); margin-top: 2px; }

/* ── Menu ─────────────────────────────────────────── */
.menu {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream);
}
.menu-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.menu-header .section-title { font-size: clamp(1.75rem, 3vw, 2.75rem); margin-bottom: 1rem; }
.menu-header p { font-size: 0.9375rem; color: var(--brown-mid); line-height: 1.7; }
.menu-categories {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.menu-cat-btn {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--brown-mid);
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: transparent;
  transition: all 0.25s ease;
}
.menu-cat-btn:hover, .menu-cat-btn.active {
  background: var(--terracotta);
  color: var(--warm-white);
  border-color: var(--terracotta);
}
.menu-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--warm-white);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.menu-item:hover { border-color: var(--line-strong); box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.menu-item-image {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.menu-item-image img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-info { flex: 1; }
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--brown-dark);
  margin-bottom: 4px;
}
.menu-item-desc {
  font-size: 0.8125rem;
  color: var(--brown-mid);
  line-height: 1.6;
}

/* ── Testimonials ─────────────────────────────────── */
.testimonials {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--warm-white);
}
.testimonials-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.testimonials-header .section-title { font-size: clamp(1.75rem, 3vw, 2.75rem); margin-bottom: 1rem; }
.testimonials-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 32px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-soft); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--terracotta); }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 400;
  color: var(--brown-dark);
  line-height: 1.65;
  margin-bottom: 20px;
}
.testimonial-author { font-size: 0.8125rem; font-weight: 500; color: var(--brown-dark); }
.testimonial-location { font-size: 0.75rem; color: var(--brown-mid); margin-top: 2px; }

/* ── Gallery ──────────────────────────────────────── */
.gallery {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream);
}
.gallery-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.gallery-header .section-title { font-size: clamp(1.75rem, 3vw, 2.75rem); margin-bottom: 1rem; }
.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-card); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }

/* ── Visit ────────────────────────────────────────── */
.visit {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--warm-white);
}
.visit-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.visit-content .section-title { font-size: clamp(1.75rem, 3vw, 2.75rem); margin-bottom: 1.5rem; }
.visit-text { font-size: 0.9375rem; color: var(--brown-mid); line-height: 1.8; margin-bottom: 2rem; }
.visit-details { display: flex; flex-direction: column; gap: 20px; }
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.visit-detail-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.visit-detail-icon svg { width: 20px; height: 20px; stroke: var(--terracotta); fill: none; stroke-width: 1.5; }
.visit-detail-label { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 4px; }
.visit-detail-value { font-size: 0.9375rem; color: var(--brown-dark); line-height: 1.6; }
.visit-detail-value a { transition: color 0.25s ease; }
.visit-detail-value a:hover { color: var(--terracotta); }

/* Contact form */
.visit-form-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--line);
}
.visit-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brown-dark);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--brown-dark);
  background: var(--warm-white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s ease;
}
.form-input:focus, .form-textarea:focus { border-color: var(--terracotta); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--warm-white);
  background: var(--terracotta);
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: background 0.25s ease, transform 0.2s ease;
}
.form-submit:hover { background: var(--terracotta-dark); transform: translateY(-1px); }
.form-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}
.form-success.show { display: block; }
.form-success svg { width: 48px; height: 48px; stroke: var(--terracotta); fill: none; stroke-width: 1.5; margin: 0 auto 16px; }
.form-success p { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--brown-dark); }

/* Map */
.map-section {
  background: var(--sand-light);
  padding: 0 clamp(24px, 5vw, 64px) clamp(60px, 8vw, 100px);
}
.map-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 7;
}
.map-container iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: var(--brown-dark);
  color: rgba(255, 253, 249, 0.7);
  padding: clamp(60px, 8vw, 80px) 0 clamp(32px, 4vw, 48px);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  margin-bottom: 56px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 12px;
}
.footer-brand-name span { color: var(--sand); }
.footer-brand-desc { font-size: 0.875rem; line-height: 1.75; max-width: 320px; }
.footer-heading {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 253, 249, 0.6);
  transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--sand); }
.footer-bottom {
  border-top: 1px solid rgba(255, 253, 249, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 0.8125rem; color: rgba(255, 253, 249, 0.4); }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 253, 249, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.footer-social:hover { border-color: var(--sand); background: rgba(255, 253, 249, 0.05); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(255, 253, 249, 0.6); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .stat-card--top { left: 0; }
  .stat-card--mid { right: 0; }
  .stat-card--bottom { left: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 480px; }
  .menu-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 1; }
  .gallery-item--tall { grid-row: span 1; aspect-ratio: 1; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stat-card { display: none; }
  .about-features { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
