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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== Utility ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Navigation ===== */
.nav-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(4, 120, 87, 0.1);
  transition: box-shadow 0.3s ease;
}

.nav-scrolled.scrolled {
  box-shadow: 0 4px 30px rgba(4, 120, 87, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #047857;
}

.nav-logo-icon {
  color: #047857;
}

.nav-logo-text {
  letter-spacing: -0.01em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #064e3b;
  position: relative;
  padding: 4px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #047857;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: #047857;
}

.nav-cta {
  background: #047857;
  color: #fdfbf7 !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover,
.nav-cta:focus {
  background: #065f46;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #047857;
  transition: background 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(4, 120, 87, 0.1);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon line:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #fdfbf7 0%, #f5f0e6 50%, #ecfdf5 100%);
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 2px 2px, #047857 1px, transparent 0);
  background-size: 32px 32px;
}

.hero-content {
  padding: 0 48px 0 64px;
  max-width: 600px;
  margin: 0 auto;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(4, 120, 87, 0.1);
  color: #047857;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(4, 120, 87, 0.15);
}

.hero-badge svg {
  color: #047857;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #022c22;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: #047857;
}

.hero-subheadline {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #065f46;
  margin-bottom: 36px;
  opacity: 0.85;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #047857;
  color: #fdfbf7;
  box-shadow: 0 4px 16px rgba(4, 120, 87, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #065f46;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4, 120, 87, 0.35);
  color: #fdfbf7;
}

.btn-secondary {
  background: transparent;
  color: #047857;
  border: 2px solid rgba(4, 120, 87, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(4, 120, 87, 0.08);
  border-color: #047857;
  color: #047857;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #047857;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: #065f46;
  opacity: 0.7;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(4, 120, 87, 0.2);
}

.hero-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
  height: 100%;
  max-height: 680px;
  padding: 0 48px 0 0;
}

.hero-img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-img:hover img {
  transform: scale(1.05);
}

.hero-img-1 {
  grid-column: 1 / -1;
  grid-row: 1 / 2;
}

.hero-img-2 {
  grid-column: 1 / 2;
  grid-row: 2 / 4;
}

.hero-img-3 {
  grid-column: 2 / 3;
  grid-row: 2 / 4;
}

/* ===== Section Shared ===== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #047857;
  margin-bottom: 12px;
  padding: 6px 14px;
  background: rgba(4, 120, 87, 0.08);
  border-radius: 100px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #065f46;
  opacity: 0.75;
}

/* ===== Services ===== */
.services {
  padding: 100px 0;
  background: #fdfbf7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(4, 120, 87, 0.08);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #047857, #10b981);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(4, 120, 87, 0.1);
  border-color: rgba(4, 120, 87, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 120, 87, 0.08);
  border-radius: 12px;
  color: #047857;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(4, 120, 87, 0.12);
}

.service-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #022c22;
  margin-bottom: 10px;
}

.service-description {
  font-size: 0.925rem;
  line-height: 1.65;
  color: #065f46;
  opacity: 0.8;
}

/* ===== About ===== */
.about {
  padding: 100px 0;
  background: linear-gradient(180deg, #ecfdf5 0%, #fdfbf7 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(4, 120, 87, 0.12);
}

.about-image-main img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(4, 120, 87, 0.15);
  border: 4px solid #fdfbf7;
}

.about-image-accent img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: #047857;
  color: #fdfbf7;
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(4, 120, 87, 0.3);
}

.about-badge-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
  margin-top: 4px;
}

.about-content .section-tag {
  margin-bottom: 12px;
}

.about-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #065f46;
  opacity: 0.85;
  margin-bottom: 16px;
}

.about-values {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-value-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 120, 87, 0.1);
  border-radius: 50%;
  color: #047857;
  margin-top: 2px;
}

.about-value span {
  font-size: 0.9rem;
  color: #065f46;
  line-height: 1.5;
}

/* ===== Gallery ===== */
.gallery {
  padding: 100px 0;
  background: #fdfbf7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item-wide {
  grid-column: span 2;
}

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

.gallery-item-wide img {
  height: 300px;
}

.gallery-item:not(.gallery-item-wide) img {
  height: 280px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 44, 34, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay span {
  color: #fdfbf7;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
}

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

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

/* ===== Testimonials ===== */
.testimonials {
  padding: 100px 0;
  background: #022c22;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 2px 2px, #10b981 1px, transparent 0);
  background-size: 32px 32px;
}

.testimonials .section-tag {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
}

.testimonials .section-title {
  color: #fdfbf7;
}

.testimonials .section-subtitle {
  color: #a7f3d0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #fbbf24;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #d1fae5;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(16, 185, 129, 0.3);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  display: block;
  font-weight: 600;
  color: #fdfbf7;
  font-size: 0.95rem;
}

.testimonial-location {
  display: block;
  font-size: 0.8rem;
  color: #6ee7b7;
  opacity: 0.7;
  margin-top: 2px;
}

/* ===== Contact ===== */
.contact {
  padding: 100px 0;
  background: #fdfbf7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #065f46;
  opacity: 0.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 120, 87, 0.08);
  border-radius: 12px;
  color: #047857;
}

