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

:root {
  --coral: #E85D4A;
  --coral-light: #f07868;
  --coral-dark: #c94a38;
  --charcoal: #1A1A2E;
  --charcoal-light: #2d2d44;
  --cream: #FDF8F6;
  --cream-dark: #f5ece8;
  --white: #ffffff;
  --gray-100: #f7f7f8;
  --gray-200: #e8e8ec;
  --gray-400: #9494a8;
  --gray-600: #5a5a72;
  --gray-800: #2a2a3e;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(26,26,46,0.06);
  --shadow-md: 0 8px 30px rgba(26,26,46,0.10);
  --shadow-lg: 0 20px 60px rgba(26,26,46,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,93,74,0.35);
}
.btn-coral:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,93,74,0.45);
}

.btn-charcoal {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-charcoal:hover {
  background: var(--charcoal-light);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; padding: 16px 24px; }

/* ===== SECTION HEADERS ===== */
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(232,93,74,0.10);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.text-coral { color: var(--coral); }
.text-charcoal { color: var(--charcoal); }

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

.section-header {
  margin-bottom: 60px;
}
.section-header.center {
  text-align: center;
}
.section-header.center .section-desc {
  margin: 0 auto;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,248,246,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,26,46,0.06);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(253,248,246,0.95);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
}
.nav-logo-icon { flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding-top: 72px;
}

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

.shape-coral-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,74,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.shape-charcoal-rect {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  bottom: 15%;
  left: -40px;
  opacity: 0.04;
  transform: rotate(15deg);
}

.shape-coral-stripe {
  position: absolute;
  width: 8px;
  height: 300px;
  background: var(--coral);
  opacity: 0.15;
  top: 20%;
  left: 12%;
  border-radius: 4px;
}

.shape-dot-grid {
  position: absolute;
  width: 120px;
  height: 120px;
  bottom: 20%;
  right: 38%;
  background-image: radial-gradient(circle, var(--coral) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.2;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { padding-right: 20px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--coral);
  background: rgba(232,93,74,0.08);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

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

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

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 680px;
}

.hero-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 85%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-float {
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 50%;
  height: 45%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.hero-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-accent-block {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  background: var(--coral);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(232,93,74,0.4);
  z-index: 2;
}
.accent-block-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.85;
  margin-bottom: 2px;
}
.accent-block-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

/* Hero Scroll */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero-scroll span {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-400);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--coral), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

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

.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  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(--coral);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(232,93,74,0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(232,93,74,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--coral);
}
.service-card:hover .service-icon-wrap svg {
  stroke: var(--white);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(232,93,74,0.05);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

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

.about-visual { position: relative; }

.about-img-stack {
  position: relative;
  height: 600px;
}

.about-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 75%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-1 img { width: 100%; height: 100%; object-fit: cover; }

.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.about-img-2 img { width: 100%; height: 100%; object-fit: cover; }

.about-accent {
  position: absolute;
  bottom: 40%;
  left: 55%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(232,93,74,0.4);
  z-index: 2;
}

.about-content { position: relative; z-index: 1; }

.about-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
}

.feature-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(232,93,74,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 120px 0;
  background: var(--white);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  cursor: pointer;
}
.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-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

/* ===== VISIT BANNER ===== */
.visit-banner {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.visit-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.v-shape {
  position: absolute;
  border-radius: 50%;
}
.v-shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(232,93,74,0.08);
  top: -200px;
  left: -100px;
}
.v-shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(232,93,74,0.06);
  bottom: -100px;
  right: 5%;
}

.visit-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.visit-content .section-title { color: var(--white); }
.visit-content .section-desc { color: rgba(255,255,255,0.65); }

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.visit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(232,93,74,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visit-detail strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  margin-bottom: 4px;
}
.visit-detail p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.visit-detail a {
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.visit-detail a:hover { color: var(--coral); }

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: var(--cream);
}

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

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-method:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.cm-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(232,93,74,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method span {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,93,74,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(232,93,74,0.08);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
}
.form-success.show { display: flex; }

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  padding: 80px 0 0;
}

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

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--white); }

.footer-contact li:last-child {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* ===== REVEAL ANIMATIONS ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal].revealed:nth-child(2) { transition-delay: 0.1s; }
[data-reveal].revealed:nth-child(3) { transition-delay: 0.2s; }
[data-reveal].revealed:nth-child(4) { transition-delay: 0.3s; }
[data-reveal].revealed:nth-child(5) { transition-delay: 0.4s; }
[data-reveal].revealed:nth-child(6) { transition-delay: 0.5s; }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    height: 480px;
    max-width: 500px;
  }
  .hero-content { padding-right: 0; }
  .hero-headline { font-size: clamp(2rem, 6vw, 3.2rem); }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-img-stack { height: 450px; max-width: 500px; }

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

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

  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,248,246,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-toggle { display: flex; }

  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-inner { gap: 48px; }
  .hero-visual { height: 400px; }
  .hero-img-main { width: 90%; height: 90%; }
  .hero-img-float { width: 55%; height: 50%; }
  .hero-stats { gap: 20px; }
  .hero-scroll { display: none; }

  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .about { padding: 80px 0; }
  .about-img-stack { height: 380px; }
  .about-features { grid-template-columns: 1fr; }

  .gallery { padding: 80px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .visit-banner { padding: 80px 0; }
  .visit-details { gap: 20px; }

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

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

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .gallery-grid { grid-template-columns: 1fr; }
}
