:root {
  --ink: #102324;
  --ink-soft: #536666;
  --ocean-950: #061718;
  --ocean-900: #092122;
  --ocean-800: #0d3130;
  --ocean-700: #11514c;
  --ocean-600: #167066;
  --gold: #c8a86c;
  --gold-light: #e1c88f;
  --cream: #f7f2e8;
  --cream-deep: #eee5d6;
  --white: #fffefa;
  --line: rgba(16, 35, 36, 0.13);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 12px 34px rgba(7, 27, 28, 0.08);
  --shadow-lg: 0 28px 80px rgba(7, 27, 28, 0.18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
iframe {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--gold-light);
  color: var(--ocean-950);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--white);
  color: var(--ocean-950);
  padding: 10px 14px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.offer-bar {
  position: relative;
  z-index: 1002;
  background: var(--ocean-950);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.offer-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.offer-bar p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.offer-bar a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #54d694;
  box-shadow: 0 0 0 5px rgba(84, 214, 148, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 242, 232, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 254, 250, 0.94);
  border-color: var(--line);
  box-shadow: 0 10px 36px rgba(7, 27, 28, 0.07);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 81, 76, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
}

.brand-mark svg {
  width: 30px;
  fill: none;
  stroke: var(--ocean-700);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong {
  display: block;
  color: var(--ocean-950);
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  position: relative;
  color: #3d5050;
  font-size: 0.8rem;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--gold);
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.54);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.icon-button:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: var(--white);
}

.icon-button svg {
  width: 18px;
  fill: var(--ocean-700);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 23px;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 17px;
  fill: currentColor;
}

.button--large {
  min-height: 54px;
  padding-inline: 28px;
}

.button--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ocean-950);
  box-shadow: 0 12px 30px rgba(160, 126, 64, 0.22);
}

.button--gold:hover {
  box-shadow: 0 16px 38px rgba(160, 126, 64, 0.3);
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button--glass:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.13);
}

.button--outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ocean-950);
}

.button--dark-outline {
  border-color: rgba(17, 81, 76, 0.28);
  background: transparent;
  color: var(--ocean-800);
}

.button--dark-outline:hover {
  border-color: var(--ocean-700);
  background: rgba(17, 81, 76, 0.05);
}

.button--light-outline {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--white);
}

.button--light-outline:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--ocean-950);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mobile-menu__nav {
  display: grid;
  gap: 6px;
  padding-block: 18px 24px;
}

.mobile-menu__nav>a {
  border-bottom: 1px solid var(--line);
  padding: 12px 4px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.mobile-menu__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 12px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(6, 23, 24, 0.65), rgba(6, 23, 24, 0.75)), url('images/hero-bg.png') no-repeat center center / cover;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(225, 200, 143, 0.12) 0.7px, transparent 0.7px);
  background-size: 28px 28px;
  opacity: 0.22;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
  pointer-events: none;
}

.hero-glow--one {
  width: 520px;
  height: 520px;
  top: -250px;
  left: -170px;
  background: radial-gradient(circle, rgba(22, 112, 102, 0.34), transparent 70%);
}

.hero-glow--two {
  width: 600px;
  height: 600px;
  right: -250px;
  bottom: -310px;
  background: radial-gradient(circle, rgba(200, 168, 108, 0.2), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: clamp(46px, 6vw, 84px);
  padding-block: 72px 62px;
}

.rating-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding: 7px 13px 7px 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.rating-pill__score {
  display: grid;
  place-items: center;
  width: 34px;
  height: 26px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ocean-950);
  font-size: 0.72rem;
}

.stars {
  color: var(--gold-light);
  font-size: 0.73rem;
  letter-spacing: 1px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.experience-copy h2,
.proof-card h2,
.location-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3.35rem, 6vw, 5.65rem);
}

.hero h1 em {
  display: block;
  color: var(--gold-light);
  font-weight: 500;
}

.hero-lead {
  max-width: 610px;
  margin: 26px 0 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.85;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 42px;
}

.hero-trust div {
  display: grid;
  gap: 3px;
}

.hero-trust strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.27rem;
  font-weight: 600;
}

.hero-trust span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-image-shell {
  position: relative;
  width: min(100%, 500px);
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 250px 250px 28px 28px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.35);
}

.hero-image-shell>img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  object-position: center 12%;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 23, 24, 0.85), transparent 48%);
}

.hero-image-label {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  gap: 3px;
}

