:root {
  --bg: #f7f0e7;
  --bg-soft: #efe2d2;
  --surface: rgba(255,255,255,0.7);
  --card: #fffaf5;
  --text: #2f1c12;
  --muted: #6f5b4f;
  --accent: #2b1a0f;
  --accent-2: #7d5a40;
  --line: rgba(43, 26, 15, 0.12);
  --shadow: 0 18px 45px rgba(43, 26, 15, 0.12);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #fbf6f0 0%, var(--bg) 40%, #f9f3ec 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.section { padding: 84px 0; }
.section-tag {
  display: inline-block;
  margin: 0 0 8px;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
}
h1, h2, h3, .brand strong { font-family: 'Cormorant Garamond', serif; }
h1 { font-size: clamp(3rem, 6vw, 5.6rem); line-height: .92; margin: 0 0 20px; text-shadow: 0 8px 26px rgba(0,0,0,.22); }
h1 span { color: #fff; }
h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); line-height: 1; margin: 0 0 16px; }
h3 { font-size: 1.8rem; margin: 0 0 12px; }
p { line-height: 1.7; color: var(--muted); }
.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(251, 246, 240, 0.78);
  border-bottom: 1px solid rgba(43, 26, 15, 0.08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 84px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.brand strong { font-size: 1.5rem; display: block; letter-spacing: .05em; }
.brand small { color: var(--muted); }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { font-weight: 600; font-size: .95rem; position: relative; }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--accent);
  transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.8rem; color: var(--accent); }
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden;
}
.hero-bg, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg { object-fit: cover; }
.hero-overlay { background: linear-gradient(100deg, rgba(22,12,7,.82) 0%, rgba(22,12,7,.62) 32%, rgba(22,12,7,.30) 58%, rgba(22,12,7,.12) 100%); }
.hero-content {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .7fr; gap: 32px; align-items: end;
  padding: 70px 0 40px;
}
.hero-copy { max-width: 720px; background: linear-gradient(135deg, rgba(24,13,9,.64), rgba(24,13,9,.34)); border: 1px solid rgba(255,255,255,.14); border-radius: 30px; padding: 34px 34px 28px; backdrop-filter: blur(8px); box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.eyebrow {
  color: rgba(255,255,255,.78); margin: 0 0 18px; text-transform: uppercase; letter-spacing: .22em; font-size: .8rem; font-weight: 700;
}
.hero-text { font-size: 1.08rem; max-width: 620px; color: rgba(255,255,255,.95); text-shadow: 0 4px 16px rgba(0,0,0,.18); }
.hero-copy h1, .hero-copy p, .hero-highlights li { color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 52px;
  padding: 0 24px; border-radius: 999px; font-weight: 700; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-secondary { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.24); }
.btn-block { width: 100%; }
.hero-highlights {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0;
}
.hero-highlights li {
  padding: 10px 14px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: .92rem; box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.glass {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.hero-card { padding: 28px; max-width: 360px; justify-self: end; }
.hero-card img { width: 88px; height: 88px; object-fit: cover; border-radius: 50%; margin-bottom: 16px; }
.hero-card h2 { color: #fff; margin-bottom: 8px; }
.hero-card p { color: rgba(255,255,255,.86); margin: 0; }
.grid-two, .location-grid, .contact-grid, .social-wrap { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; align-items: center; }
.info-panel, .social-card, .contact-form, .map-wrap, .benefit, .service-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.info-panel { padding: 30px; display: grid; gap: 22px; }
.info-panel strong { display: block; margin-bottom: 6px; color: var(--accent); }
.section-head { text-align: center; max-width: 740px; margin: 0 auto 34px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.service-card { overflow: hidden; }
.service-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.service-copy { padding: 20px; }
.service-copy p { margin: 0; }
.benefits { padding-top: 0; }
.benefits-wrap { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.benefit { padding: 28px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.gallery-item {
  border: 0; padding: 0; background: transparent; cursor: pointer; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.social-card { padding: 30px; }
.social-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.social-links a {
  padding: 12px 18px; border-radius: 999px; background: var(--bg-soft); color: var(--accent); font-weight: 700;
}
.video-wrap {
  overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line);
  background: #000; aspect-ratio: 16/9;
}
.video-wrap iframe, .map-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-wrap { min-height: 420px; overflow: hidden; }
.contact-form { padding: 28px; display: grid; gap: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid rgba(43,26,15,.14); background: #fff; border-radius: 16px; padding: 15px 16px; font: inherit; color: var(--text);
}
.contact-form small { color: var(--muted); }
.contact-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; color: var(--muted); }
.site-footer { padding: 26px 0 36px; border-top: 1px solid var(--line); }
.footer-wrap { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-wrap p { margin: 0; }
.floating-actions {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
}
.fab {
  display: inline-flex; align-items: center; justify-content: center; min-width: 60px; min-height: 60px; padding: 0 18px;
  border-radius: 999px; box-shadow: 0 16px 36px rgba(0,0,0,.22); color: #fff; font-weight: 800;
}
.fab-whatsapp { background: #1f9d54; }
.lightbox {
  position: fixed; inset: 0; background: rgba(10, 10, 10, .84); display: none; align-items: center; justify-content: center; padding: 30px; z-index: 100;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(92vw, 900px); max-height: 88vh; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,.36); }
.lightbox-close {
  position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; border: 0; border-radius: 50%; font-size: 2rem; cursor: pointer;
}
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
@media (max-width: 1024px) {
  .hero-content, .grid-two, .location-grid, .contact-grid, .social-wrap, .cards-grid, .benefits-wrap, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-card { justify-self: start; }
}
@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .nav {
    position: absolute; top: 84px; left: 1rem; right: 1rem; background: rgba(251,246,240,.98); border: 1px solid var(--line); border-radius: 20px;
    padding: 14px; display: none; flex-direction: column; align-items: flex-start; box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .hero { min-height: auto; }
  .hero-content, .grid-two, .location-grid, .contact-grid, .social-wrap, .cards-grid, .benefits-wrap, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-content { padding: 110px 0 36px; }
  .hero-card { max-width: 100%; }
  .section { padding: 72px 0; }
  .brand strong { font-size: 1.2rem; }
  .brand small { font-size: .78rem; }
  .fab span { display: none; }
  .footer-wrap { flex-direction: column; }
}

@media (max-width: 760px) {
  .hero-copy { padding: 26px 20px 22px; border-radius: 24px; }
  h1 { font-size: clamp(2.6rem, 10vw, 4rem); }
}
