*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Raleway', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #f5f5f5;
  background-color: #050506;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #f2c562;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid rgba(242,197,98,0.25);
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f2c562;
}

.site-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin: 0;
  letter-spacing: 0.06em;
}

.subtitle {
  margin: 0;
  font-size: 0.8rem;
  color: #cccccc;
}

.main-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: #f5f5f5;
  position: relative;
  padding-bottom: 0.15rem;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f2c562, #ffffff);
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  min-height: 70vh;
  color: #ffffff;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.78), rgba(0,0,0,0.35));
}

.hero-content {
  position: relative;
  max-width: 720px;
  padding: 5rem 1.5rem 4rem;
  text-align: left;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: #f2c562;
  margin-bottom: 1rem;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin: 0 0 1rem;
}

.hero-text {
  max-width: 35rem;
  color: #e5e5e5;
  font-size: 0.98rem;
}

.hero-cta {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #f2c562, #f2dfb2);
  color: #111;
}

.btn.primary:hover {
  box-shadow: 0 12px 22px rgba(0,0,0,0.35);
  transform: translateY(-1px);
}

.btn.outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(242,197,98,0.6);
}

.btn.outline:hover {
  background: rgba(0,0,0,0.5);
}

.btn.full {
  width: 100%;
}

/* Layout */

.section {
  padding: 4rem 1.5rem;
  background: radial-gradient(circle at top left, rgba(242,197,98,0.08), transparent 55%),
              radial-gradient(circle at bottom right, rgba(242,197,98,0.05), transparent 55%);
}

.section:nth-of-type(even) {
  background-color: #070709;
}

.section:nth-of-type(odd) {
  background-color: #0a0a0d;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.section-intro {
  max-width: 620px;
  color: #d3d3d3;
  font-size: 0.95rem;
}

.two-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

/* About */

.about-highlight {
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(242,197,98,0.35);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.about-highlight h4 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
  color: #f2c562;
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: #dddddd;
}

.check-list li {
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1.4rem;
}

.check-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #f2c562;
  font-size: 0.8rem;
}

/* Services */

.services .cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: rgba(13,13,18,0.9);
  border-radius: 16px;
  padding: 1.4rem 1.3rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 14px 32px rgba(0,0,0,0.5);
  font-size: 0.92rem;
}

.card h4 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-family: 'Playfair Display', serif;
  color: #f2c562;
}

/* Social */

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.social-btn {
  display: inline-flex;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
}

.social-btn:hover {
  background: rgba(242,197,98,0.12);
}

.fb-embed {
  background: rgba(0,0,0,0.4);
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

/* Gallery */

.gallery-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 150px;
  object-fit: cover;
}

.gallery-item:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 26px rgba(0,0,0,0.65);
  border-color: rgba(242,197,98,0.6);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.87);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.9);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

/* Video */

.video-wrapper {
  margin-top: 2rem;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.06);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Contact */

.contact-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.25rem;
  font-size: 0.95rem;
}

.contact-list li {
  margin-bottom: 0.5rem;
}

.contact-form {
  background: rgba(12,12,18,0.95);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 36px rgba(0,0,0,0.7);
}

.field {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: #e5e5e5;
}

input,
textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(6,6,10,0.9);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.9rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #f2c562;
  box-shadow: 0 0 0 1px rgba(242,197,98,0.6);
}

/* Footer */

.site-footer {
  background: #020203;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 1.5rem 2rem;
  font-size: 0.82rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  color: #b5b5b5;
}

/* WhatsApp float */

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #128c7e;
  color: #ffffff;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.55);
  font-size: 0.86rem;
  font-weight: 600;
}

.wa-icon {
  font-size: 1.1rem;
}

.whatsapp-float:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

/* Scroll top */

.scroll-top {
  position: fixed;
  right: 1.3rem;
  bottom: 4.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.7);
  color: #ffffff;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  z-index: 35;
}

.scroll-top.show {
  display: flex;
}

/* Responsive */

@media (max-width: 900px) {
  .two-cols {
    grid-template-columns: 1fr;
  }

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

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

  .site-header {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 0.82rem;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 75vh;
  }

  .hero-content {
    padding-top: 4rem;
  }

  .services .cards-grid {
    grid-template-columns: 1fr;
  }

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

  .fb-embed {
    margin-top: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }

  .scroll-top {
    right: 1rem;
    bottom: 4rem;
  }
}
