:root {
  --primary: #ec8503;
  --primary-dark: #c86900;
  --dark: #121212;
  --dark-soft: #1f1f1f;
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --light: #f7f6f4;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: #fff;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.center { text-align: center; }

.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.86);
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  font-size: .92rem;
  flex-wrap: wrap;
}
.topbar a:hover { color: var(--primary); }

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
}
.brand strong {
  display: block;
  font-size: 1rem;
}
.brand span {
  color: var(--muted);
  font-size: .9rem;
}
.menu {
  display: flex;
  align-items: center;
  gap: 22px;
}
.menu a {
  font-weight: 600;
  color: #333;
}
.menu a:hover { color: var(--primary-dark); }
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--dark);
  margin: 5px 0;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #ff9a1a);
  color: var(--white);
  font-weight: 700;
  border: 0;
  box-shadow: 0 10px 20px rgba(236,133,3,.22);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 15px 28px rgba(236,133,3,.28); }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.65);
  color: var(--white);
  box-shadow: none;
}
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-sm { padding: 11px 18px; font-size: .95rem; }

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg { object-fit: cover; }
.hero-overlay {
  background: linear-gradient(115deg, rgba(0,0,0,.78) 20%, rgba(0,0,0,.42) 60%, rgba(236,133,3,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 34px;
  align-items: center;
  padding: 110px 0 70px;
}
.eyebrow, .section-tag {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .79rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.hero .eyebrow { color: #ffc97b; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: .98;
  margin: 0 0 20px;
  max-width: 11ch;
}
.lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
  max-width: 690px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.small-gap { margin-top: 22px; }
.hero-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.hero-card h2 { margin-top: 0; }
.hero-card ul {
  margin: 18px 0 24px;
  padding: 0 0 0 18px;
  line-height: 1.9;
}
.hero-contact-box {
  background: rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 18px;
}
.hero-contact-box span {
  display: block;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.8);
}
.hero-contact-box a {
  font-size: 1.7rem;
  font-weight: 800;
}

.section { padding: 90px 0; }
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}
.intro { background: linear-gradient(180deg, #fff 0%, var(--light) 100%); }
.intro h2, .services h2, .highlight h2, .social-section h2, .video-section h2, .location h2, .contact h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 18px;
}
.intro p, .highlight p, .social-section p, .location p, .contact p {
  color: var(--muted);
  line-height: 1.8;
}
.intro-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.intro-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.services { background: #fff; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 35px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.card h3 { margin-top: 0; margin-bottom: 14px; }
.card p { margin: 0; line-height: 1.75; color: var(--muted); }

.highlight {
  background: linear-gradient(135deg, #181818 0%, #2b2b2b 100%);
  color: #fff;
}
.highlight .section-tag { color: #ffbf66; }
.highlight p { color: rgba(255,255,255,.84); }
.highlight-wrap {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 34px;
  align-items: center;
}
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.mini-gallery img {
  border-radius: 22px;
  width: 100%;
  height: 220px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.mini-gallery img:first-child {
  grid-column: 1 / -1;
  height: 280px;
}

.gallery { background: var(--light); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item:not(.wide) { aspect-ratio: 1 / 1; }
.gallery-item.wide { aspect-ratio: 2 / 1; }

.social-wrap {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 32px;
  align-items: center;
}
.social-card {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 22px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
}
.social-card img { width: 54px; height: 54px; object-fit: contain; }
.social-card span { color: var(--muted); display: block; margin-top: 4px; }
.social-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.social-preview img {
  border-radius: 22px;
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.video-section { background: #fff; }
.video-frame {
  margin-top: 32px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}
.video-frame iframe, .map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location { background: linear-gradient(180deg, #fff 0%, var(--light) 100%); }
.location-grid { align-items: stretch; }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.contact-wrap {
  background: linear-gradient(135deg, #1b1b1b, #303030);
  color: #fff;
  border-radius: 34px;
  padding: 44px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 32px;
}
.contact .section-tag { color: #ffbf66; }
.contact p { color: rgba(255,255,255,.82); }
.contact-data {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.contact-data a { font-size: 1.05rem; font-weight: 700; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 16px 18px;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.62); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: rgba(255,255,255,.45); }

.footer {
  padding: 26px 0 34px;
  background: #fff;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img { width: 54px; height: 54px; }
.footer-brand span, .footer p { color: var(--muted); }
.footer p a { color: var(--primary-dark); font-weight: 700; }

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

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 60;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 88vh;
  border-radius: 20px;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

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

@media (max-width: 980px) {
  .hero-content,
  .grid-2,
  .highlight-wrap,
  .social-wrap,
  .contact-wrap,
  .cards,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item.wide { grid-column: span 2; }
  .menu-toggle { display: block; }
  .menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }
  .menu.open { display: flex; }
}

@media (max-width: 680px) {
  .section { padding: 72px 0; }
  .hero { min-height: auto; }
  .hero-content { padding: 90px 0 54px; }
  .hero h1 { max-width: 100%; }
  .hero-card { padding: 24px; }
  .cards, .gallery-grid, .social-preview, .mini-gallery, .field-group { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1 / 1; }
  .contact-wrap { padding: 28px; }
  .topbar { font-size: .84rem; gap: 8px; }
  .btn, .btn-outline { width: 100%; }
}
