:root {
  --bg: #f8f5ef;
  --bg-soft: rgba(255,255,255,.75);
  --text: #3e3b39;
  --muted: #6f6a66;
  --line: rgba(75, 101, 96, 0.14);
  --primary: #198d9b;
  --primary-dark: #0f6e79;
  --gold: #b58c44;
  --shadow: 0 20px 60px rgba(36, 38, 36, .12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfaf7 0%, #f4efe7 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(25,141,155,.08), transparent 32%),
    radial-gradient(circle at right center, rgba(181,140,68,.08), transparent 26%);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(248,245,239,.72);
  border-bottom: 1px solid rgba(255,255,255,.65);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow);
}
.brand strong {
  display: block;
  font-size: 1rem;
}
.brand span {
  font-size: .84rem;
  color: var(--muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-size: .95rem;
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,23,22,.55) 0%, rgba(20,23,22,.18) 42%, rgba(20,23,22,.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 670px;
  color: #fff;
  padding: 120px 0 80px;
}
.eyebrow {
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .77rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero h1,
.section h2,
.service-card h3,
.contact-form h3,
.social-card h3,
.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
}
.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .95;
  margin: 0 0 18px;
}
.hero-text {
  font-size: 1.07rem;
  line-height: 1.8;
  max-width: 600px;
}
.hero-actions,
.pill-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: .28s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #d1ad67);
  color: #fff;
  box-shadow: 0 18px 40px rgba(181,140,68,.35);
}
.btn-secondary {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.42);
  color: #fff;
}
.btn.full { width: 100%; }

.section { padding: 92px 0; }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}
.section h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: .98;
  margin: 0 0 14px;
}
.section p { line-height: 1.85; color: var(--muted); }

.soft-card {
  background: var(--bg-soft);
  border: 1px solid rgba(255,255,255,.8);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.intro-grid,
.ambient-grid,
.video-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items: center;
}
.info-card,
.contact-list,
.contact-form,
.video-wrap,
.ambient-image {
  padding: 28px;
}
.info-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.info-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.mini-contact {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  overflow: hidden;
}
.service-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.service-card div { padding: 22px; }
.service-card h3,
.contact-form h3,
.social-card h3,
.info-card h3 {
  font-size: 2rem;
  margin: 0 0 10px;
  color: var(--text);
}
.service-card p { margin: 0; }

.ambient-image img {
  width: 100%;
  border-radius: 20px;
}
.pill-row span {
  background: rgba(25,141,155,.09);
  color: var(--primary-dark);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.video-wrap iframe,
.map-wrap iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 22px;
}
.map-wrap { margin-top: 18px; padding: 14px; }

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px;
}
.social-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
.social-card p, .social-card h3 { margin: 0; }

.contact-list {
  display: grid;
  gap: 14px;
}
.contact-list a,
.contact-list p {
  margin: 0;
  color: var(--text);
  font-weight: 500;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(25,141,155,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  padding: 14px 16px;
  color: var(--text);
}
textarea { resize: vertical; }

.footer {
  padding: 28px 0 40px;
}
.footer-content {
  text-align: center;
  color: var(--muted);
}
.footer a {
  color: var(--primary-dark);
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  box-shadow: 0 18px 36px rgba(37,211,102,.35);
}
.whatsapp-float svg {
  width: 33px;
  fill: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 10, .82);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: .24s ease;
  z-index: 90;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.16);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  nav { display: none; }
  .intro-grid,
  .ambient-grid,
  .video-grid,
  .contact-grid,
  .services-grid,
  .gallery-grid,
  .social-grid {
    grid-template-columns: 1fr 1fr;
  }
  .intro-grid,
  .ambient-grid,
  .video-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero { min-height: 82vh; }
  .hero-content { padding-top: 110px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(20,23,22,.56), rgba(20,23,22,.35)); }
  .gallery-grid,
  .services-grid,
  .social-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .service-card h3,
  .contact-form h3,
  .social-card h3,
  .info-card h3 { font-size: 1.7rem; }
  .video-wrap iframe, .map-wrap iframe { min-height: 300px; }
}
