/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --emerald: #047857;
  --emerald-dark: #065f46;
  --emerald-deeper: #064e3b;
  --emerald-light: #10b981;
  --cream: #faf8f4;
  --cream-dark: #f0ebe3;
  --cream-mid: #e8e0d4;
  --dark: #1a1a1a;
  --dark-soft: #2d2d2d;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Shared ── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(4, 120, 87, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-tag--light {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 20px;
}
.section-title-accent {
  color: var(--emerald);
  font-style: italic;
}
.section-title--light {
  color: var(--white);
}
.section-title--light .section-title-accent {
  color: var(--cream-dark);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 540px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--emerald);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(4,120,87,0.35);
}
.btn-primary:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4,120,87,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--emerald);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--emerald);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(250, 248, 244, 0.96);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--emerald);
  color: var(--white);
  border-radius: 10px;
  font-size: 1.1rem;
  margin-right: 4px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-soft);
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition);
}
.nav-menu a:hover {
  color: var(--emerald);
  background: rgba(4,120,87,0.08);
}
.nav-cta {
  background: var(--emerald) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--emerald-dark) !important;
  color: var(--white) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.hero-shape-circle {
  width: 600px;
  height: 600px;
  background: var(--emerald);
  top: -200px;
  right: -100px;
}
.hero-shape-arc {
  width: 300px;
  height: 300px;
  background: var(--emerald-light);
  bottom: 10%;
  left: -80px;
  opacity: 0.06;
}
.hero-shape-dots {
  width: 120px;
  height: 120px;
  background: var(--cream-mid);
  top: 30%;
  left: 45%;
  opacity: 0.5;
  border-radius: 50%;
  box-shadow:
    20px 0 0 var(--cream-mid),
    40px 0 0 var(--cream-mid),
    0 20px 0 var(--cream-mid),
    20px 20px 0 var(--cream-mid),
    40px 20px 0 var(--cream-mid),
    0 40px 0 var(--cream-mid),
    20px 40px 0 var(--cream-mid),
    40px 40px 0 var(--cream-mid);
}
.hero-shape-stripe {
  position: absolute;
  width: 4px;
  height: 200px;
  background: repeating-linear-gradient(
    to bottom,
    var(--emerald) 0px,
    var(--emerald) 8px,
    transparent 8px,
    transparent 16px
  );
  opacity: 0.15;
  top: 15%;
  right: 38%;
  transform: rotate(15deg);
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(4,120,87,0.08);
  border: 1px solid rgba(4,120,87,0.15);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--dark);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title-accent {
  color: var(--emerald);
  font-style: italic;
  display: block;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-mid);
}

/* Hero image stack */
.hero-img-stack {
  position: relative;
  height: 680px;
}
.hero-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-float {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
}
.hero-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-accent-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--emerald);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(4,120,87,0.4);
  z-index: 2;
}
.hero-img-accent-shape svg {
  width: 36px;
  height: 36px;
  color: var(--white);
}

/* ── MARQUEE ── */
.marquee {
  background: var(--emerald);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  padding: 0 24px;
  letter-spacing: 0.02em;
}
.marquee-bullet {
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  padding: 0 12px;
  font-size: 0.6rem;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SERVICES ── */
.services {
  padding: 120px 0;
  background: var(--cream);
}
.services-header {
  text-align: center;
  margin-bottom: 64px;
}
.services-header .section-desc {
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--cream-mid);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(4,120,87,0.1);
}
.service-card:hover::before {
  background: var(--emerald);
}
.service-card--accent {
  background: var(--emerald);
  color: var(--white);
}
.service-card--accent::before {
  background: rgba(255,255,255,0.3);
}
.service-card--accent:hover::before {
  background: var(--white);
}
.service-card--accent .service-card-title {
  color: var(--white);
}
.service-card--accent .service-card-desc {
  color: rgba(255,255,255,0.8);
}
.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(4,120,87,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card--accent .service-card-icon {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.service-card:hover .service-card-icon {
  transform: scale(1.1) rotate(-5deg);
}
.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-card-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ── ABOUT ── */
.about {
  padding: 120px 0;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--emerald);
  opacity: 0.04;
  border-radius: 50%;
  top: -100px;
  right: -100px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-visual-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: var(--emerald);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.15;
}
.about-content .section-desc {
  margin-bottom: 32px;
}
.about-text {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-features {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-soft);
}
.about-feature svg {
  color: var(--emerald);
  flex-shrink: 0;
}

/* ── GALLERY ── */
.gallery {
  padding: 120px 0;
  background: var(--cream);
}
.gallery-header {
  text-align: center;
  margin-bottom: 64px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item--tall {
  grid-row: span 2;
}

/* ── CTA ── */
.cta {
  padding: 120px 0;
  background: var(--emerald-deeper);
  position: relative;
  overflow: hidden;
}
.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-shape {
  position: absolute;
  border-radius: 50%;
}
.cta-shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.03);
  top: -200px;
  left: -100px;
}
.cta-shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.04);
  bottom: -100px;
  right: 10%;
}
.cta-shape-3 {
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.05);
  top: 20%;
  right: 30%;
}
.cta-card {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── CONTACT ── */
.contact {
  padding: 120px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-detail {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-detail-icon {
  width: 52px;
  height: 52px;
  background: rgba(4,120,87,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 4px;
  font-family: 'DM Sans', sans-serif;
}
.contact-detail p {
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.6;
}
.contact-detail a {
  color: var(--emerald);
  font-weight: 600;
  transition: var(--transition);
}
.contact-detail a:hover {
  color: var(--emerald-dark);
  text-decoration: underline;
}
.contact-map {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-map iframe {
  width: 100%;
}

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}
.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-soft);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cream-mid);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(4,120,87,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-light);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success-icon {
  width: 72px;
  height: 72px;
  background: rgba(4,120,87,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--emerald);
}
.form-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.form-success p {
  color: var(--gray);
  line-height: 1.7;
}
.form-success a {
  color: var(--emerald);
  font-weight: 600;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  line-height: 1.7;
  font-size: 0.95rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer-hours {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  line-height: 1.8;
}
.footer-hours strong {
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}
.footer-bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-bottom a:hover {
  color: var(--white);
}

/* ── SCROLL REVEAL (below-fold only, progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fallback: always visible if JS disabled or reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }
  .hero-img-stack {
    height: 520px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    gap: 48px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 200px);
  }
  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-item--tall {
    grid-row: span 1;
  }
  .contact-grid {
    gap: 48px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-menu a {
    font-size: 1.1rem;
    padding: 12px 0;
    width: 100%;
  }
  .nav-cta {
    margin-top: 16px;
  }

  .hero {
    padding: 100px 0 60px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-img-stack {
    height: 420px;
    order: -1;
  }
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }
  .hero-stats {
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual-accent {
    width: 120px;
    height: 120px;
    bottom: -20px;
    right: -10px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 180px);
  }
  .gallery-item--large {
    grid-column: span 2;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form-wrap {
    padding: 32px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-img-stack {
    height: 320px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item,
  .gallery-item--large,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
    height: 220px;
  }
}
