:root {
  --bg: #fcfaf8;
  --surface: #ffffff;
  --surface-2: #f4efea;
  --text: #2f241d;
  --muted: #6e5d51;
  --line: rgba(72, 41, 27, 0.12);
  --primary: #4a291b;
  --primary-2: #a98b69;
  --accent: #d5b293;
  --shadow: 0 20px 45px rgba(56, 34, 23, 0.12);
  --radius: 24px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100% - 2rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container { width: var(--container); margin: 0 auto; }
.section { padding: 88px 0; }
.section.muted { background: var(--surface-2); }
.page-shell { overflow-x: hidden; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.8);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: flex; align-items: center; gap: .9rem; }
.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(72,41,27,.15);
}
.brand-text { display: flex; flex-direction: column; }
.brand-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  letter-spacing: .02em;
}
.brand-text small { color: var(--muted); }

.site-nav { display: flex; align-items: center; gap: 1.2rem; }
.site-nav a { color: var(--muted); font-weight: 600; }
.site-nav a:hover { color: var(--primary); }
.nav-cta {
  padding: .8rem 1.1rem;
  background: var(--primary);
  color: #fff !important;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 48px; height: 48px;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 26px; height: 2px;
  margin: 6px auto;
  background: var(--primary);
  transition: .3s ease;
}

.hero { position: relative; min-height: 90vh; display: grid; align-items: center; }
.hero-media, .hero-media img, .hero-overlay {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero-media img { object-fit: cover; object-position: center; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(28,17,12,.72) 0%, rgba(28,17,12,.35) 36%, rgba(28,17,12,.08) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 4rem 0; }
.hero-card {
  max-width: 640px;
  padding: 2.2rem;
  border-radius: 30px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  color: #fff;
}
.eyebrow {
  margin: 0 0 .85rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent);
}
.hero h1, .section-heading h2, .section-copy h2 {
  margin: 0 0 1rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.08;
}
.hero h1 { font-size: clamp(2.4rem, 5vw, 4.6rem); }
.hero p { color: rgba(255,255,255,.92); font-size: 1.04rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.5rem; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: .95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 12px 24px rgba(72,41,27,.2); }
.btn-secondary { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.28); }
.btn.full { width: 100%; border: none; cursor: pointer; }

.split-grid, .video-grid, .contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}
.section-copy p { color: var(--muted); font-size: 1.02rem; }
.feature-list { display: grid; gap: 1rem; margin-top: 2rem; }
.feature-list article, .service-card, .social-card, .form-panel, .contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.feature-list article { padding: 1.25rem; }
.feature-list h3, .service-card h3, .social-card h3 { margin: 0 0 .45rem; }
.feature-list p, .service-card p, .social-card p { margin: 0; color: var(--muted); }

.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  min-height: 520px;
  box-shadow: var(--shadow);
}
.showcase-card img { width: 100%; height: 100%; object-fit: cover; }
.showcase-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: .85rem 1rem;
  background: rgba(255,255,255,.9);
  border-radius: 999px;
  font-weight: 700;
}

.center { text-align: center; max-width: 760px; margin: 0 auto 2rem; }
.section-heading h2, .section-copy h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.section-heading p { color: var(--muted); }
.services-grid, .social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}
.service-card { padding: 1.5rem; }
.service-number {
  display: inline-flex;
  width: 48px; height: 48px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  background: var(--surface-2);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.gallery-item {
  border: 0;
  padding: 0;
  background: none;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  min-height: 220px;
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; min-height: 460px; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.video-frame {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem;
}
.social-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.5rem; font-weight: 800;
}

.contact-section {
  background: linear-gradient(180deg, rgba(213,178,147,.14), rgba(255,255,255,1));
}
.contact-panel, .form-panel { padding: 1.6rem; }
.contact-list { display: grid; gap: .8rem; margin: 1rem 0 1.4rem; color: var(--muted); }
.contact-list a, .contact-list p { margin: 0; }
.map-frame, .map-frame iframe {
  width: 100%; border: 0; border-radius: 20px; min-height: 320px;
}
.form-row { display: grid; gap: .45rem; margin-bottom: 1rem; }
.form-row label { font-weight: 600; }
.form-row input, .form-row textarea {
  width: 100%;
  padding: .95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(72,41,27,.14);
  background: #fff;
  color: var(--text);
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--primary-2);
  box-shadow: 0 0 0 4px rgba(169,139,105,.14);
}

.site-footer {
  padding: 1.4rem 0 2rem;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-content { text-align: center; color: var(--muted); }
.footer-content a { color: var(--primary); font-weight: 700; }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366;
  box-shadow: 0 18px 28px rgba(0,0,0,.18);
  z-index: 40;
}
.floating-whatsapp svg { width: 32px; fill: white; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 10, .88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  z-index: 100;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-image {
  max-width: min(1100px, 96vw);
  max-height: 86vh;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,.28);
}
.lightbox-close {
  position: absolute;
  top: 18px; right: 22px;
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@media (max-width: 980px) {
  .split-grid, .video-grid, .contact-grid, .services-grid, .social-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .showcase-card { min-height: 420px; }
  .hero { min-height: 78vh; }
  .hero-card { max-width: 100%; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: .8rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .25s ease;
  }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .menu-toggle { display: block; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .hero-card { padding: 1.5rem; }
  .hero h1 { font-size: 2.35rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: auto; grid-row: auto; min-height: 260px; }
  .gallery-item { min-height: 240px; }
  .floating-whatsapp { width: 58px; height: 58px; }
}
