:root {
  --color-wine: #87171e;
  --color-beige: #e1c497;
  --color-orange: #e18445;
  --color-navy: #26324d;
  --color-offwhite: #f3f5f5;
  --font-sans: "Roboto", ui-sans-serif, system-ui, -apple-system, Segoe UI, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --font-serif: "Cinzel", ui-serif, Georgia, "Times New Roman", serif;
  --font-display: "Playfair Display", ui-serif, Georgia, "Times New Roman", serif;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --text: var(--color-navy);
  --bg: var(--color-offwhite);
}

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

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
  overflow-x: hidden;
}

main[id],
section[id] {
  scroll-margin-top: 140px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1200px, 100% - 40px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 22, 34, 0.66);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(225, 196, 151, 0.12);
  color: rgba(243, 245, 245, 0.92);
}

.topbar {
  border-bottom: 1px solid rgba(243, 245, 245, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 6px 0;
  font-size: 11px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(243, 245, 245, 0.88);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 52vw;
}

.topbar-wa {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(225, 196, 151, 0.22);
  background: rgba(0, 0, 0, 0.14);
}

#topbar-whatsapp-mobile {
  display: none;
}

.topbar-item:hover {
  text-decoration: none;
  color: rgba(243, 245, 245, 0.98);
}

.topbar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(225, 196, 151, 0.95);
}

.topbar-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(225, 196, 151, 0.22);
  background: rgba(0, 0, 0, 0.15);
}

.topbar-icon-btn:hover {
  text-decoration: none;
  border-color: rgba(225, 196, 151, 0.38);
  background: rgba(0, 0, 0, 0.25);
}

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

.header-right {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.pet-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(225, 196, 151, 0.9);
  border: 1px solid rgba(225, 196, 151, 0.35);
  color: rgba(16, 22, 34, 0.95);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pet-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(16, 22, 34, 0.9);
}

.pet-badge-text {
  display: inline;
}

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

.brand-logo {
  display: block;
  height: 30px;
  width: auto;
  max-width: min(260px, 46vw);
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  border: none;
}

.brand-text {
  font-weight: 720;
  letter-spacing: 0.4px;
  line-height: 1;
  font-family: var(--font-serif);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(225, 196, 151, 0.22);
  background: rgba(0, 0, 0, 0.2);
  color: rgba(243, 245, 245, 0.92);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 650;
  font-size: 13px;
}

.site-nav {
  display: none;
  gap: 18px;
  align-items: center;
  font-weight: 650;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(243, 245, 245, 0.92);
}

.site-nav a:hover {
  text-decoration: none;
  color: rgba(243, 245, 245, 1);
}

body.nav-open .site-nav {
  display: flex;
  position: absolute;
  left: 16px;
  right: 16px;
  top: 86px;
  flex-direction: column;
  background: rgba(16, 22, 34, 0.92);
  border: 1px solid rgba(225, 196, 151, 0.16);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(225, 196, 151, 0.35);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(243, 245, 245, 0.92);
  font-weight: 760;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  cursor: pointer;
}

.topbar-item,
.site-nav a,
.pet-badge,
.contact-chip,
.nav-cta {
  transition: transform 220ms ease, border-color 260ms ease, background-position 700ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 260ms ease, color 260ms ease;
  background-size: 220% 100%;
  background-position: 0% 50%;
}

.topbar-item,
.site-nav a,
.contact-chip,
.nav-cta {
  background-image: linear-gradient(90deg, rgba(135, 23, 30, 0), rgba(242, 140, 56, 0.18), rgba(225, 196, 151, 0.12), rgba(135, 23, 30, 0));
}

.pet-badge {
  background-image: linear-gradient(90deg, rgba(135, 23, 30, 0), rgba(242, 140, 56, 0.24), rgba(225, 196, 151, 0.14), rgba(135, 23, 30, 0)),
    linear-gradient(rgba(225, 196, 151, 0.9), rgba(225, 196, 151, 0.9));
}

@media (hover: hover) {
  .topbar-item:hover,
  .site-nav a:hover,
  .contact-chip:hover,
  .nav-cta:hover {
    transform: translateY(-1px);
    border-color: rgba(225, 132, 69, 0.45);
    background-position: 100% 50%;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  }

  .pet-badge:hover {
    transform: translateY(-1px);
    border-color: rgba(158, 15, 18, 0.28);
    background-position: 100% 50%;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  }
}

