/* ─── Custom Properties ─── */
:root {
  --forest: #1a3c2a;
  --forest-light: #2a5c42;
  --forest-dark: #0f2619;
  --offwhite: #f5f0e8;
  --offwhite-light: #faf7f2;
  --cream: #ede6d8;
  --gold: #c8a86e;
  --gold-light: #d4b87e;
  --text-dark: #1a1a1a;
  --text-muted: #5a5a5a;
  --text-light: #8a8a8a;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(26, 60, 42, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 60, 42, 0.1);
  --shadow-lg: 0 20px 60px rgba(26, 60, 42, 0.15);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--offwhite);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ─── Utility ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }
.accent { color: var(--forest); }
.accent-light { color: var(--gold-light); }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow-light {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: 24px;
}
.section-header { text-align: center; margin-bottom: 72px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--offwhite);
  border: 2px solid var(--forest);
}
.btn-primary:hover {
  background: var(--forest-light);
  border-color: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-light {
  background: transparent;
  color: var(--offwhite);
  border: 2px solid rgba(245, 240, 232, 0.5);
}
.btn-outline-light:hover {
  background: var(--offwhite);
  color: var(--forest);
  border-color: var(--offwhite);
}
.btn-primary-light {
  background: var(--offwhite);
  color: var(--forest);
  border: 2px solid var(--offwhite);
}
.btn-primary-light:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--forest-dark);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }
.btn-text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--forest);
  padding: 8px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.btn-text:hover { color: var(--forest-light); }

/* ─── Navigation ─── */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.nav-fixed.scrolled {
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand-text {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--offwhite);
  transition: var(--transition);
}
.nav-fixed.scrolled .nav-brand-text { color: var(--forest); }
.nav-brand-sub {
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.nav-fixed.scrolled .nav-brand-sub { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.8);
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-light);
  transition: var(--transition);
}
.nav-link:hover { color: var(--offwhite); }
.nav-link:hover::after { width: 100%; }
.nav-fixed.scrolled .nav-link { color: var(--text-muted); }
.nav-fixed.scrolled .nav-link:hover { color: var(--forest); }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-light);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-fixed.scrolled .nav-phone { color: var(--forest); }
.nav-phone:hover { color: var(--gold); }
.nav-fixed.scrolled .nav-phone:hover { color: var(--gold); }

/* ─── Mobile Menu ─── */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.menu-btn .bar {
  width: 24px;
  height: 2px;
  background: var(--offwhite);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-fixed.scrolled .menu-btn .bar { background: var(--forest); }
.menu-btn.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-btn.active .bar:nth-child(2) { opacity: 0; }
.menu-btn.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--forest-dark);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.menu-overlay.active { opacity: 1; visibility: visible; }
.menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.menu-link {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--offwhite);
  transition: var(--transition);
}
.menu-link:hover { color: var(--gold-light); }
.menu-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-top: 16px;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 38, 25, 0.88) 0%,
    rgba(26, 60, 42, 0.72) 50%,
    rgba(15, 38, 25, 0.82) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 24px;
  margin-left: 8%;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--offwhite);
  margin-bottom: 28px;
}
.hero-headline .accent { color: var(--gold-light); }
.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--offwhite);
}
.hero-stat-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(245, 240, 232, 0.2);
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(245, 240, 232, 0.5);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Services ─── */
.services { background: var(--offwhite); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.service-card {
  background: var(--offwhite-light);
  border: 1px solid rgba(26, 60, 42, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--forest-light);
  transform: scale(1.05);
}
.service-title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.services-cta {
  text-align: center;
  padding: 32px;
  background: var(--cream);
  border-radius: var(--radius-lg);
}
.services-cta p {
  font-family: var(--serif);
  font-size: 1.125rem;
  color: var(--forest);
  margin-bottom: 12px;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
  transition: var(--transition);
}
.link-arrow:hover { gap: 10px; color: var(--forest-light); }
.link-arrow svg { transition: var(--transition); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ─── About ─── */
.about { background: var(--offwhite-light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  height: 600px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--offwhite-light);
  box-shadow: var(--shadow-md);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-content { padding: 16px 0; }
.about-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}
.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.value-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  min-width: 48px;
}
.value-title {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
}
.value-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ─── Gallery ─── */
.gallery { background: var(--offwhite); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(1) img { height: 100%; min-height: 400px; }
.gallery-item:nth-child(4) { grid-row: span 2; }
.gallery-item:nth-child(4) img { height: 100%; min-height: 400px; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 38, 25, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-overlay span {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--offwhite);
  transform: translateY(10px);
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* ─── Testimonials ─── */
.testimonials { background: var(--forest); }
.testimonials .eyebrow { color: var(--gold-light); }
.testimonials .headline { color: var(--offwhite); }
.testimonials .headline .accent { color: var(--gold-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(245, 240, 232, 0.1);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--offwhite);
}

/* ─── CTA Section ─── */
.section-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 38, 25, 0.92) 0%, rgba(26, 60, 42, 0.85) 100%);
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--offwhite);
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ─── Contact ─── */
.contact { background: var(--offwhite-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 40px 0;
}
.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}
.contact-label {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-item a {
  color: var(--forest);
  font-weight: 500;
  transition: var(--transition);
}
.contact-item a:hover { color: var(--forest-light); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; margin-top: 8px; }

/* ─── Form ─── */
.contact-form-wrap {
  background: var(--offwhite);
  border: 1px solid rgba(26, 60, 42, 0.08);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.form-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}
.form-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--offwhite-light);
  border: 1.5px solid rgba(26, 60, 42, 0.12);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus {
  border-color: var(--forest);
  background: var(--offwhite);
  box-shadow: 0 0 0 4px rgba(26, 60, 42, 0.08);
}
.form-input::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success svg { margin: 0 auto 20px; }
.form-success h4 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}
.form-success p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ─── Footer ─── */
.footer {
  background: var(--forest-dark);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}
.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 16px;
}
.footer-logo-main {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--offwhite);
}
.footer-logo-sub {
  font-family: var(--serif);
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
  max-width: 280px;
}
.footer-heading {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 20px;
}
.footer-nav ul,
.footer-hours ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.6);
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--gold-light); }
.hours-day {
  display: block;
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.8);
}
.hours-time {
  display: block;
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.5);
}
.hours-time.closed { color: var(--gold); }
.footer-contact p {
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
  margin-bottom: 4px;
}
.footer-contact a {
  color: var(--gold);
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(245, 240, 232, 0.35);
}

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .hero-content { margin-left: 0; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { height: 400px; margin-bottom: 8px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-item:nth-child(1) img { min-height: 250px; }
  .gallery-item:nth-child(4) { grid-row: span 1; }
  .gallery-item:nth-child(4) img { min-height: 250px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .btn { padding: 14px 28px; font-size: 0.8125rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}