.hero-image-label span {
  color: var(--gold-light);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-image-label strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
}

.floating-location {
  position: absolute;
  bottom: 58px;
  left: -40px;
  max-width: 270px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(200, 168, 108, 0.34);
  border-radius: 18px;
  background: rgba(255, 254, 250, 0.95);
  color: var(--ink);
  padding: 13px 16px 13px 12px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease;
}

.floating-location:hover {
  transform: translateY(-4px);
}

.floating-location__icon {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--ocean-700);
}

.floating-location svg {
  width: 19px;
  fill: var(--gold-light);
}

.floating-location small,
.floating-location strong {
  display: block;
}

.floating-location small {
  color: var(--ink-soft);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-location strong {
  margin-top: 2px;
  font-size: 0.78rem;
}

.service-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding-block: 19px;
  white-space: nowrap;
}

.service-strip span {
  color: rgba(255, 255, 255, 0.47);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
}

.service-strip i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  padding-block: 104px;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: end;
  gap: 70px;
}

.section-heading h2,
.experience-copy h2,
.location-copy h2,
.faq-heading h2 {
  color: var(--ocean-950);
  font-size: clamp(2.6rem, 4.5vw, 4.35rem);
}

.section-heading>p,
.section-heading--split>p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.85;
}

.services {
  background: var(--cream);
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 254, 250, 0.68);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(200, 168, 108, 0.55);
  box-shadow: var(--shadow-sm);
}

.service-card__media {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: var(--cream-deep);
}

.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 23, 24, 0.32), transparent 45%);
  pointer-events: none;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transition: transform 0.55s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.05);
}

.service-number {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.service-card__body {
  padding: 24px 24px 25px;
}

.service-kicker {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 11px;
  color: var(--ocean-950);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.15;
}

.service-card p:not(.service-kicker) {
  min-height: 78px;
  margin: 0 0 17px;
  color: var(--ink-soft);
  font-size: 0.79rem;
  line-height: 1.75;
}

.service-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.button--small {
  min-height: 40px !important;
  padding: 8px 16px !important;
  font-size: 0.74rem !important;
}

.service-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ocean-700);
  font-size: 0.75rem;
  font-weight: 800;
}

.service-card a span,
.text-link span {
  transition: transform 0.2s ease;
}

.service-card a:hover span,
.text-link:hover span {
  transform: translateX(4px);
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.services-cta p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.experience {
  background: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: clamp(56px, 8vw, 108px);
}

.experience-media {
  position: relative;
  min-height: 610px;
}

.experience-media__main {
  width: 79%;
  height: 560px;
  overflow: hidden;
  border-radius: 220px 220px 28px 28px;
  box-shadow: var(--shadow-lg);
}

.experience-media__main img,
.experience-media__small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.experience-media__small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 47%;
  height: 260px;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 50% 50% 24px 24px;
  box-shadow: var(--shadow-sm);
}

.experience-badge {
  position: absolute;
  top: 70px;
  right: 5px;
  width: 116px;
  height: 116px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(200, 168, 108, 0.54);
  border-radius: 50%;
  background: var(--ocean-950);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.experience-badge strong {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
}

.experience-badge span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lead-copy {
  margin: 23px 0 32px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.9;
}

.feature-list {
  display: grid;
}

.feature-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-block: 20px;
}

.feature-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-list article>span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.feature-list h3 {
  margin: 0 0 5px;
  color: var(--ocean-950);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.feature-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.79rem;
  line-height: 1.7;
}

.experience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.proof-section {
  padding-block: 0 104px;
  background: var(--white);
}

.proof-card {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ocean-950);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.proof-card__rating {
  display: grid;
  align-content: center;
  justify-items: center;
  border-right: 1px solid var(--line-light);
  padding: 56px 30px;
  text-align: center;
}

.proof-card__rating>strong {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 5.6rem;
  font-weight: 600;
  line-height: 0.8;
}

.proof-card__rating .stars {
  margin-top: 18px;
  font-size: 0.9rem;
}

.proof-card__rating>span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.proof-card__content {
  padding: 54px 62px;
}

.proof-card h2 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(2.35rem, 4vw, 3.65rem);
}

.proof-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 28px 0 30px;
}

.proof-points div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.proof-points span {
  color: var(--gold-light);
  font-weight: 800;
}

.proof-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}

.text-link--light {
  color: var(--gold-light);
}

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