.topbar-item:active,
.site-nav a:active,
.pet-badge:active,
.contact-chip:active,
.nav-cta:active {
  transform: translateY(0) scale(0.99);
  background-position: 100% 50%;
}

.topbar-item:focus-visible,
.site-nav a:focus-visible,
.contact-chip:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid rgba(225, 196, 151, 0.7);
  outline-offset: 3px;
}

.nav-cta:hover {
  background: rgba(225, 196, 151, 0.12);
}

.hero {
  --hero-image: none;
  position: relative;
  overflow: hidden;
  padding: 96px 0 34px;
  min-height: min(720px, 78vh);
  display: flex;
  align-items: center;
  background-image: linear-gradient(180deg, rgba(38, 50, 77, 0.55), rgba(38, 50, 77, 0.68)),
    linear-gradient(90deg, rgba(135, 23, 30, 0.18), rgba(225, 196, 151, 0.12));
  background-size: cover;
  background-position: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 900ms ease;
  will-change: opacity;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side at 18% 18%, rgba(225, 196, 151, 0.35), rgba(0, 0, 0, 0)),
    radial-gradient(closest-side at 82% 22%, rgba(225, 196, 151, 0.22), rgba(0, 0, 0, 0)),
    radial-gradient(closest-side at 50% 100%, rgba(135, 23, 30, 0.22), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: 2;
}

.hero-bg-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(243, 245, 245, 0.2);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(243, 245, 245, 0.92);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.hero-bg-btn:hover {
  background: rgba(0, 0, 0, 0.32);
}

.hero-bg-btn:focus-visible {
  outline: 3px solid rgba(225, 196, 151, 0.85);
  outline-offset: 3px;
}

.hero-bg-prev {
  left: 12px;
}

.hero-bg-next {
  right: 12px;
}

.hero-inner {
  position: static;
  display: grid;
  gap: 18px;
  text-align: center;
  align-items: center;
  justify-items: center;
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.hero-home .hero-copy {
  transform: translateY(-18px);
}

.hero-media .hero-copy {
  transform: translateY(-8px);
}

.hero-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(243, 245, 245, 0.12);
  border: 1px solid rgba(243, 245, 245, 0.22);
  color: rgba(243, 245, 245, 0.92);
  text-shadow: 0 1px 10px rgba(110, 12, 14, 0.55), 0 0 18px rgba(242, 140, 56, 0.18);
}

.hero-title {
  margin: 6px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.8px;
  font-family: var(--font-display);
  color: rgba(243, 245, 245, 0.98);
  text-wrap: balance;
  text-shadow: 0 2px 26px rgba(110, 12, 14, 0.72), 0 1px 2px rgba(16, 22, 34, 0.65), 0 0 30px rgba(246, 162, 91, 0.2);
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.5;
  max-width: 64ch;
  color: rgba(243, 245, 245, 0.9);
  text-shadow: 0 2px 20px rgba(110, 12, 14, 0.6), 0 1px 2px rgba(16, 22, 34, 0.6), 0 0 24px rgba(242, 140, 56, 0.16);
}

.hero-caption {
  margin: 18px 0 0;
  font-family: var(--font-serif);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 650;
  color: rgba(243, 245, 245, 0.78);
  text-shadow: 0 2px 18px rgba(110, 12, 14, 0.62), 0 1px 2px rgba(16, 22, 34, 0.6), 0 0 22px rgba(140, 27, 27, 0.2);
}

.hero-booking {
  width: min(360px, 100%);
  position: absolute;
  top: 0;
  right: max(20px, calc((100vw - 1200px) / 2 + 20px));
  z-index: 5;
}

.availability-trigger {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(225, 196, 151, 0.46);
  background: rgba(16, 22, 34, 0.58);
  color: rgba(243, 245, 245, 0.92);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-weight: 650;
  font-size: 13px;
}

.availability-trigger:hover {
  background: rgba(16, 22, 34, 0.7);
  border-color: rgba(225, 196, 151, 0.6);
}

