:root {
  --bg: #efe6d7;
  --bg-soft: #f8f2e8;
  --surface: rgba(255, 251, 244, 0.82);
  --surface-strong: #fffaf2;
  --surface-dark: rgba(14, 22, 18, 0.52);
  --text: #182118;
  --muted: #5e685f;
  --brand: #173026;
  --brand-2: #ab6f3e;
  --brand-3: #dbc0a0;
  --line: rgba(23, 48, 38, 0.1);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 64px rgba(16, 26, 19, 0.14);
  --shadow-strong: 0 38px 88px rgba(10, 17, 13, 0.24);
  --radius-xl: 38px;
  --radius-lg: 30px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(219, 192, 160, 0.5), transparent 34%),
    radial-gradient(circle at 100% 24%, rgba(171, 111, 62, 0.16), transparent 30%),
    linear-gradient(180deg, #f4ecdf 0%, #efe6d7 42%, #eaddc9 100%);
}

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

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.62), rgba(255, 250, 243, 0));
}

.section-dark {
  background: linear-gradient(180deg, rgba(20, 36, 28, 0.98), rgba(23, 48, 38, 0.98));
  color: #fff6ea;
}

.page-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(76px);
  opacity: 0.44;
  z-index: 0;
}

.page-glow-left {
  top: 6%;
  left: -140px;
  background: rgba(219, 192, 160, 0.9);
}

.page-glow-right {
  top: 32%;
  right: -160px;
  background: rgba(23, 48, 38, 0.16);
}

.topbar,
.site-header,
.site-footer,
main {
  position: relative;
  z-index: 1;
}

.topbar {
  background: #112119;
  color: rgba(255, 248, 238, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 0;
  font-size: 0.92rem;
  text-align: center;
}

.topbar-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff4e8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 12px;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(13, 21, 17, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #173026 0%, #244537 100%);
  color: #fff7ec;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 30px rgba(23, 48, 38, 0.18);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-2);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.site-nav a.is-current {
  color: var(--brand);
}

.header-actions,
.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-2) 0%, #c17e45 100%);
  color: #fff9f2;
  box-shadow: 0 18px 34px rgba(171, 111, 62, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.58);
  color: var(--brand);
  border-color: rgba(23, 48, 38, 0.12);
}

.btn-secondary-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff5eb;
  border-color: rgba(255, 255, 255, 0.18);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-2);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 235, 210, 0.88);
}

h1,
h2,
h3,
summary {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  color: #fff7ef;
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.3rem;
}

.page-title {
  color: var(--text);
  max-width: 14ch;
}

p {
  margin: 0;
}

.home-hero {
  position: relative;
  padding: 24px 0 48px;
}

.hero-slider {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #0d1511;
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 13, 10, 0.82) 10%, rgba(8, 13, 10, 0.38) 54%, rgba(8, 13, 10, 0.14) 100%),
    linear-gradient(180deg, rgba(8, 13, 10, 0.08), rgba(8, 13, 10, 0.36) 72%, rgba(8, 13, 10, 0.58));
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 78vh;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  max-width: 640px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--line-light);
  background: var(--surface-dark);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.hero-text {
  margin-top: 20px;
  max-width: 58ch;
  color: rgba(255, 244, 230, 0.86);
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 28px;
}

.hero-controls {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-arrow,
.slider-dot {
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.08);
  color: #fff8ef;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible,
.slider-dot:hover,
.slider-dot:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
}

.slider-arrow {
  min-width: 54px;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-dot {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  font-weight: 800;
}

.slider-dot.is-active,
.slider-dot[aria-current="true"] {
  background: #fff4e8;
  color: var(--brand);
}

.info-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-grid {
  margin-top: 18px;
}

.info-card,
.card,
.detail-card,
.media-card,
.faq-item,
.map-frame,
.gallery-card,
.teaser-card {
  box-shadow: var(--shadow);
}

.info-card,
.card,
.detail-card,
.faq-item {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(10px);
}

.info-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--brand-2);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.info-card strong,
.detail-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.info-card p,
.card p,
.content-block p,
.detail-card p,
.detail-card a,
.faq-item p {
  color: var(--muted);
  font-size: 1.03rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.split-grid-home {
  align-items: stretch;
}

.content-block {
  display: grid;
  gap: 18px;
}

.content-block-light p {
  color: rgba(255, 242, 226, 0.82);
}

.media-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack-cards {
  display: grid;
  gap: 16px;
}

.detail-card-dark {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.detail-card-dark strong,
.detail-card-dark a {
  color: #fff6ea;
}

.detail-card-dark .info-label {
  color: rgba(255, 235, 210, 0.74);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--brand);
  font-weight: 800;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.teaser-card,
.gallery-card {
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
}

.teaser-card img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.teaser-card:hover img,
.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.03);
}

.center-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 32px;
}

.page-hero {
  padding: 38px 0 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 560px;
}

.gallery-grid {
  column-count: 4;
  column-gap: 18px;
}

.gallery-card {
  width: 100%;
  padding: 0;
  margin: 0 0 18px;
  break-inside: avoid;
  cursor: pointer;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.22rem;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 14px;
}

.site-footer {
  padding: 28px 0 110px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 16px;
  align-items: start;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

.footer-note {
  grid-column: 1 / -1;
  margin-top: 8px;
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f9b58, #25d366);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(31, 155, 88, 0.28);
}

.lightbox {
  width: min(92vw, 1100px);
  padding: 0;
  border: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(22, 26, 23, 0.84);
  backdrop-filter: blur(6px);
}

.lightbox img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 24px;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 20, 18, 0.7);
  color: #fff;
  cursor: pointer;
}

@media (max-width: 1120px) {
  .info-grid,
  .card-grid,
  .split-grid,
  .contact-grid,
  .footer-grid,
  .teaser-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-slider,
  .hero-slide img {
    min-height: 720px;
  }

  .gallery-grid {
    column-count: 3;
  }
}

@media (max-width: 920px) {
  .site-nav {
    display: none;
  }

  .header-shell {
    border-radius: 30px;
  }

  .info-grid,
  .card-grid,
  .split-grid,
  .contact-grid,
  .footer-grid,
  .teaser-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }

  .header-shell,
  .topbar-inner {
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .header-actions,
  .hero-actions,
  .button-row {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-slider,
  .hero-slide img {
    min-height: 760px;
  }

  .hero-overlay {
    left: 20px;
    right: 20px;
    bottom: 94px;
    max-width: none;
    padding: 22px;
  }

  .hero-controls {
    left: 20px;
    right: 20px;
    bottom: 20px;
    justify-content: space-between;
  }

  .slider-dot {
    width: 44px;
    height: 44px;
  }

  .map-frame iframe {
    min-height: 420px;
  }

  .site-footer {
    padding-bottom: 112px;
  }
}

@media (max-width: 560px) {
  .hero-slider,
  .hero-slide img {
    min-height: 820px;
  }

  .gallery-grid {
    column-count: 1;
  }
}
