:root {
  --primary: #b48a5c;
  --primary-dark: #8d6a44;
  --accent: #d4af7a;
  --dark: #1a1a1a;
  --light: #faf8f5;
  --muted: #6b6b6b;
  --border: #e8e2d8;
  --whats: #25d366;
  --whats-dark: #128c7e;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* TOPBAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.brand-title {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}
.brand-sub {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 2px;
}
.topnav { display: flex; gap: 28px; }
.topnav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: color .2s;
}
.topnav a:hover { color: var(--primary); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .3px;
  border: 0;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(180, 138, 92, 0.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-secondary {
  background: #fff;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-secondary:hover { background: var(--dark); color: #fff; }
.btn-whats {
  background: var(--whats);
  color: #fff;
  padding: 10px 22px;
  font-size: 14px;
}
.btn-whats:hover { background: var(--whats-dark); }

/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 760px;
}
.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212, 175, 122, 0.25);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--accent); font-style: italic; }
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: #f1ece4;
  max-width: 580px;
  margin-bottom: 32px;
}
.offer-card {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 22px 28px;
  border-radius: 18px;
  margin-bottom: 32px;
}
.offer-price { display: flex; flex-direction: column; }
.offer-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f1ece4;
}
.offer-value {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-top: 4px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 600px;
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--accent);
}
.hero-meta span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d8d2c6;
}

/* SECTION */
.section { padding: 96px 0; }
.section-alt { background: #fff; }
.section-dark { background: var(--dark); color: #fff; }
.section-cta { background: linear-gradient(135deg, #f4ece0 0%, #e9dcc7 100%); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--dark);
}
.section-title.light { color: #fff; }
.section-lead {
  text-align: center;
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-lead.light { color: #cfc8bb; }

.sub-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
}

/* GRID */
.grid {
  display: grid;
  gap: 24px;
}
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: #fff;
  padding: 32px 26px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--primary);
}
.card p { color: var(--muted); font-size: 15px; }

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery figure {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}
.gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
}

/* TWO COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.check-list { list-style: none; }
.check-list li {
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--border);
  position: relative;
  color: var(--dark);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--primary);
  font-weight: 700;
}
.img-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }

/* VIDEO */
.video-wrap {
  position: relative;
  padding-top: 56.25%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* TEAM */
.team figure {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.team figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
}

/* CTA */
.cta-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.cta-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
  color: var(--dark);
}
.cta-wrap p {
  color: var(--dark);
  font-size: 17px;
  margin-bottom: 28px;
}
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-img img {
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: #cfc8bb;
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}
.footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
}
.footer p { font-size: 14px; line-height: 1.7; }
.footer a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  color: #888;
}

/* FLOATING WHATSAPP */
.floating-whats {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--whats);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  z-index: 60;
  transition: transform .2s;
}
.floating-whats:hover { transform: scale(1.08); background: var(--whats-dark); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .cta-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .topnav { display: none; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 72px 0; }
}

@media (max-width: 560px) {
  .grid-4, .grid-3, .gallery, .footer-grid { grid-template-columns: 1fr; }
  .topbar-cta { padding: 8px 16px; font-size: 13px; }
  .offer-card { padding: 18px; }
  .offer-value { font-size: 36px; }
  .hero-content { padding: 60px 20px; }
}
