:root {
  --deep-sea: #073b4c;
  --teal: #0d6b6b;
  --teal-light: #17a2a2;
  --turquoise: #2ec4c6;
  --sand: #fbf3e6;
  --sand-dark: #f0e3cd;
  --coral: #ff6b5e;
  --coral-dark: #f04c3e;
  --ink: #1c2b2e;
  --ink-soft: #4c6265;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 20px 45px -20px rgba(7, 59, 76, 0.35);
  --shadow-sm: 0 10px 25px -12px rgba(7, 59, 76, 0.25);
  --transition: 0.3s ease;
  --font-head: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

body.no-scroll { overflow: hidden; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--font-head); margin: 0; color: var(--deep-sea); }

a { text-decoration: none; color: inherit; }

ul { margin: 0; padding: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: var(--white);
  box-shadow: 0 14px 30px -10px rgba(240, 76, 62, 0.55);
}
.btn-primary:hover { box-shadow: 0 18px 34px -8px rgba(240, 76, 62, 0.65); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.28); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal-light);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }

.btn-whatsapp, .btn-whatsapp-sm {
  background: #25d366;
  color: var(--white);
}
.btn-whatsapp:hover, .btn-whatsapp-sm:hover { background: #1fb955; }
.btn-whatsapp-sm { padding: 10px 18px; font-size: 0.85rem; }

.icon-wa { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* ---------- Top strip ---------- */
.top-strip {
  background: var(--deep-sea);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
}
.top-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  gap: 12px;
  flex-wrap: wrap;
}
.top-strip a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.top-strip a:hover { color: var(--turquoise); }
.top-strip-phones { display: flex; gap: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(251, 243, 230, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(7, 59, 76, 0.08);
  transition: box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled { box-shadow: 0 8px 24px -14px rgba(7,59,76,0.3); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 1.6rem; }
.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--deep-sea);
}
.logo-text span { color: var(--coral); }

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.main-nav a:hover { color: var(--teal); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width var(--transition);
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px; height: 2.5px;
  background: var(--deep-sea);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,59,76,0.75) 0%, rgba(7,59,76,0.55) 45%, rgba(7,59,76,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 140px 24px 100px;
}
.hero-chip {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.15;
  max-width: 720px;
  margin-bottom: 22px;
}
.hero-content h1 span { color: var(--turquoise); }
.hero-desc {
  max-width: 560px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats { display: flex; gap: 42px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.4rem; font-family: var(--font-head); color: var(--turquoise); }
.hero-stats span { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 5px; height: 5px;
  margin-left: -2.5px;
  background: var(--white);
  border-radius: 50%;
  animation: scrollcue 1.6s infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 24px; }
  100% { opacity: 0; top: 24px; }
}

/* ---------- Section common ---------- */
section { padding: 90px 0; }
.section-tag {
  display: inline-block;
  color: var(--coral-dark);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
section h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
  max-width: 640px;
}
.section-desc {
  color: var(--ink-soft);
  max-width: 620px;
  font-size: 1.02rem;
  margin-bottom: 20px;
}
.features > .container > h2,
.gallery > .container > h2,
.contact > .container > h2 { text-align: left; }

/* ---------- Features ---------- */
.features { background: var(--sand); }
.features .container { text-align: center; }
.features .section-desc { margin: 0 auto 50px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  text-align: left;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg {
  width: 28px; height: 28px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-media-badge {
  position: absolute;
  bottom: -18px; left: 24px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 0.9rem;
}
.about-text p { color: var(--ink-soft); }
.about-points { list-style: none; margin: 22px 0 30px; display: grid; gap: 10px; }
.about-points li { font-weight: 500; color: var(--ink); }

/* ---------- Gallery ---------- */
.gallery { background: var(--white); }
.gallery-filters { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0 40px; }
.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--sand-dark);
  background: var(--sand);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--teal-light); color: var(--teal); }
.filter-btn.active { background: var(--teal); border-color: var(--teal); color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.hidden { display: none; }
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 12px 10px;
  background: linear-gradient(180deg, transparent, rgba(7,59,76,0.85));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--teal), var(--deep-sea));
  color: var(--white);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; max-width: 480px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Location ---------- */
