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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --dark: #0D0D0D;
  --dark2: #1A1A1A;
  --dark3: #2A2A2A;
  --cream: #F7F3ED;
  --cream2: #EDE8E0;
  --text: #2C2C2C;
  --text-muted: #6B6460;
  --green: #2D6A4F;
  --green-light: #40916C;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 80px rgba(0,0,0,0.18);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.logo-icon {
  color: var(--gold);
  font-size: 1.4rem;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.logo-text em {
  font-style: italic;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.btn-nav {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.btn-nav:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(13,13,13,0.98);
  padding: 20px 24px 28px;
  gap: 20px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(45,106,79,0.3) 100%
  );
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(45,106,79,0.1) 0%, transparent 50%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 700px;
  padding-left: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.45);
}
.btn-primary.light {
  background: var(--white);
  color: var(--dark);
}
.btn-primary.light:hover {
  background: var(--cream);
  box-shadow: 0 8px 30px rgba(255,255,255,0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 400;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.25s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--dark);
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 48px;
  flex: 1;
  min-width: 160px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}
.stat-divider {
  color: var(--gold);
  opacity: 0.3;
  font-size: 1.2rem;
}

/* ===== SECTION SHARED ===== */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 1px;
  background: var(--gold);
}
.section-tag.center { padding-left: 0; text-align: center; display: block; }
.section-tag.center::before { display: none; }
.section-tag.light { color: var(--gold-light); }
.section-tag.light::before { background: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
}
.section-title em {
  font-style: italic;
  color: var(--green);
}
.section-title.light { color: var(--white); }
.section-title.center { text-align: center; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-tag { display: block; text-align: center; padding-left: 0; }
.section-header .section-tag::before { display: none; }
.section-desc {
  max-width: 560px;
  margin: 20px auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.img-stack {
  position: relative;
  height: 500px;
}
.img-main {
  width: 85%;
  height: 420px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 260px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--cream);
}
.img-deco {
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.02rem;
}
.about-text strong { color: var(--dark); font-weight: 500; }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.about-tags span {
  background: var(--cream2);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text);
  transition: all 0.2s;
}
.about-tags span:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ===== CATEGORIES ===== */
.categories {
  padding: 120px 0;
  background: var(--white);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cat-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeUp 0.6s var(--delay, 0s) ease both;
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.cat-img-wrap {
  height: 200px;
  overflow: hidden;
}
.cat-img-wrap img {
  height: 100%;
  transition: transform 0.5s;
}
.cat-card:hover .cat-img-wrap img {
  transform: scale(1.06);
}
.cat-body {
  padding: 24px;
}
.cat-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}
.cat-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}
.cat-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.how-bg {
  position: absolute;
  inset: 0;
}
.how-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.how-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.92), rgba(45,106,79,0.85));
}
.how .container { position: relative; z-index: 2; }
.how .section-header { margin-bottom: 70px; }

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  flex: 1;
  padding: 0 24px;
  text-align: center;
}
.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 20px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 14px;
}
.step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.step-arrow {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
  padding-top: 30px;
  flex-shrink: 0;
}
.how-cta {
  text-align: center;
  margin-top: 60px;
}

/* ===== PROMISE ===== */
.promise {
  padding: 120px 0;
  background: var(--cream);
}
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.promise-text .section-title { margin-bottom: 24px; line-height: 1.05; }
.promise-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.promise-text strong { color: var(--dark); font-weight: 500; }
.promise-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.promise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 400;
}
.promise-item::first-letter { color: var(--green); font-weight: 600; }
.promise-visual { position: relative; }
.promise-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.promise-card img {
  height: 480px;
  object-position: center top;
}
.promise-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--dark);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.badge-big {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.badge-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 120px 0;
  background: var(--white);
}
.gallery-title {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 60px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  height: 100%;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '✦';
  position: absolute;
  font-size: 30rem;
  color: var(--gold);
  opacity: 0.03;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.contact-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.contact .section-tag { color: var(--gold-light); margin-bottom: 20px; }
.contact .section-title { color: var(--white); margin-bottom: 24px; }
.contact .section-title em { color: var(--gold); }
.contact-desc {
  max-width: 580px;
  margin: 0 auto 48px;
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.75;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  padding: 20px 44px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.25s;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(37,211,102,0.45);
}
.contact-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}

/* ===== FOOTER ===== */
.footer {
  background: #080808;
  padding: 50px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer .logo-text { font-family: var(--font-display); font-size: 1.3rem; }
.footer-logo { display: flex; align-items: center; gap: 8px; color: var(--white); }
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}
.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
  margin-top: 12px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .img-stack { height: 360px; }
  .promise-grid { grid-template-columns: 1fr; gap: 48px; }
  .promise-card img { height: 360px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
  .hero-content { padding-left: 40px; }
  .hero-scroll { right: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 120px 24px 80px; max-width: 100%; }
  .stats-band { gap: 0; }
  .stat { padding: 16px 24px; min-width: 140px; }
  .stat-divider { display: none; }
  .steps-grid { flex-direction: column; align-items: center; gap: 32px; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .categories-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .hero-scroll { display: none; }
  .about-images { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .stat-num { font-size: 2.2rem; }
  .section-title { font-size: 2rem; }
}