.availability-trigger-icon {
  color: rgba(225, 196, 151, 0.95);
}

.availability-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(360px, calc(100vw - 40px));
  border-radius: 14px;
  border: 1px solid rgba(225, 196, 151, 0.2);
  background: rgba(16, 22, 34, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
  padding: 8px;
  z-index: 12;
}

.availability-panel::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 22px;
  width: 14px;
  height: 14px;
  background: rgba(16, 22, 34, 0.9);
  border-left: 1px solid rgba(225, 196, 151, 0.2);
  border-top: 1px solid rgba(225, 196, 151, 0.2);
  transform: rotate(45deg);
}

.availability-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 6px;
}

.availability-field {
  text-align: left;
  border-radius: 10px;
  border: 1px solid rgba(243, 245, 245, 0.12);
  background: rgba(0, 0, 0, 0.18);
  padding: 8px 9px;
  color: rgba(243, 245, 245, 0.92);
  cursor: pointer;
}

.availability-field[aria-pressed="true"] {
  border-color: rgba(225, 196, 151, 0.42);
  box-shadow: 0 0 0 2px rgba(225, 196, 151, 0.14);
}

.field-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgba(243, 245, 245, 0.68);
  font-weight: 750;
}

.field-value {
  display: block;
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 650;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--color-wine);
  border-color: rgba(135, 23, 30, 0.8);
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(1.03);
}

.btn-secondary {
  background: rgba(225, 196, 151, 0.3);
  border-color: rgba(225, 196, 151, 0.65);
  color: rgba(16, 22, 34, 0.95);
}

.btn-secondary:hover {
  background: rgba(225, 196, 151, 0.42);
}

.btn-ghost {
  background: rgba(243, 245, 245, 0.14);
  border-color: rgba(243, 245, 245, 0.22);
  color: rgba(243, 245, 245, 0.95);
}

.btn-ghost:hover {
  background: rgba(243, 245, 245, 0.2);
}

.btn-availability {
  padding: 10px 14px;
  font-weight: 750;
}


.section {
  padding: clamp(56px, 7vw, 90px) 0;
}

.reveal {
  opacity: 0;
  transform: translate3d(var(--reveal-x, 0px), var(--reveal-y, 24px), 0) scale(0.97);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), opacity 900ms ease;
  transition-delay: calc(var(--reveal-delay, 0ms) + 140ms);
  will-change: transform, opacity;
}

.reveal[data-reveal="left"] {
  --reveal-x: -42px;
  --reveal-y: 0px;
}

.reveal[data-reveal="right"] {
  --reveal-x: 42px;
  --reveal-y: 0px;
}

.reveal[data-reveal="up"] {
  --reveal-x: 0px;
  --reveal-y: 30px;
}

.reveal[data-reveal="down"] {
  --reveal-x: 0px;
  --reveal-y: -30px;
}

.reveal.reveal-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.section-about {
  background: radial-gradient(closest-side at 14% 18%, rgba(225, 196, 151, 0.16), rgba(0, 0, 0, 0)),
    radial-gradient(closest-side at 84% 22%, rgba(135, 23, 30, 0.18), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(16, 22, 34, 0.98), rgba(38, 50, 77, 0.92));
  border-top: 1px solid rgba(225, 196, 151, 0.14);
  border-bottom: 1px solid rgba(225, 196, 151, 0.1);
  color: rgba(243, 245, 245, 0.92);
}

.about-grid {
  display: grid;
  gap: 18px;
  align-items: start;
}

.about-split {
  margin-top: 22px;
  display: grid;
  gap: 18px;
  align-items: start;
}

.about-kicker {
  margin: 0 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(225, 196, 151, 0.22);
  color: rgba(225, 196, 151, 0.92);
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-size: 12px;
}

.about-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.3px;
  font-size: clamp(26px, 3.2vw, 40px);
  color: rgba(243, 245, 245, 0.98);
}

.about-subtitle {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.2px;
  font-size: clamp(22px, 2.6vw, 30px);
  color: rgba(243, 245, 245, 0.96);
}

.about-text {
  margin: 0 0 12px;
  line-height: 1.7;
  color: rgba(243, 245, 245, 0.84);
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.feature-chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(243, 245, 245, 0.12);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(243, 245, 245, 0.9);
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 13px;
}

