:root {
  --black: #050403;
  --charcoal: #151515;
  --charcoal-2: #24211d;
  --gold: #d7a84b;
  --gold-bright: #f3cf72;
  --bronze: #8b5e22;
  --cream: #fff4d2;
  --muted: #c7bda9;
  --red: #c82019;
  --green: #15844f;
  --line: rgba(243, 207, 114, 0.2);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(215, 168, 75, 0.16), transparent 32rem),
    radial-gradient(circle at 90% 5%, rgba(200, 32, 25, 0.12), transparent 24rem),
    var(--black);
  color: white;
  font-family: var(--font-main);
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(16px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(5, 4, 3, 0.94), rgba(5, 4, 3, 0.68));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: 0 0 0 4px rgba(215, 168, 75, 0.06);
}

.brand strong {
  display: block;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-main);
}

.brand small {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand span {
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-call:hover {
  color: var(--gold-bright);
}

.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1206;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(215, 168, 75, 0.16);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding: 130px clamp(16px, 5vw, 72px) 70px;
  overflow: hidden;
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(0.72) contrast(1.05);
}

.hero-media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, var(--black), rgba(5, 4, 3, 0.84), rgba(5, 4, 3, 0.26)),
    linear-gradient(0deg, var(--black), transparent 42%);
}

.hero-content {
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  color: var(--gold-bright);
  background: rgba(215, 168, 75, 0.1);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 28px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-family: var(--font-main);
}

.hero h2 {
  margin-top: 12px;
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1.04;
  color: var(--gold-bright);
  font-family: var(--font-main);
}

.hero-copy {
  margin-top: 24px;
  color: #eee4d0;
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.7;
  max-width: 660px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn,
.contact-actions a,
.room-card a,
.hero-card a,
.booking-form button {
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 14px 20px;
  font-weight: 950;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:focus-visible,
.contact-actions a:focus-visible,
.room-card a:focus-visible,
.hero-card a:focus-visible,
.booking-form button:focus-visible,
.menu-button:focus-visible,
.nav-links a:focus-visible,
.nav-call:focus-visible {
  outline: 3px solid rgba(243, 207, 114, 0.55);
  outline-offset: 3px;
}

.btn:hover,
.contact-actions a:hover,
.room-card a:hover,
.hero-card a:hover,
.booking-form button:hover {
  transform: translateY(-2px);
}

.gold,
.booking-form button {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1206;
}

.green {
  background: var(--green);
}

.ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  color: white;
}

.rate-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
  max-width: 820px;
}

.rate-strip span {
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  color: var(--muted);
  font-weight: 800;
}

.rate-strip strong {
  display: block;
  color: var(--gold-bright);
  font-size: 24px;
  margin-bottom: 8px;
}

.rate-strip em {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 244, 210, 0.76);
  font-style: normal;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-card {
  align-self: end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(14, 13, 12, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 18px;
  border: 1px solid var(--line);
}

.hero-card h3 {
  font-size: 24px;
}

.hero-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 10px 0 18px;
}

.hero-card a {
  display: block;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line);
  text-align: center;
}

