:root {
  --primary: #ec8503;
  --primary-dark: #c96f00;
  --dark: #111111;
  --dark-soft: #1d1d1d;
  --text: #242424;
  --muted: #6d6d6d;
  --light: #f7f4ef;
  --white: #ffffff;
  --line: rgba(0,0,0,.08);
  --shadow: 0 18px 45px rgba(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;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.center { text-align: center; }

.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  flex-wrap: wrap;
  font-size: .92rem;
}
.topbar a:hover { color: var(--primary); }
.lang-toggle {
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  background: transparent;
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 700;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #fff;
  border-radius: 16px;
}
.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: 700; }
.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), #ffad3c);
  color: #fff;
  border: 0;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(236,133,3,.24);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 30px rgba(236,133,3,.28); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
  box-shadow: none;
}
.btn-outline:hover { background: rgba(255,255,255,.12); }
.dark-outline {
  color: var(--dark);
  border-color: rgba(0,0,0,.16);
}
.dark-outline:hover { background: rgba(0,0,0,.04); }
.btn-sm { padding: 11px 18px; font-size: .94rem; }

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg { object-fit: cover; }
.hero-overlay {
  background: linear-gradient(110deg, rgba(0,0,0,.82) 14%, rgba(0,0,0,.48) 56%, rgba(236,133,3,.23) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  align-items: center;
  padding: 110px 0 74px;
}
.eyebrow, .section-tag {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--primary);
}
.hero .eyebrow { color: #ffd59b; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: .97;
  margin: 0 0 18px;
  max-width: 11ch;
}
.lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255,255,255,.92);
  max-width: 720px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  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,.15);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.hero-card h2 { margin-top: 0; }
.hero-card ul {
  padding-left: 18px;
  line-height: 1.9;
}
.hero-contact-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.14);
}
.hero-contact-box span {
  display: block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
  color: rgba(255,255,255,.82);
}
.hero-contact-box a {
  font-size: 1.7rem;
  font-weight: 800;
}

.section { padding: 92px 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, 3.1rem);
  line-height: 1.08;
  margin: 0 0 18px;
}
.intro p, .highlight p, .location p, .contact p, .social-section p {
  color: var(--muted);
  line-height: 1.85;
}
.intro-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.intro-card img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

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

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

.gallery-note { color: var(--muted); margin-top: -8px; }
.gallery-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  grid-auto-flow: dense;
}
.gallery-item {
  border: 0;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #f2f2f2;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.tall img { min-height: 460px; }

.social-section {
  background: var(--light);
}
.social-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: start;
}
.social-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
}
.social-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.social-embed-wrap {
  display: grid;
  gap: 16px;
}
.social-embed {
  width: 100%;
  min-height: 560px;
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}
.social-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.social-preview img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
}

.video-frame, .map-frame {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.video-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  border: 0;
}
.location-grid { align-items: stretch; }
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.contact {
  background: linear-gradient(180deg, var(--light) 0%, #ffffff 100%);
}
.contact-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: start;
}
.contact-data {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}
.contact-data a {
  font-size: 1.08rem;
  font-weight: 700;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
}
.field-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  padding: 15px 16px;
  margin-top: 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(236,133,3,.12);
}
.contact-form textarea { resize: vertical; }

.footer {
  background: var(--dark);
  color: rgba(255,255,255,.9);
  padding-top: 28px;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 22px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: contain;
}
.footer-brand p { margin: 6px 0 0; color: rgba(255,255,255,.66); }
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-credit {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 14px 0 18px;
}
.footer-credit p { margin: 0; text-align: center; }
.footer-credit a { color: #fff; }

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 15px 30px rgba(37,211,102,.35);
  z-index: 60;
}
.floating-wa svg { width: 30px; height: 30px; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.86);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  z-index: 80;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 88vh;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  font-size: 2rem;
  line-height: 1;
  background: rgba(255,255,255,.14);
  color: #fff;
}

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

@media (max-width: 1024px) {
  .hero-content,
  .grid-2,
  .highlight-wrap,
  .social-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .cards,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item.tall img { min-height: 220px; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }
  .menu.open { display: flex; }
  .hero { min-height: auto; }
  .hero-content { padding: 100px 0 68px; }
  .hero h1 { max-width: 12ch; }
  .cards,
  .gallery-grid,
  .social-preview,
  .field-group {
    grid-template-columns: 1fr;
  }
  .social-embed { min-height: 440px; }
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .topbar { font-size: .84rem; }
  .brand strong { font-size: .92rem; }
  .brand span { font-size: .8rem; }
  .section { padding: 74px 0; }
  .hero-card, .contact-form { padding: 22px; }
  .btn { width: 100%; }
  .hero-actions .btn { width: auto; }
  .hero-actions { flex-direction: column; }
  .floating-wa { width: 56px; height: 56px; }
}