.about-media {
  border-radius: var(--radius);
  border: 1px solid rgba(225, 196, 151, 0.18);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  padding: 10px;
}

.carousel-3d {
  position: relative;
  height: clamp(220px, 40vw, 360px);
  border-radius: 14px;
  overflow: hidden;
  perspective: 900px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.carousel-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(340px, 78vw);
  aspect-ratio: 4 / 3;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(243, 245, 245, 0.12);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
  transform-style: preserve-3d;
  cursor: pointer;
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 240ms ease, filter 240ms ease;
  will-change: transform;
}

.carousel-item:focus-visible {
  outline: 3px solid rgba(225, 196, 151, 0.85);
  outline-offset: 3px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(243, 245, 245, 0.18);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(243, 245, 245, 0.94);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 6;
  backdrop-filter: blur(10px);
}

.carousel-btn-prev {
  left: 8px;
}

.carousel-btn-next {
  right: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.doux-card {
  margin-top: 22px;
  display: grid;
  gap: 18px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(225, 196, 151, 0.2);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.doux-media {
  padding: 10px;
}

.doux-figure {
  margin: 0;
  position: relative;
}

.memorial-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(225, 196, 151, 0.28);
  background: linear-gradient(90deg, rgba(135, 23, 30, 0.65), rgba(110, 12, 14, 0.55));
  color: rgba(243, 245, 245, 0.92);
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 11px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.doux-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(243, 245, 245, 0.12);
  background: rgba(0, 0, 0, 0.18);
}

.doux-caption {
  margin: 10px 4px 0;
  color: rgba(243, 245, 245, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

.doux-copy {
  padding: 12px 14px 16px;
}

.contact-intro {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(225, 196, 151, 0.18);
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.contact-intro-title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(243, 245, 245, 0.94);
  letter-spacing: -0.2px;
}

.contact-intro-text {
  margin: 0;
  color: rgba(243, 245, 245, 0.82);
  line-height: 1.6;
}

.section-alt {
  background: radial-gradient(closest-side at 16% 12%, rgba(225, 196, 151, 0.18), rgba(0, 0, 0, 0)),
    radial-gradient(closest-side at 86% 28%, rgba(135, 23, 30, 0.18), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(16, 22, 34, 0.98), rgba(38, 50, 77, 0.92));
  border-top: 1px solid rgba(225, 196, 151, 0.14);
  border-bottom: 1px solid rgba(225, 196, 151, 0.1);
  color: rgba(243, 245, 245, 0.92);
}

.section-alt .section-title {
  color: rgba(243, 245, 245, 0.96);
}

.section-alt .section-subtitle {
  color: rgba(243, 245, 245, 0.82);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  text-align: center;
  justify-items: center;
}

.section-title {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.2px;
  font-family: var(--font-serif);
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 84px;
  height: 3px;
  background: linear-gradient(90deg, rgba(135, 23, 30, 0.92), rgba(225, 196, 151, 0.92), rgba(225, 132, 69, 0.92));
  margin: 14px auto 0;
  border-radius: 999px;
  opacity: 0.9;
}

.section-subtitle {
  margin: 0;
  color: rgba(38, 50, 77, 0.78);
  line-height: 1.6;
  max-width: 72ch;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.info-card {
  border-radius: var(--radius);
  border: 1px solid rgba(225, 196, 151, 0.18);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  padding: 16px;
}

.info-card:hover {
  border-color: rgba(225, 132, 69, 0.4);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.32);
}

.media-cover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.media-cover img {
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.media-cover:hover img {
  transform: scale(1.03);
}

.info-title {
  margin: 0 0 10px;
  font-size: 16px;
  color: rgba(243, 245, 245, 0.92);
}

.info-text {
  margin: 0;
  color: rgba(243, 245, 245, 0.84);
  line-height: 1.6;
}

.media-cover {
  display: grid;
  place-items: center;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(243, 245, 245, 0.12);
  background: rgba(0, 0, 0, 0.18);
  aspect-ratio: 16 / 9;
  padding: 14px;
}

.media-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.media-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.info-list,
.contact-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: rgba(243, 245, 245, 0.86);
}

.info-list a,
.contact-list a {
  color: rgba(243, 245, 245, 0.92);
  text-decoration: none;
}

.info-list a:hover,
.contact-list a:hover {
  text-decoration: underline;
}

.inline-actions {
  margin-top: 12px;
}

.suites-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.suite-card {
  border: 1px solid rgba(225, 196, 151, 0.18);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  overflow: hidden;
  padding: 14px;
  display: grid;
  gap: 12px;
}

.suite-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.suite-meta {
  display: grid;
  gap: 2px;
}

.suite-title {
  margin: 0;
  font-size: 18px;
  font-weight: 850;
  font-family: var(--font-display);
  color: rgba(243, 245, 245, 0.94);
}

.suite-note {
  margin: 0;
  color: rgba(243, 245, 245, 0.72);
  font-size: 13px;
}

.suite-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(243, 245, 245, 0.85);
  border: 1px solid rgba(225, 196, 151, 0.28);
  object-fit: contain;
  flex: 0 0 auto;
}

.suite-gallery {
  display: block;
}

.suite-carousel {
  height: clamp(210px, 34vw, 320px);
}

.suite-thumb {
  border: 1px solid rgba(243, 245, 245, 0.12);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.suite-thumb img {
  width: 100%;
  height: 98px;
  object-fit: cover;
  display: block;
}

.suite-cta {
  display: flex;
  justify-content: flex-end;
}

.suite-open {
  background: rgba(225, 196, 151, 0.14);
  border-color: rgba(225, 196, 151, 0.32);
  color: rgba(243, 245, 245, 0.92);
}

.suite-open:hover {
  background: rgba(225, 196, 151, 0.22);
}

.booking-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-minimal {
  display: grid;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(225, 196, 151, 0.18);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(225, 196, 151, 0.22);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(243, 245, 245, 0.92);
  text-decoration: none;
  font-weight: 650;
  font-size: 13px;
}

.contact-chip[hidden] {
  display: none;
}

.contact-chip:hover {
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(225, 196, 151, 0.34);
}

.contact-address-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-address {
  color: rgba(243, 245, 245, 0.86);
  font-weight: 600;
}

.contact-maps-link {
  color: rgba(243, 245, 245, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(243, 245, 245, 0.28);
}

.contact-maps-link:hover {
  border-bottom-color: rgba(243, 245, 245, 0.56);
}

.contact-map-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 14px;
}

.contact-map {
  width: 100%;
  height: min(520px, 70vh);
  border: 0;
  display: block;
}

.booking-card,
.contact-card {
  border-radius: var(--radius);
  border: 1px solid rgba(225, 196, 151, 0.18);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  padding: 16px;
}

.booking-title,
.contact-title {
  margin: 0 0 8px;
  font-size: 16px;
  color: rgba(243, 245, 245, 0.92);
}

.booking-text,
.contact-text {
  margin: 0 0 12px;
  color: rgba(243, 245, 245, 0.84);
  line-height: 1.6;
}

.booking-muted {
  margin: 12px 0 0;
  color: rgba(38, 50, 77, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.bukly-widget {
  min-height: 120px;
  border-radius: 14px;
  border: 1px dashed rgba(38, 50, 77, 0.2);
  background: rgba(243, 245, 245, 0.8);
}

.site-footer {
  padding: 24px 0 42px;
  border-top: 1px solid rgba(38, 50, 77, 0.1);
  background: rgba(243, 245, 245, 0.85);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(38, 50, 77, 0.78);
  font-weight: 650;
}

.footer-dot {
  margin: 0 8px;
}

.developer-credits {
  margin-top: 14px;
  position: relative;
  padding: 12px 0 0;
  border-top: 1px solid rgba(38, 50, 77, 0.1);
  background: transparent;
}

.developer-credits::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(158, 15, 18, 0.65), rgba(242, 140, 56, 0.55), rgba(246, 162, 91, 0.55), rgba(140, 27, 27, 0.55), rgba(110, 12, 14, 0.65));
  opacity: 0.55;
}

.developer-credits-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: rgba(38, 50, 77, 0.62);
  font-size: 11.5px;
  letter-spacing: 0.18px;
}

.developer-credits strong {
  font-weight: 750;
  color: rgba(38, 50, 77, 0.72);
}

.dev-sep {
  opacity: 0.45;
}

.developer-credits a {
  color: rgba(110, 12, 14, 0.85);
  text-decoration: none;
  font-weight: 750;
}

.developer-credits a:hover {
  color: #9e0f12;
  text-decoration: underline;
}

.dev-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dev-whatsapp svg {
  color: rgba(242, 140, 56, 0.9);
}

@media (max-width: 640px) {
  .developer-credits-inner {
    justify-content: center;
    text-align: center;
  }
}

.modal {
  border: none;
  padding: 0;
  width: min(980px, calc(100% - 24px));
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.28);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.48);
}