.section {
  padding: 88px clamp(16px, 5vw, 72px);
  border-top: 1px solid rgba(243, 207, 114, 0.12);
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  background: linear-gradient(180deg, var(--black), #0c0b0a);
}

.section h2 {
  margin-top: 16px;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-family: var(--font-main);
}

.section p {
  color: var(--muted);
  line-height: 1.75;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p:last-child {
  margin-top: 14px;
}

.cards {
  display: grid;
  gap: 22px;
}

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

.room-card,
.attraction-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

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

.room-card div {
  padding: 24px;
}

.room-card span,
.attraction-grid span {
  color: var(--gold-bright);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.room-card .price-badge {
  display: inline-grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(243, 207, 114, 0.28);
  background: rgba(243, 207, 114, 0.1);
  text-transform: none;
  letter-spacing: 0;
}

.room-card .price-badge em {
  color: rgba(255, 244, 210, 0.74);
  font-style: normal;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-card .price-badge strong {
  color: var(--gold-bright);
  font-size: 22px;
  line-height: 1;
}

.room-card h3 {
  font-size: 27px;
  margin: 8px 0 12px;
}

.room-facilities {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.room-facilities li {
  position: relative;
  padding-left: 20px;
  color: #f7edda;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.room-facilities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(243, 207, 114, 0.12);
}

.room-card a {
  display: inline-flex;
  margin-top: 20px;
  background: rgba(215, 168, 75, 0.12);
  border-color: var(--line);
  color: var(--gold-bright);
}

.facilities {
  background:
    radial-gradient(circle at 85% 30%, rgba(215, 168, 75, 0.1), transparent 24rem),
    #0b0a09;
}

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

.facility-grid span {
  padding: 18px;
  min-height: 78px;
  display: flex;
  align-items: center;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: #f7edda;
  font-weight: 850;
}

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

.attraction-grid article {
  padding: 24px;
}

.attraction-grid strong {
  display: block;
  font-size: 21px;
  margin-bottom: 10px;
}

.attraction-grid p {
  margin-top: 12px;
}

.gallery {
  background: #0b0a09;
}

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

.gallery-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #14110c;
}

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

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 36px;
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 8px 12px;
  border: 1px solid rgba(243, 207, 114, 0.35);
  border-radius: 999px;
  background: rgba(5, 4, 3, 0.78);
  color: #fff4d2;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  backdrop-filter: blur(8px);
}

.video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  background: #080706;
}

.video-copy p:not(.section-kicker) {
  max-width: 680px;
  margin: 18px 0 16px;
}

.text-link {
  display: inline-flex;
  color: var(--gold-bright);
  font-weight: 900;
  margin-top: 4px;
}

.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 300px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #050403;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-card iframe,
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.preview-fallback {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  background: radial-gradient(circle at center, rgba(243, 207, 114, 0.16), rgba(5, 4, 3, 0.95));
}

.preview-fallback img {
  width: 118px;
  height: 118px;
  border-radius: 50%;
}

.preview-fallback span {
  color: var(--gold-bright);
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reviews-section {
  background:
    linear-gradient(180deg, #080706, var(--black)),
    var(--black);
}

.reviews-panel {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: stretch;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.rating-box,
.review-cards article {
  border: 1px solid rgba(243, 207, 114, 0.18);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.26);
  padding: 20px;
}

.rating-box {
  display: grid;
  align-content: center;
  text-align: center;
}

.rating-box strong {
  font-size: 54px;
  line-height: 1;
  color: white;
  font-family: var(--font-main);
}

.rating-box span,
.review-cards span {
  color: var(--gold-bright);
  letter-spacing: 0.08em;
  font-weight: 900;
}

.rating-box small {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

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

.review-cards p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.reviews-panel > .btn {
  align-self: center;
  white-space: nowrap;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  background: var(--black);
}

.contact-actions a {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.map-preview-panel {
  margin-top: 28px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.google-360-card {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(243, 207, 114, 0.26);
  background: linear-gradient(180deg, rgba(243, 207, 114, 0.08), rgba(255, 255, 255, 0.035));
}

.google-360-copy span {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--gold-bright);
  color: #1a1206;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.google-360-copy h3 {
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.google-360-copy p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.google-360-frame {
  position: relative;
  min-height: 330px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(243, 207, 114, 0.26);
  background: #050403;
}

.google-360-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-frame {
  position: relative;
  width: 100%;
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(243, 207, 114, 0.26);
  background: rgba(0, 0, 0, 0.25);
}

.map-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.map-mini-card {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(243, 207, 114, 0.22);
  background: #050403;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.map-mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(243, 207, 114, 0.58);
}

.map-mini-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.map-mini-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 4, 3, 0.05), rgba(5, 4, 3, 0.92));
}

.map-mini-card span,
.map-mini-card strong,
.map-mini-card small {
  position: relative;
  z-index: 1;
}

.map-mini-card span {
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--gold-bright);
  color: #1a1206;
  font-size: 11px;
  font-weight: 950;
}

.map-mini-card strong {
  color: white;
  font-size: 16px;
}

.map-mini-card small {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 750;
}

.booking-form {
  position: relative;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.form-head {
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(243, 207, 114, 0.18);
}

.form-head span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(243, 207, 114, 0.25);
  background: rgba(215, 168, 75, 0.09);
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-form h3 {
  font-family: var(--font-main);
  font-size: clamp(24px, 3vw, 31px);
  line-height: 1.16;
  letter-spacing: -0.035em;
  color: white;
}

.form-head p {
  margin-top: 9px;
  color: rgba(255, 244, 210, 0.7);
  font-size: 14px;
  line-height: 1.65;
}

.form-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form label span {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.full-field {
  position: relative;
  margin-top: 14px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  margin-bottom: 0;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid rgba(243, 207, 114, 0.2);
  background: rgba(5, 4, 3, 0.62);
  color: var(--cream);
  font: inherit;
  font-weight: 650;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(199, 189, 169, 0.58);
  font-weight: 600;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(243, 207, 114, 0.78);
  box-shadow: 0 0 0 4px rgba(215, 168, 75, 0.12);
  background: rgba(10, 8, 6, 0.86);
}

.booking-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-bright) 50%),
    linear-gradient(135deg, var(--gold-bright) 50%, transparent 50%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.22));
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%,
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.booking-form option {
  background: #100e0c;
  color: var(--cream);
}

.booking-form textarea {
  min-height: 110px;
  resize: vertical;
}

.booking-form button {
  width: 100%;
  cursor: pointer;
  font: inherit;
  position: relative;
  margin-top: 18px;
  min-height: 54px;
  border-radius: 16px;
  font-family: var(--font-main);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 16px 40px rgba(215, 168, 75, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(16px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #050403;
  color: var(--muted);
}

footer img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  font-weight: 800;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: #f8efd9;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.social-button.facebook svg,
.social-button.youtube svg,
.social-button.review svg,
.social-button.whatsapp svg {
  fill: currentColor;
  stroke: none;
}

.social-button .cutout {
  fill: #050403;
}

.social-button:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 207, 114, 0.5);
  background: rgba(243, 207, 114, 0.13);
}

.social-button.instagram:hover {
  color: #ffb4d1;
}

.social-button.facebook:hover {
  color: #8ab4ff;
}

.social-button.youtube:hover {
  color: #ff6b5f;
}

.social-button.review:hover {
  color: var(--gold-bright);
}

.footer-credit {
  display: block;
  margin-top: 6px;
  color: rgba(255, 244, 210, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.footer-email {
  display: block;
  margin-top: 8px;
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 850;
}

.footer-credit a {
  color: var(--gold-bright);
}

footer a:hover {
  color: var(--gold-bright);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  gap: 12px;
}

.float {
  width: 58px;
  min-width: 58px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0;
  color: white;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.float span {
  display: none;
}

.float svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.float:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.45);
}

.float.call {
  background: linear-gradient(135deg, #df3a31, var(--red));
}

.float.whatsapp {
  background: linear-gradient(135deg, #25d366, var(--green));
}

@media (max-width: 1020px) {
  .nav-links,
  .nav-call {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.menu-open .nav-links {
    position: absolute;
    display: grid;
    left: 16px;
    right: 16px;
    top: 84px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(5, 4, 3, 0.98);
    z-index: 40;
  }

  .hero,
  .intro,
  .video-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .reviews-panel {
    grid-template-columns: 1fr;
  }

  .review-cards {
    grid-template-columns: 1fr;
  }

  .hero-card {
    align-self: auto;
  }

  .rate-strip,
  .three,
  .facility-grid,
  .attraction-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 16px;
    white-space: nowrap;
  }

  .brand small {
    font-size: 9px;
    display: block;
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding-top: 112px;
  }

  h1 {
    font-size: 46px;
  }

  .hero h2 {
    font-size: 34px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn,
  .contact-actions a {
    text-align: center;
  }

  .rate-strip,
  .three,
  .facility-grid,
  .attraction-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .map-frame {
    min-height: 230px;
  }

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

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }

  .float {
    min-width: 54px;
    width: 54px;
    padding: 0;
    border-radius: 50%;
  }

  .float span {
    display: none;
  }

  .social-button {
    width: 40px;
    height: 40px;
  }
}