.section-heading--center {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center>p:last-child {
  max-width: 620px;
  margin: 18px auto 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 270px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--cream-deep);
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 23, 24, 0.68), transparent 55%);
  opacity: 0.68;
  transition: opacity 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transition: transform 0.6s ease;
}

.gallery-item span {
  position: absolute;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  color: var(--white);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.gallery-item:hover::after {
  opacity: 1;
}

/* Premium Rooms Section */
.premium-rooms {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.room-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.room-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 168, 108, 0.45);
  box-shadow: var(--shadow-lg);
}

.room-card__media {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.room-card__media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.room-card:hover .room-card__media img {
  transform: scale(1.05);
}

/* Responsive Premium Rooms */
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.location {
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
  gap: 52px;
}

.location-intro {
  margin: 21px 0 28px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.contact-list {
  display: grid;
}

.contact-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding-block: 17px;
}

.contact-item:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-item__icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 81, 76, 0.2);
  border-radius: 50%;
  background: rgba(17, 81, 76, 0.045);
}

.contact-item__icon svg {
  width: 17px;
  fill: var(--ocean-700);
}

.contact-item small {
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-item p {
  margin: 0;
  color: var(--ink);
  font-size: 0.79rem;
  line-height: 1.7;
}

.contact-item a:hover {
  color: var(--ocean-600);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.map-shell {
  min-height: 570px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream-deep);
  box-shadow: var(--shadow-sm);
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 570px;
  filter: saturate(0.72) contrast(1.02);
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  align-items: start;
  gap: 82px;
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading>p:not(.eyebrow) {
  margin: 20px 0 24px;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.accordion-item {
  border-top: 1px solid var(--line);
}

.accordion-item:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-trigger {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--ocean-950);
  padding: 17px 0;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.accordion-trigger i {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid rgba(17, 81, 76, 0.25);
  border-radius: 50%;
}

.accordion-trigger i::before,
.accordion-trigger i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: var(--ocean-700);
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease;
}

.accordion-trigger i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-trigger[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-panel p {
  max-width: 650px;
  margin: -3px 0 22px;
  padding-right: 50px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.8;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--ocean-800);
  color: var(--white);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 50%, rgba(200, 168, 108, 0.16), transparent 38%), radial-gradient(circle at 90% 10%, rgba(22, 112, 102, 0.36), transparent 38%);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-block: 68px;
}

.final-cta h2 {
  max-width: 680px;
  color: var(--white);
  font-size: clamp(2.6rem, 4.8vw, 4.25rem);
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.89rem;
}

.final-cta__actions {
  min-width: 245px;
  display: grid;
  gap: 10px;
}

.site-footer {
  background: var(--ocean-950);
  color: rgba(255, 255, 255, 0.58);
  padding-block: 72px 92px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 1fr 0.7fr;
  gap: 52px;
}

.brand--footer strong {
  color: var(--white);
}

.brand--footer small {
  color: rgba(255, 255, 255, 0.42);
}

.brand--footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.brand--footer .brand-mark svg {
  stroke: var(--gold-light);
}

.footer-about {
  max-width: 340px;
  margin: 20px 0 0;
  font-size: 0.78rem;
}

.footer-grid h2 {
  margin: 4px 0 17px;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid>div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid a,
.footer-grid p {
  margin: 0;
  font-size: 0.73rem;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  border-top: 1px solid var(--line-light);
  padding-top: 22px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.64rem;
}

.mobile-action-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .menu-toggle {
    display: flex;
  }

  .nav-book {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 44px;
  }

  .floating-location {
    left: -18px;
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .footer-grid>div:last-child {
    grid-column: 2 / 3;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 58px 52px;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
    max-width: 620px;
    margin-inline: auto;
  }

  .hero-image-shell {
    width: 100%;
    border-radius: 220px 220px 24px 24px;
  }

  .hero-image-shell>img {
    height: min(66vh, 620px);
  }

  .floating-location {
    bottom: 24px;
    left: 18px;
  }

  .hero h1 {
    max-width: 720px;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading--split,
  .experience-grid,
  .location-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 22px;
  }

  .experience-grid {
    gap: 60px;
  }

  .experience-media {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .proof-card {
    grid-template-columns: 1fr;
  }

  .proof-card__rating {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .proof-card__content {
    padding: 44px 38px;
  }

  .location-grid {
    gap: 44px;
  }

  .faq-grid {
    gap: 40px;
  }

  .faq-heading {
    position: static;
  }

  .final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta__actions {
    min-width: 0;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-grid>div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 92px;
  }

  body {
    padding-bottom: 69px;
  }

  .offer-bar__inner {
    min-height: 34px;
  }

  .offer-bar a {
    display: none;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 1.25rem;
  }

  .brand small {
    font-size: 0.54rem;
  }

  .icon-button {
    display: none;
  }

  .hero-grid {
    gap: 40px;
    padding-top: 28px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-image-shell {
    border-radius: 170px 170px 20px 20px;
  }

  .hero-image-shell>img {
    height: 470px;
  }

  .hero-image-label {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .hero-image-label strong {
    font-size: 1.5rem;
  }

  .floating-location {
    right: 12px;
    bottom: 16px;
    left: 12px;
    max-width: none;
  }

  .hero-copy {
    text-align: left;
  }

  .rating-pill {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 0.9rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button {
    padding-inline: 15px;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 32px;
  }

  .hero-trust strong {
    font-size: 1rem;
  }

  .hero-trust span {
    font-size: 0.53rem;
  }

  .service-strip {
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 16px;
    scrollbar-width: none;
  }

  .service-strip::-webkit-scrollbar {
    display: none;
  }

  .section {
    padding-block: 70px;
  }

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

  .section-heading h2,
  .experience-copy h2,
  .location-copy h2,
  .faq-heading h2 {
    font-size: clamp(2.55rem, 12vw, 3.65rem);
  }

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

  .service-card__media {
    height: 300px;
  }

  .service-card p:not(.service-kicker) {
    min-height: 0;
  }

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

  .experience-media {
    min-height: 480px;
  }

  .experience-media__main {
    height: 440px;
  }

  .experience-media__small {
    height: 190px;
    border-width: 7px;
  }

  .experience-badge {
    top: 40px;
    width: 96px;
    height: 96px;
  }

  .experience-badge strong {
    font-size: 1.45rem;
  }

  .proof-section {
    padding-bottom: 70px;
  }

  .proof-card {
    border-radius: 24px;
  }

  .proof-card__rating {
    padding: 42px 24px;
  }

  .proof-card__rating>strong {
    font-size: 4.8rem;
  }

  .proof-card__content {
    padding: 36px 24px;
  }

  .proof-points {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 210px;
    gap: 10px;
  }

  .gallery-item--tall {
    grid-row: span 2;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .map-shell,
  .map-shell iframe {
    min-height: 430px;
  }

  .accordion-trigger {
    font-size: 1.18rem;
  }

  .accordion-panel p {
    padding-right: 0;
  }

  .final-cta__actions {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1200;
    height: 69px;
    display: grid;
    grid-template-columns: 0.42fr 0.58fr;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--ocean-950);
    box-shadow: 0 -12px 34px rgba(7, 27, 28, 0.22);
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
  }

  .mobile-action-bar a+a {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-action-bar svg {
    width: 18px;
    fill: currentColor;
  }

  .mobile-action-bar__primary {
    background: #1daa61;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand small {
    display: none;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    grid-template-columns: 1fr 1fr;
  }
}

/* Footer SEO Styling */
.footer-seo {
  margin-top: 48px;
  border-top: 1px solid var(--line-light);
  padding-top: 32px;
}

.footer-seo h3 {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.footer-seo p {
  font-size: 0.72rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* Floating Contact Dock */
.floating-contact-dock {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.floating-btn {
  pointer-events: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-decoration: none;
}

.floating-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.floating-btn--location {
  background: var(--ocean-700);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.floating-btn--location:hover {
  background: var(--ocean-600);
}

.floating-btn--whatsapp {
  background: #25D366;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.floating-btn--whatsapp:hover {
  background: #20ba5a;
}

.floating-btn--call {
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.floating-btn--call:hover {
  background: var(--gold-light);
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 38px rgba(7, 27, 28, 0.28);
}

/* Tooltips */
.floating-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--ocean-950);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--ocean-950);
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .floating-contact-dock {
    right: 16px;
    bottom: 85px;
    gap: 10px;
  }

  .floating-btn {
    width: 46px;
    height: 46px;
  }

  .floating-btn svg {
    width: 20px;
    height: 20px;
  }

  .floating-tooltip {
    display: none !important;
  }
}

/* Premium Welcome Popup Styles */
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.45s ease;
}

.promo-popup.is-active {
  opacity: 1;
  visibility: visible;
}

.promo-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 15, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity 0.45s ease;
}

.promo-popup__window {
  position: relative;
  z-index: 10;
  width: min(92%, 740px);
  background: linear-gradient(145deg, #061718 0%, #0c2628 100%);
  border-radius: 24px;
  border: 1px solid rgba(200, 168, 108, 0.32);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7), 0 0 50px rgba(200, 168, 108, 0.06);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.promo-popup.is-active .promo-popup__window {
  transform: translateY(0) scale(1);
}

.promo-popup__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 12;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(200, 168, 108, 0.3);
  border-radius: 50%;
  background: rgba(6, 23, 24, 0.6);
  backdrop-filter: blur(4px);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.promo-popup__close:hover {
  transform: rotate(90deg) scale(1.05);
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ocean-950);
  box-shadow: 0 0 12px rgba(200, 168, 108, 0.4);
}

.promo-popup__content {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.promo-popup__image-side {
  position: relative;
  height: 100%;
  min-height: 380px;
  background: var(--cream-deep);
  overflow: hidden;
}

.promo-popup__image-side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, rgba(6, 23, 24, 0.8) 95%, #061718 100%);
  pointer-events: none;
}

.promo-popup__image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.promo-popup.is-active .promo-popup__image-side img {
  transform: scale(1.08);
}

.promo-popup__info-side {
  padding: 48px 42px 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.promo-popup__eyebrow {
  color: var(--gold);
  background: rgba(200, 168, 108, 0.12);
  border: 1px solid rgba(200, 168, 108, 0.25);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 4px 14px;
  border-radius: 30px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.promo-popup__info-side h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.promo-popup__info-side h2 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.promo-popup__info-side p {
  margin: 0 0 28px;
  color: rgba(247, 245, 240, 0.75);
  font-size: 0.86rem;
  line-height: 1.7;
}

.promo-popup__actions {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.promo-popup__actions .button {
  min-height: 46px;
  padding: 12px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.promo-popup__actions .button--gold {
  background: var(--gold);
  color: var(--ocean-950);
  border: 1px solid var(--gold);
}

.promo-popup__actions .button--gold:hover {
  background: #e8c98b;
  border-color: #e8c98b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 168, 108, 0.35);
}

.promo-popup__actions .button--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.promo-popup__actions .button--outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .promo-popup__content {
    grid-template-columns: 1fr;
  }
  
  .promo-popup__image-side {
    min-height: 160px;
    height: 160px;
  }

  .promo-popup__image-side::after {
    background: linear-gradient(to top, #061718 10%, rgba(6, 23, 24, 0.3) 90%, transparent 100%);
  }
  
  .promo-popup__info-side {
    padding: 30px 24px;
  }

  .promo-popup__info-side h2 {
    font-size: 1.85rem;
  }
  
  .promo-popup__actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Infinite attention-grabbing pulse effects for CTAs */
.nav-book {
  position: relative;
  z-index: 1;
  animation: nav-book-zoom 2.2s infinite ease-in-out;
}

.nav-book:hover {
  animation: none;
  transform: translateY(-2px) scale(1.05);
}

@keyframes nav-book-zoom {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 12px 30px rgba(160, 126, 64, 0.22);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 16px 36px rgba(160, 126, 64, 0.35);
  }
}

.floating-btn {
  animation: floating-btn-zoom 2s infinite ease-in-out;
}

.floating-btn--whatsapp,
.floating-btn--call {
  animation: floating-btn-attention 2s infinite;
}

.floating-btn:hover {
  animation: none;
  transform: translateY(-4px) scale(1.08);
}

@keyframes floating-btn-zoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes floating-btn-attention {
  0%   { transform: scale(1) translateX(0);    box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  5%   { transform: scale(1.18) translateX(0); box-shadow: 0 0 0 8px rgba(255,255,255,0.25); }
  10%  { transform: scale(1.12) translateX(-8px) rotate(-8deg); }
  15%  { transform: scale(1.12) translateX(8px)  rotate(8deg); }
  20%  { transform: scale(1.12) translateX(-6px) rotate(-6deg); }
  25%  { transform: scale(1.12) translateX(6px)  rotate(6deg); }
  30%  { transform: scale(1.12) translateX(-4px) rotate(-4deg); }
  35%  { transform: scale(1.12) translateX(4px)  rotate(4deg); }
  40%  { transform: scale(1.05) translateX(0)    rotate(0deg); box-shadow: 0 0 0 14px rgba(255,255,255,0); }
  100% { transform: scale(1)    translateX(0)    rotate(0deg); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}