.location { background: var(--sand); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.location-address { font-weight: 600; color: var(--teal); margin-bottom: 16px; font-size: 1.02rem; }
.location-text p:not(.location-address) { color: var(--ink-soft); margin-bottom: 24px; }
.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3.4;
}
.location-map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}
.contact-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.contact-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.2rem;
  margin: 0 auto 16px;
}
.contact-card h3 { margin-bottom: 4px; font-size: 1.25rem; }
.contact-role { color: var(--ink-soft); font-size: 0.88rem; margin: 0 0 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-btns { display: flex; flex-direction: column; gap: 10px; }
.contact-btns .btn { justify-content: center; }
.contact-address-text { color: var(--ink-soft); margin: 0; }
.contact-card-address .contact-avatar { background: linear-gradient(135deg, var(--teal-light), var(--teal)); font-size: 1.6rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--deep-sea);
  color: rgba(255,255,255,0.75);
  padding: 50px 0 30px;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.footer-brand .logo-text { color: var(--white); }
.footer-phones { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.footer-phones a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.footer-phones a:hover { color: var(--turquoise); }
.footer-copy { font-size: 0.82rem; margin-top: 14px; color: rgba(255,255,255,0.5); }
.footer-credit {
  font-size: 0.78rem;
  margin: 2px 0 0;
  color: rgba(255,255,255,0.4);
}
.footer-credit span {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}
.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.85rem;
  margin-top: 4px;
}
.footer-links a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.footer-links a:hover { color: var(--turquoise); }
.footer-links span { color: rgba(255,255,255,0.3); }

/* ---------- FAQ ---------- */
.faq { background: var(--sand); }
.faq .section-desc a { color: var(--teal); font-weight: 600; text-decoration: underline; }
.faq-list {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--deep-sea);
  cursor: pointer;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sand-dark);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--teal); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  margin: 0;
  padding: 0 24px 20px;
  color: var(--ink-soft);
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ---------- Blog ---------- */
.blog-hero {
  background: linear-gradient(120deg, var(--teal), var(--deep-sea));
  color: var(--white);
  padding: 150px 0 70px;
  text-align: center;
}
.blog-hero h1 { color: var(--white); font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 14px; }
.blog-hero p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

.blog-section { background: var(--white); padding: 70px 0 100px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}
.blog-card {
  background: var(--sand);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-card-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.blog-card-tag { color: var(--coral-dark); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.blog-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0 0 18px; flex: 1; }
.blog-card-link { font-weight: 700; color: var(--teal); }
.blog-card-link:after { content: " →"; }

.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--teal); font-weight: 600; }

.article-hero {
  background: linear-gradient(120deg, var(--teal), var(--deep-sea));
  color: var(--white);
  padding: 140px 0 60px;
}
.article-hero .breadcrumb, .article-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.article-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); max-width: 760px; }
.article-meta { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-top: 14px; }

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 40px;
}
.article-body img { border-radius: var(--radius); box-shadow: var(--shadow-sm); margin: 10px 0 30px; }
.article-body h2 { font-size: 1.6rem; margin: 40px 0 16px; }
.article-body h3 { font-size: 1.25rem; margin: 28px 0 12px; }
.article-body p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.02rem; }
.article-body ul, .article-body ol { color: var(--ink-soft); margin: 0 0 22px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--teal); font-weight: 600; text-decoration: underline; }

.article-cta {
  max-width: 760px;
  margin: 10px auto 60px;
  padding: 0 24px;
}
.article-cta-box {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.article-cta-box h3 { margin-bottom: 10px; }
.article-cta-box p { color: var(--ink-soft); margin-bottom: 20px; }
.article-cta-box .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.related-posts {
  max-width: 760px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.related-posts h3 { margin-bottom: 18px; }
.related-posts ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.related-posts a {
  display: inline-block;
  color: var(--teal);
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px dashed var(--sand-dark);
}

@media (max-width: 780px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero, .article-hero { padding-top: 120px; }
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.7);
  z-index: 600;
  animation: pulse-wa 2.4s infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 12px 28px -8px rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 12px 28px -8px rgba(37,211,102,0.7); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 12px 28px -8px rgba(37,211,102,0.7); }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 26px; left: 26px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--deep-sea);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(7, 15, 17, 0.94);
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 88vw; max-height: 84vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--transition);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-close { top: 22px; right: 22px; width: 44px; height: 44px; font-size: 1.1rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.8rem; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ---------- Scroll reveal ---------- */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].in-view { opacity: 1; transform: translateY(0); }

.aos-delay-0 { transition-delay: 0ms; }
.aos-delay-1 { transition-delay: 70ms; }
.aos-delay-2 { transition-delay: 140ms; }
.aos-delay-3 { transition-delay: 210ms; }
.aos-delay-4 { transition-delay: 280ms; }
.aos-delay-5 { transition-delay: 350ms; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
}

@media (max-width: 780px) {
  .top-strip-inner { justify-content: center; text-align: center; }
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--white);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -20px 0 40px rgba(0,0,0,0.15);
    z-index: 400;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.05rem; }
  .hamburger { display: flex; }
  .header-actions .btn-whatsapp-sm span { display: none; }

  .hero-content { padding: 120px 20px 80px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-stats { gap: 24px; }

  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }

  .cta-band-inner { text-align: center; justify-content: center; }
  .cta-band-actions { justify-content: center; width: 100%; }

  section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-content h1 { font-size: 2.1rem; }
  .btn { padding: 12px 20px; font-size: 0.88rem; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .back-to-top { bottom: 18px; left: 18px; }
}