.contact-detail-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #047857;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-detail-value {
  display: block;
  font-size: 0.95rem;
  color: #065f46;
  line-height: 1.6;
}

.contact-detail a.contact-detail-value {
  color: #047857;
  font-weight: 500;
}

.contact-detail a.contact-detail-value:hover {
  text-decoration: underline;
}

.contact-hours {
  background: rgba(4, 120, 87, 0.06);
  border: 1px solid rgba(4, 120, 87, 0.1);
  border-radius: 16px;
  padding: 24px 28px;
}

.contact-hours-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #022c22;
  margin-bottom: 16px;
}

.contact-hours-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #065f46;
  padding: 6px 0;
  border-bottom: 1px solid rgba(4, 120, 87, 0.06);
}

.contact-hour-row:last-child {
  border-bottom: none;
}

.contact-hour-row span:last-child {
  font-weight: 500;
  color: #047857;
}

/* Form */
.contact-form-wrapper {
  background: #fff;
  border: 1px solid rgba(4, 120, 87, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(4, 120, 87, 0.06);
}

.contact-form-header {
  margin-bottom: 28px;
}

.contact-form-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #022c22;
  margin-bottom: 8px;
}

.contact-form-header p {
  font-size: 0.9rem;
  color: #065f46;
  opacity: 0.7;
}

.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: 500;
  color: #065f46;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(4, 120, 87, 0.15);
  border-radius: 10px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  color: #022c22;
  background: #fdfbf7;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #065f46;
  opacity: 0.4;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #047857;
  box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23047857' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 120, 87, 0.1);
  border-radius: 50%;
  color: #047857;
}

.form-success h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #022c22;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.95rem;
  color: #065f46;
  opacity: 0.8;
  line-height: 1.6;
}

/* ===== Map ===== */
.map-section {
  background: #022c22;
}

.map-container {
  filter: saturate(0.6) brightness(1.05);
  border-radius: 0;
}

.map-container iframe {
  display: block;
}

/* ===== Footer ===== */
.footer {
  background: #022c22;
  color: #d1fae5;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fdfbf7;
  margin-bottom: 16px;
}

.footer-logo svg {
  color: #6ee7b7;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #a7f3d0;
  opacity: 0.7;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fdfbf7;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #a7f3d0;
  opacity: 0.7;
  transition: opacity 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus {
  opacity: 1;
  color: #6ee7b7;
  padding-left: 4px;
}

.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #a7f3d0;
  opacity: 0.7;
  margin-bottom: 4px;
}

.footer-contact a {
  color: #6ee7b7;
}

.footer-contact a:hover,
.footer-contact a:focus {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: #6ee7b7;
  opacity: 0.5;
}

.footer-bottom p {
  margin: 0;
}

/* ===== Mobile Menu ===== */
@media (max-width: 1023px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(4, 120, 87, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu a {
    padding: 12px 16px;
    width: 100%;
    border-radius: 8px;
  }

  .nav-menu a:hover,
  .nav-menu a:focus {
    background: rgba(4, 120, 87, 0.06);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1023px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 0 80px;
    min-height: auto;
  }

  .hero-content {
    padding: 0 24px;
    text-align: center;
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-grid {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-main img {
    height: 450px;
  }

  .about-image-accent {
    width: 160px;
    bottom: -20px;
    right: -10px;
  }

  .about-image-accent img {
    height: 185px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 639px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-headline {
    font-size: 2.25rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .services {
    padding: 72px 0;
  }

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

  .about {
    padding: 72px 0;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-badge {
    right: 10px;
    top: -10px;
  }

  .gallery {
    padding: 72px 0;
  }

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

  .gallery-item-wide {
    grid-column: span 1;
  }

  .gallery-item-wide img,
  .gallery-item:not(.gallery-item-wide) img {
    height: 240px;
  }

  .testimonials {
    padding: 72px 0;
  }

  .contact {
    padding: 72px 0;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 1;
  }
}

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

  html {
    scroll-behavior: auto;
  }

  .hero-img img,
  .gallery-item img {
    transform: none;
  }

  .service-card:hover,
  .testimonial-card:hover {
    transform: none;
  }
}
