/* =============================================
   SHRI VISHWANITYAM — MAIN STYLESHEET
   Calm & Earthy Theme | Open Source
============================================= */

:root {
  --green:       #4a7c59;
  --green-light: #6a9e78;
  --green-dark:  #2f5239;
  --cream:       #fbfaf5;
  --cream-mid:   #f2f0e6;
  --cream-dark:  #e8e4d4;
  --gold:        #c9a84c;
  --text:        #2a2a2a;
  --text-mid:    #555;
  --text-light:  #888;
  --white:       #ffffff;
  --radius:      12px;
  --shadow:      0 4px 30px rgba(74,124,89,0.10);
  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: "Cormorant Garamond", serif; line-height: 1.15; }
em { font-style: italic; color: var(--green); }

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

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

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

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SECTION LABELS ─── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(74,124,89,0.09);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 14px;
  color: var(--text);
}

.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  border: 2px solid var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,124,89,0.28);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  border: 2px solid var(--green);
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.center-btn { text-align: center; margin-top: 50px; }

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(251,250,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74,124,89,0.1);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  display: none; /* shown via JS once image loads */
}
.logo-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.1;
}
.logo-sub {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 6px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.nav a:hover, .nav a.active {
  color: var(--green);
  background: rgba(74,124,89,0.09);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-phone {
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  white-space: nowrap;
  transition: var(--transition);
}
.header-phone:hover { color: var(--green-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e3a27 0%, #2f5239 40%, #4a7c59 100%);
  z-index: 0;
}

/* Subtle animated texture */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: heroBgShift 12s ease-in-out infinite alternate;
}

@keyframes heroBgShift {
  from { transform: scale(1); }
  to   { transform: scale(1.04) translateX(10px); }
}

.hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--cream), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 100px;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.35);
  color: #e8d08a;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s 0.15s ease both;
}
.hero h1 em { color: #d4e8c2; font-style: italic; }

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeInUp 0.9s 0.3s ease both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.9s 0.45s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.9s 0.6s ease both;
}
.stat span {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  display: block;
  line-height: 1;
}
.stat p {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.3);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 0.8; transform: scaleY(1.15); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────
   MARQUEE STRIP
───────────────────────────────────────── */
.marquee-strip {
  background: var(--green);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.marquee-track .dot {
  color: rgba(255,255,255,0.45);
  font-size: 10px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services-section {
  padding: 110px 0;
  background: var(--cream);
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(74,124,89,0.14);
  border-color: rgba(74,124,89,0.2);
}
.service-card:hover::before { transform: scaleX(1); }

.card-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 600;
  color: rgba(74,124,89,0.07);
  line-height: 1;
  user-select: none;
}
.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(74,124,89,0.09);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
  transition: var(--transition);
}
.service-card:hover .card-icon {
  background: var(--green);
  color: #fff;
}
.card-icon svg { width: 28px; height: 28px; }

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(74,124,89,0.09);
  padding: 5px 12px;
  border-radius: 50px;
}

/* ─────────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────────── */
.why-section {
  padding: 110px 0;
  background: var(--cream-mid);
}

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

.why-visual {
  position: relative;
}
.why-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.14);
}
.why-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.why-img-wrap:hover img { transform: scale(1.03); }

/* Fallback gradient if image missing */
.why-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31,58,39,0.6) 100%);
}

.why-leaf {
  position: absolute;
  font-size: 36px;
  animation: leafFloat 4s ease-in-out infinite;
  pointer-events: none;
}
.why-leaf-1 { top: -18px; right: -18px; animation-delay: 0s; }
.why-leaf-2 { bottom: 60px; left: -18px; animation-delay: 2s; }
@keyframes leafFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(8deg); }
}

.experience-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--green);
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(74,124,89,0.4);
  z-index: 2;
}
.exp-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}
.exp-text {
  font-size: 12px;
  opacity: 0.82;
  line-height: 1.4;
  margin-top: 4px;
}