.modal-inner {
  background: rgba(243, 245, 245, 0.96);
  border: 1px solid rgba(38, 50, 77, 0.14);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(38, 50, 77, 0.1);
}

.modal-title {
  margin: 0;
  font-size: 18px;
}

.modal-subtitle {
  margin: 2px 0 0;
  color: rgba(38, 50, 77, 0.72);
  line-height: 1.4;
}

.icon-btn {
  border: 1px solid rgba(38, 50, 77, 0.18);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  cursor: pointer;
}

.modal-body {
  padding: 14px;
  display: grid;
  gap: 12px;
}

.modal-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(38, 50, 77, 0.14);
  background: rgba(38, 50, 77, 0.04);
}

.modal-main-img {
  width: 100%;
  max-height: min(460px, 60vh);
  object-fit: cover;
  display: block;
}

.gallery-modal {
  border: none;
  padding: 0;
  width: 100vw;
  max-width: none;
  background: transparent;
  box-shadow: none;
}

.gallery-modal::backdrop {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
}

.gallery-stage {
  position: relative;
  width: min(96vw, 1400px);
  height: min(86vh, 860px);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-img {
  width: auto;
  max-width: 96vw;
  height: auto;
  max-height: 86vh;
  object-fit: contain;
  display: block;
  background: transparent;
}

.gallery-nav,
.gallery-close {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(243, 245, 245, 0.22);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(243, 245, 245, 0.96);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.gallery-close {
  top: 12px;
  right: 12px;
  font-size: 22px;
}

.gallery-nav {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-nav-prev {
  left: 10px;
}

.gallery-nav-next {
  right: 10px;
}


.modal-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.thumb {
  border: 1px solid rgba(38, 50, 77, 0.14);
  border-radius: 14px;
  padding: 0;
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  cursor: pointer;
}

.thumb img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  display: block;
}

.thumb[aria-current="true"] {
  outline: 3px solid rgba(225, 196, 151, 0.85);
  border-color: rgba(225, 196, 151, 0.95);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
}

.availability-calendar {
  border-radius: var(--radius);
  border: 1px solid rgba(243, 245, 245, 0.12);
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.availability-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 8px 6px;
  border-bottom: 1px solid rgba(243, 245, 245, 0.1);
  background: rgba(225, 196, 151, 0.08);
}

.cal-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.2px;
  color: rgba(243, 245, 245, 0.92);
  font-size: 14px;
}

.cal-nav-btn {
  width: 34px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(243, 245, 245, 0.12);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(243, 245, 245, 0.92);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  padding: 6px 6px 3px;
  color: rgba(243, 245, 245, 0.68);
  font-weight: 750;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cal-weekday {
  text-align: center;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  padding: 6px 6px 8px;
}

.cal-day {
  border: 1px solid rgba(243, 245, 245, 0.12);
  background: rgba(0, 0, 0, 0.14);
  border-radius: 10px;
  padding: 6px 0;
  font-weight: 650;
  cursor: pointer;
  color: rgba(243, 245, 245, 0.9);
  font-size: 12px;
}

.cal-day:hover {
  background: rgba(225, 196, 151, 0.12);
}

.cal-day.adjacent {
  color: rgba(243, 245, 245, 0.52);
  background: rgba(0, 0, 0, 0.08);
}

.cal-day.disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.cal-day.selected {
  border-color: rgba(225, 196, 151, 0.72);
  background: rgba(225, 196, 151, 0.22);
  color: #fff;
}

.cal-day.in-range {
  border-color: rgba(225, 196, 151, 0.22);
  background: rgba(225, 196, 151, 0.1);
}

.availability-error {
  margin: 0;
  min-height: 1.2em;
  color: rgba(225, 196, 151, 0.88);
  font-weight: 650;
}

.availability-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.availability-clear,
.availability-submit {
  border-radius: 12px;
  padding: 10px 10px;
  border: 1px solid rgba(243, 245, 245, 0.12);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(243, 245, 245, 0.92);
  cursor: pointer;
  font-weight: 750;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
}

.availability-submit {
  border-color: rgba(225, 196, 151, 0.32);
  background: rgba(225, 196, 151, 0.16);
}

.availability-submit:hover {
  background: rgba(225, 196, 151, 0.22);
}

.availability-clear:hover {
  background: rgba(0, 0, 0, 0.28);
}

@media (min-width: 820px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
  }

  body.nav-open .site-nav {
    position: static;
    flex-direction: row;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
  }

  .hero {
    padding: 84px 0 40px;
  }

  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    align-items: center;
  }

  .about-split {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 22px;
    align-items: center;
  }

  .doux-card {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .doux-copy {
    padding: 14px 18px 18px;
  }

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

  .suites-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .booking-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .modal-body {
    padding: 16px;
  }

  .modal-thumbs {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 360px) {
  .pet-badge {
    gap: 6px;
    padding: 6px 8px;
    font-size: 11px;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 820px) {
  .topbar-left {
    display: none;
  }

  #topbar-facebook {
    display: none;
  }

  #topbar-whatsapp-mobile {
    display: inline-flex;
  }

  .topbar-item {
    max-width: 74vw;
  }

  .hero-booking {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: min(420px, 100%);
    margin: 10px auto 0;
    justify-self: center;
  }

  .hero-home {
    align-items: flex-start;
  }

  .hero-home .hero-booking {
    order: -1;
    margin: 0 auto 12px;
  }

  .hero-home .hero-copy {
    order: 1;
  }

  .availability-panel {
    position: absolute;
    left: 50%;
    right: auto;
    top: calc(100% + 10px);
    bottom: auto;
    width: min(420px, calc(100vw - 24px));
    transform: translateX(-50%);
    border-radius: 16px;
    padding: 10px 10px 12px;
  }

  .availability-panel::before {
    display: none;
  }

  .availability-cal-header {
    padding: 7px 7px 5px;
  }

  .cal-weekdays {
    padding: 6px 6px 2px;
  }

  .cal-grid {
    gap: 4px;
    padding: 6px 6px 6px;
  }

  .cal-day {
    padding: 5px 0;
    border-radius: 9px;
    font-size: 12px;
  }

  .availability-actions {
    margin-top: 8px;
  }

  .availability-clear,
  .availability-submit {
    padding: 10px 8px;
  }

  .about-media,
  .doux-card,
  .contact-intro,
  .info-card,
  .booking-card,
  .contact-card,
  .contact-minimal,
  .carousel-btn,
  .availability-panel {
    backdrop-filter: none;
  }

  .contact-map-bleed {
    width: 100%;
    margin-left: 0;
  }

  .contact-map {
    height: clamp(300px, 52vh, 420px);
  }

  .whatsapp-float-ring {
    filter: none;
  }

  .hero-bg-btn {
    backdrop-filter: none;
    width: 38px;
    height: 38px;
  }

  body.availability-open .hero-bg-btn {
    z-index: 1;
    pointer-events: none;
  }

  .hero-home .hero-copy,
  .hero-media .hero-copy {
    transform: none;
  }

  html {
    scroll-padding-top: 132px;
  }

  main[id],
  section[id] {
    scroll-margin-top: 132px;
  }
}

@media (min-width: 980px) {
  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 28px;
  }
}

.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 40;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  text-decoration: none;
}

.whatsapp-float-ring {
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.25), rgba(34, 197, 94, 0) 60%);
  filter: blur(0.5px);
  animation: pulse-ring 2.2s ease-in-out infinite;
}

.whatsapp-float-core {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: radial-gradient(circle at 35% 30%, #2ee08d, #16a34a 70%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.65;
  }
  60% {
    transform: scale(1.1);
    opacity: 0.35;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
