:root {
  --bg: #f6f0e9;
  --bg-soft: #fbf6f1;
  --card: rgba(255, 252, 248, 0.88);
  --text: #2c1a12;
  --muted: #735f53;
  --accent: #2f180f;
  --accent-soft: #7b5e4b;
  --line: rgba(47, 24, 15, 0.12);
  --shadow: 0 18px 50px rgba(47, 24, 15, 0.12);
  --radius: 28px;
  --container: min(1180px, calc(100% - 2rem));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbf7f1 0%, #f6efe8 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 96px 0; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: .95; margin: 0 0 16px; }
h1 { font-size: clamp(3.2rem, 7vw, 6.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2.4rem, 4.5vw, 4rem); }
h3 { font-size: 2rem; }
p { margin: 0 0 16px; line-height: 1.7; }
.section-tag, .eyebrow {
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 800;
}
.section-tag { color: var(--accent-soft); margin-bottom: 14px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(251, 246, 241, 0.74);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.brand img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
}
.brand strong {
  display: block;
  font-size: clamp(1.4rem, 2vw, 2rem);
  letter-spacing: .08em;
}
.brand small { color: var(--muted); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
.lang-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: rgba(47, 24, 15, 0.06);
  border-radius: 999px;
  border: 1px solid var(--line);
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--accent);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}
.lang-btn.active {
  background: var(--accent);
  color: #fff;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav a {
  font-weight: 700;
  font-size: .95rem;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .25s ease;
}
.nav a:hover::after,
.nav a:focus-visible::after { width: 100%; }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 1.8rem;
  cursor: pointer;
}
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg, .hero-overlay, .hero-soft {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg { object-fit: cover; object-position: center; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(20, 11, 7, 0.92) 0%, rgba(20, 11, 7, 0.72) 34%, rgba(20, 11, 7, 0.35) 58%, rgba(20, 11, 7, 0.16) 100%);
}
.hero-soft {
  background: radial-gradient(circle at 28% 36%, rgba(255,255,255,0.18), transparent 32%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .55fr);
  gap: 28px;
  align-items: end;
  padding: 92px 0 48px;
}
.hero-copy {
  max-width: 740px;
  color: #fff;
  padding: 36px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(135deg, rgba(24,13,9,.80), rgba(24,13,9,.46));
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
}
.hero-copy h1 { color: #fff; text-wrap: balance; }
.hero-copy p { color: rgba(255,255,255,.95); }
.eyebrow { color: rgba(255,255,255,.78); margin-bottom: 16px; }
.hero-text {
  max-width: 600px;
  font-size: 1.08rem;
  text-shadow: 0 6px 18px rgba(0,0,0,.22);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  cursor: pointer;
}
.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,.26); }
.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;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: .93rem;
}
.glass {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.hero-panel {
  padding: 28px;
  color: #fff;
  border-radius: 30px;
}
.hero-logo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  background: #fff;
}
.hero-panel p { color: rgba(255,255,255,.9); }
.hero-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hero-mini-links a,
.social-links a,
.social-fallback a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  background: var(--bg-soft);
  color: var(--accent);
  border: 1px solid var(--line);
}
.grid-two,
.social-wrap,
.location-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}
.info-panel,
.service-card,
.benefit,
.social-card,
.contact-form,
.map-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-panel,
.social-card,
.contact-form { padding: 30px; }
.info-panel { display: grid; gap: 20px; }
.info-panel strong { display: block; margin-bottom: 6px; color: var(--accent); }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}
.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; color: var(--muted); }
.benefits { padding-top: 0; }
.benefits-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.benefit { padding: 28px; }
.benefit p { margin: 0; color: var(--muted); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.gallery-item {
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  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.05); }
.social-embed {
  display: grid;
  gap: 18px;
  justify-items: center;
}
.instagram-embed {
  width: 100%;
  min-height: 360px;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.social-fallback {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.social-fallback img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.video-wrap {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #000;
}
.video-wrap iframe,
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-wrap {
  min-height: 440px;
  overflow: hidden;
}
.location-actions { margin-top: 18px; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; font-weight: 700; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(47,24,15,.15);
  background: #fff;
  color: var(--text);
  font: inherit;
}
.contact-form small,
.contact-list { color: var(--muted); }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}
.compact { margin-top: 22px; }
.site-footer {
  padding: 30px 0 40px;
  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: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 62px;
  min-height: 62px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(0,0,0,.22);
}
.fab svg { width: 22px; height: 22px; }
.fab-call { background: var(--accent); }
.fab-whatsapp { background: #1ea85d; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.84);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(92vw, 980px);
  max-height: 88vh;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(0,0,0,.36);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
}
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  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: 1080px) {
  .hero-content,
  .cards-grid,
  .benefits-wrap,
  .gallery-grid,
  .grid-two,
  .social-wrap,
  .location-grid,
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: 92px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(251,246,241,.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .hero { min-height: auto; }
  .hero-content,
  .cards-grid,
  .benefits-wrap,
  .gallery-grid,
  .grid-two,
  .social-wrap,
  .location-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 114px 0 42px; }
  .hero-copy { padding: 28px 22px; }
  .hero-panel { max-width: 100%; }
  .section { padding: 76px 0; }
}
@media (max-width: 560px) {
  .brand strong { font-size: 1.18rem; }
  .brand small { font-size: .76rem; }
  .brand img { width: 56px; height: 56px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .hero-copy { border-radius: 24px; }
  .lang-switch { order: 1; }
  .header-actions { gap: 10px; }
  .fab span { display: none; }
  .footer-wrap { flex-direction: column; }
}