.why-text { padding-right: 20px; }
.why-intro {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
}

.why-features { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  background: rgba(74,124,89,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.why-feature:hover .feature-icon {
  background: var(--green);
  transform: scale(1.08);
}
.why-feature strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 3px;
}
.why-feature p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ─────────────────────────────────────────
   GALLERY
───────────────────────────────────────── */
.gallery-section {
  padding: 110px 0;
  background: var(--cream);
}
.gallery-section .container { margin-bottom: 40px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
  padding: 0 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-dark);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
/* Placeholder gradient when image is missing */
.gallery-item::before {
  content: '📷';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 32px;
  opacity: 0.3;
  z-index: 0;
}
.gallery-item img { position: relative; z-index: 1; }

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31,58,39,0.75) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  z-index: 2;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.gallery-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 28px;
  padding: 12px 20px;
  background: var(--cream-mid);
  border-radius: 8px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-note code {
  background: rgba(74,124,89,0.12);
  color: var(--green);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials {
  background: var(--cream-mid);
  padding: 110px 0;
  text-align: center;
}
.testimonials iframe {
  border-radius: var(--radius);
  margin-top: 20px;
}

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq-section {
  padding: 110px 0;
  background: var(--cream);
}
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-left { position: sticky; top: 100px; }
.faq-left p { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-top: 12px; }

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}
.faq-item:first-child { border-top: 1px solid var(--cream-dark); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
  transition: color 0.25s;
}
.faq-question:hover, .faq-question[aria-expanded="true"] { color: var(--green); }

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
}
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }
.faq-answer p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ─────────────────────────────────────────
   VISIT
───────────────────────────────────────── */
.visit-section {
  padding: 110px 0;
  background: var(--cream-mid);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
}

.visit-cards { display: flex; flex-direction: column; gap: 20px; margin: 36px 0 32px; }
.visit-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.visit-card:hover {
  border-color: rgba(74,124,89,0.25);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.vi-icon { font-size: 24px; flex-shrink: 0; }
.visit-card strong { font-size: 14px; font-weight: 500; display: block; margin-bottom: 4px; }
.visit-card p { font-size: 13px; color: var(--text-mid); line-height: 1.65; }
.visit-card p a { color: var(--green); font-weight: 500; }
.visit-card p a:hover { text-decoration: underline; }

.visit-map iframe {
  width: 100%;
  height: 460px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding-top: 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-logo-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.footer-logo-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.footer-desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li, .footer-col p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-col p a { color: rgba(255,255,255,0.7); }
.footer-col p a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ─────────────────────────────────────────
   FLOATING CTA
───────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(74,124,89,0.45);
  z-index: 999;
  transition: var(--transition);
  animation: floatPulse 3s ease-in-out infinite;
}
.floating-cta:hover {
  background: var(--green-dark);
  transform: scale(1.1);
}
.floating-cta svg { width: 24px; height: 24px; }
@keyframes floatPulse {
  0%,100% { box-shadow: 0 8px 28px rgba(74,124,89,0.45); }
  50%      { box-shadow: 0 8px 40px rgba(74,124,89,0.7); }
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(251,250,245,0.97); backdrop-filter: blur(12px); align-items: center; justify-content: center; gap: 8px; z-index: 999; }
  .nav.open { display: flex; }
  .nav a { font-size: 20px; padding: 14px 28px; }
  .hamburger { display: flex; position: relative; z-index: 1000; }

  .why-grid, .visit-grid, .faq-wrap { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { order: -1; }
  .faq-left { position: static; }
  .experience-badge { right: 12px; bottom: -16px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item.tall, .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .hero-content { padding: 120px 24px 80px; }
  .hero-scroll-hint { display: none; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats    { gap: 20px; flex-wrap: wrap; }
  .hero-ctas     { flex-direction: column; }
  .hero-ctas a   { text-align: center; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid  { grid-template-columns: 1fr; }
}
