
:root {
  --bg: #faf6f0;
  --primary: #c56a33;
  --primary-dark: #8e4415;
  --accent: #f5d7a3;
  --text-main: #2d2a26;
  --text-soft: #66615b;
  --card-bg: #ffffff;
  --shadow-soft: 0 18px 35px rgba(0,0,0,0.08);
  --radius-lg: 24px;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.25), transparent 60%),
              linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.85));
  z-index: -1;
}

.hero-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 120px 20px 96px;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}

.logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: #fff;
  object-fit: cover;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3rem);
  margin: 0 0 4px;
}

.subtitle {
  margin: 0;
  font-size: 0.98rem;
  max-width: 460px;
  color: rgba(255,255,255,0.85);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.45);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  backdrop-filter: blur(4px);
}

.btn.ghost:hover {
  background: rgba(255,255,255,0.12);
}

.btn.full {
  width: 100%;
}

.hero-location {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* GENERAL LAYOUT */

.section {
  padding: 72px 16px;
}

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

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.1rem);
  margin-bottom: 6px;
}

.section-lead {
  margin-top: 0;
  margin-bottom: 28px;
  color: var(--text-soft);
}

.two-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.intro {
  background: linear-gradient(135deg, #fff7ee, var(--bg));
}

/* HIGHLIGHTS */

.highlight-grid {
  display: grid;
  gap: 18px;
}

.highlight-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.highlight-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.highlight-body {
  padding: 16px 18px 18px;
}

.highlight-body h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.highlight-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* SERVICES */

.services {
  background: #fff;
}

.cards-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 16px 16px 18px;
  box-shadow: var(--shadow-soft);
}

.service-card img {
  border-radius: 18px;
  height: 170px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 12px;
}

.service-card h3 {
  margin: 0 0 6px;
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* GALLERY */

.gallery {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.gallery-item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 999;
}

.lightbox img {
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.lightbox.active {
  display: flex;
}

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

/* VIDEO */

.video-section {
  background: #fff;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #000;
}

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

/* SOCIAL */

.social {
  background: var(--bg);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 22px;
}

.social-link {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}

.social-link.fb {
  border-left: 4px solid #1877f2;
}

.social-link.ig {
  border-left: 4px solid #d62976;
}

.social-embeds {
  display: grid;
  gap: 16px;
}

.social-embeds iframe {
  width: 100%;
  border-radius: 18px;
}

/* CONTACT */

.contact {
  background: #fff;
}

.contact-data {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.contact-data li + li {
  margin-top: 6px;
}

.form-wrapper {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 22px 20px 24px;
  box-shadow: var(--shadow-soft);
}

.field {
  margin-bottom: 12px;
}

.field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #ddd3c5;
  font: inherit;
}

.field textarea {
  resize: vertical;
}

/* WHATSAPP FLOAT */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  z-index: 998;
}

.wa-icon {
  transform: translateY(-2px);
}

/* FOOTER */

.main-footer {
  background: #15110f;
  color: rgba(255,255,255,0.78);
  padding: 18px 16px 22px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.85rem;
}

.footer-made a {
  color: rgba(243, 195, 130, 0.95);
}

/* RESPONSIVE */

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

  .hero {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding-top: 96px;
  }

  .logo-title {
    align-items: flex-start;
  }

  .logo {
    width: 56px;
    height: 56px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 60px 14px;
  }
}
