:root {
  --bg: #0a102d;
  --text: #f2f2f2;
  --accent: #c9b37a;
  --panel: #111a42;
  --panel-soft: #17204c;
  --shadow: 0 16px 34px rgba(0, 0, 0, 0.33);
  --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.22);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --space-1: 0.55rem;
  --space-2: 0.8rem;
  --space-3: 1.15rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 2.8rem;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  background: #0a102d;
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a[href],
button {
  pointer-events: auto;
  position: relative;
  z-index: 10;
}

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

.container {
  width: min(100% - 1.25rem, 1100px);
  margin-inline: auto;
}

.section {
  padding: var(--space-6) 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  transform: translateY(-50%);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(201, 179, 122, 0) 0%,
    rgba(201, 179, 122, 0.2) 50%,
    rgba(201, 179, 122, 0) 100%
  );
  pointer-events: none;
}

#media.section::before {
  top: calc(var(--space-6) * 0.5);
  transform: none;
}

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

h2 {
  font-size: clamp(1.4rem, 2.5vw + 0.7rem, 1.95rem);
  margin-bottom: var(--space-3);
  line-height: 1.35;
  letter-spacing: 0.1px;
}

.btn {
  min-height: 54px;
  border-radius: 999px;
  padding: 0.72rem 1.18rem;
  font-weight: 700;
  font-size: 1.02rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease,
    background-color 180ms ease, color 180ms ease, border-color 180ms ease,
    filter 180ms ease;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 5;
  cursor: pointer;
}

.btn .pdf-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 0.42rem;
  flex-shrink: 0;
}

.btn .pdf-icon svg {
  width: 100%;
  height: 100%;
}

.btn:active {
  transform: scale(0.98);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-gold {
  background: var(--accent);
  color: #111;
}

.btn-gold:hover {
  filter: brightness(1.06);
  box-shadow: 0 10px 22px rgba(201, 179, 122, 0.2);
}

.btn-gold:active {
  filter: brightness(0.95);
  transform: scale(0.98);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201, 179, 122, 0.06);
}

/* Secondary call buttons (outline style with tel links) */
a.btn-outline[href^="tel:"]:hover {
  background: rgba(201, 179, 122, 0.1);
  color: #f2f2f2;
}

a.btn-outline[href^="tel:"]:active {
  background: rgba(201, 179, 122, 0.14);
  color: #f2f2f2;
  transform: scale(0.98);
}

/* Other outline buttons (PDF, etc.) */
a.btn-outline:not([href^="tel:"]):hover {
  background: rgba(201, 179, 122, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

a.btn-outline:not([href^="tel:"]):active {
  background: rgba(201, 179, 122, 0.14);
  transform: scale(0.98);
}

.btn-light {
  background: #f2f2f2;
  color: #111;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(14px);
  background: rgba(10, 16, 45, 0.8);
  border-bottom: 1px solid rgba(201, 179, 122, 0.25);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.header-shell {
  padding: 0.68rem 0 0.78rem;
  display: grid;
  gap: var(--space-2);
  justify-items: center;
}

.logo-wrap {
  width: max-content;
  justify-self: center;
}

.logo {
  width: clamp(114px, 29vw, 138px);
}

.site-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.site-nav a {
  text-align: center;
  padding: 0.55rem 0.22rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 179, 122, 0.16);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.menu-item-icon {
  display: none;
}

.site-nav a.active {
  background: rgba(201, 179, 122, 0.18);
  border-color: rgba(201, 179, 122, 0.55);
  color: #f7efda;
}

.header-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.menu-toggle {
  display: none;
}

.header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.header-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.header-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}

.icon-whatsapp svg {
  transform: scale(1.1);
  transform-origin: center;
  fill: none !important;
  stroke: currentColor !important;
}

.icon-whatsapp svg path[stroke="none"] {
  display: none;
}

.header-actions .btn-gold {
  color: #0a102d;
}

.hero {
  min-height: auto;
  position: relative;
  overflow: visible;
  margin: 0;
  padding: 0.9rem 0 0.75rem;
  background: #0a102d;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
  padding: 0;
}

.hero-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(201, 179, 122, 0.26);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
  background: #070B20;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 16, 45, 0.6) 0%, rgba(10, 16, 45, 0.45) 44%, rgba(10, 16, 45, 0.66) 100%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(1.8rem, 5.4vw, 2.65rem);
  line-height: 1.17;
  margin-bottom: 0;
  text-wrap: balance;
}

.hero-actions,
.cta-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.66rem;
}

.hero-actions {
  width: calc(100% - 1.2rem);
  margin-top: 0;
  position: absolute;
  right: 0.6rem;
  left: 0.6rem;
  bottom: 0.65rem;
  z-index: 3;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.hero-media {
  width: 100%;
  aspect-ratio: 9 / 11.4;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.9) saturate(0.96);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem 1rem;
  pointer-events: none;
}

.hero-kicker {
  border: 1px solid rgba(201, 179, 122, 0.82);
  color: var(--accent);
  border-radius: 999px;
  padding: 0.24rem 0.95rem;
  font-size: 0.9rem;
  margin-bottom: 0.82rem;
}

.hero-title-main {
  display: block;
  color: #f2f2f2;
}

.hero-title-accent {
  display: block;
  color: var(--accent);
}

.hero-subtitle {
  margin-top: 0.9rem;
  font-size: 1.04rem;
  color: rgba(242, 242, 242, 0.9);
  max-width: 40ch;
  margin-inline: auto;
}

.hero-highlights {
  margin-top: auto;
  margin-bottom: 4.2rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.48rem;
}

.hero-highlight {
  text-align: center;
}

.hero-hi-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c9b37a;
  line-height: 1;
}

.hero-hi-icon svg {
  width: 24px;
  height: 24px;
  stroke: #c9b37a;
  fill: none;
}

.hero-highlight p {
  margin-top: 0.25rem;
  font-size: 0.82rem;
  line-height: 1.33;
  color: rgba(242, 242, 242, 0.9);
}

.hero-btn {
  min-height: 56px;
  padding: 0.62rem 0.95rem;
  font-size: 1.02rem;
  font-weight: 700;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
}

.hero-btn .btn-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-btn .btn-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero-actions .btn-outline {
  background: rgba(10, 16, 45, 0.7);
  border-color: rgba(201, 179, 122, 0.92);
  color: #f2f2f2;
}

.hero-actions .btn-gold {
  background: linear-gradient(180deg, #cdb884 0%, #c3ab72 100%);
  color: #0b1026;
}

.media h2,
.features h2,
.reviews h2,
.location h2,
.activities h2,
.cta h2 {
  text-align: center;
}

.media-heading {
  text-align: center;
  margin-bottom: 0.55rem;
}

.media-shell {
  border: 1px solid rgba(201, 179, 122, 0.22);
  border-radius: 18px;
  background: #070B20;
  box-shadow: var(--shadow-soft);
  padding: 0.95rem 1rem 1rem;
}

.media-divider {
  width: 100%;
  height: 1px;
  margin: 0.1rem 0 0.7rem;
  background: linear-gradient(
    90deg,
    rgba(201, 179, 122, 0) 0%,
    rgba(201, 179, 122, 0.45) 50%,
    rgba(201, 179, 122, 0) 100%
  );
}

.media-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.media-kicker::before,
.media-kicker::after {
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(201, 179, 122, 0.8);
}

.media-heading h2 {
  margin-bottom: 0.4rem;
}

.media-video {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  border: 1px solid rgba(201, 179, 122, 0.3);
  box-shadow: var(--shadow);
  background: #000;
}

.gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 74%;
  gap: var(--space-2);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.55rem;
  padding-top: 0.15rem;
  padding-inline: 0.08rem;
}

.gallery::-webkit-scrollbar {
  height: 6px;
}

.gallery::-webkit-scrollbar-thumb {
  background: rgba(201, 179, 122, 0.7);
  border-radius: 999px;
}

.gallery-item {
  border: 0;
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: #000;
  scroll-snap-align: start;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 179, 122, 0.16);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.gallery-item:active {
  transform: scale(0.985);
  border-color: rgba(201, 179, 122, 0.45);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 235px;
  object-fit: cover;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
}

.features-heading {
  text-align: center;
  margin-bottom: 0.55rem;
}

.features-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0.42rem;
}

.features-kicker::before,
.features-kicker::after {
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(201, 179, 122, 0.8);
}

.features-shell {
  border: 1px solid rgba(201, 179, 122, 0.22);
  border-radius: 18px;
  background: #070B20;
  box-shadow: var(--shadow-soft);
  padding: 0.95rem 1rem 1rem;
}

.features-divider {
  width: 100%;
  height: 1px;
  margin: 0.1rem 0 0.7rem;
  background: linear-gradient(
    90deg,
    rgba(201, 179, 122, 0) 0%,
    rgba(201, 179, 122, 0.45) 50%,
    rgba(201, 179, 122, 0) 100%
  );
}

.feature-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0.62rem 0.35rem;
  text-align: center;
  box-shadow: none;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feature-card .icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c9b37a;
}

.feature-card .icon svg {
  width: 24px;
  height: 24px;
  stroke: #c9b37a;
  fill: none;
}

.feature-card h3 {
  font-size: 1.04rem;
  margin-top: 0.42rem;
  line-height: 1.45;
}

.reviews-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 86%;
  gap: var(--space-2);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  padding-inline: 0.08rem;
}

.review-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(201, 179, 122, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 0.95rem;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: #c9b37a;
  margin-bottom: 0.45rem;
}

.stars svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.review-card p {
  font-size: 1rem;
  color: #e8ebf5;
}

.reviews-shell {
  border: 1px solid rgba(201, 179, 122, 0.22);
  border-radius: 18px;
  background: #070B20;
  box-shadow: var(--shadow-soft);
  padding: 0.95rem 1rem 1rem;
}

.reviews-heading {
  text-align: center;
  margin-bottom: 0.55rem;
}

.reviews-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0.42rem;
}

.reviews-kicker::before,
.reviews-kicker::after {
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(201, 179, 122, 0.8);
}

.reviews-divider {
  width: 100%;
  height: 1px;
  margin: 0.1rem 0 0.7rem;
  background: linear-gradient(
    90deg,
    rgba(201, 179, 122, 0) 0%,
    rgba(201, 179, 122, 0.45) 50%,
    rgba(201, 179, 122, 0) 100%
  );
}

.location-text {
  text-align: center;
  margin-bottom: var(--space-3);
  color: #d6d9e8;
  font-size: 1.02rem;
}

.location-heading {
  text-align: center;
  margin-bottom: 0.7rem;
}

.location-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0.42rem;
}

.location-kicker::before,
.location-kicker::after {
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(201, 179, 122, 0.8);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 179, 122, 0.25);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  min-height: 330px;
  border: 0;
}

.map-link {
  margin-top: var(--space-2);
  display: block;
  text-align: center;
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease,
    background-color 180ms ease, filter 180ms ease;
  border-radius: 10px;
  padding: 0.16rem 0.42rem;
}

.map-link:hover {
  background: rgba(201, 179, 122, 0.1);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.map-link:active {
  background: rgba(201, 179, 122, 0.14);
  transform: scale(0.98);
}

.activities {
  padding-top: 2.1rem;
  padding-bottom: 2.4rem;
}

.activities-shell {
  background: #070B20;
  border: 1px solid rgba(201, 179, 122, 0.22);
  border-radius: var(--radius-md);
  padding: 1.05rem 0.9rem 1.15rem;
  text-align: center;
}

.activities .btn {
  width: 100%;
  margin-top: 0.6rem;
}

.services-guide {
  padding-top: 1.6rem;
  padding-bottom: 2rem;
}

.services-guide-shell {
  border: 1px solid rgba(201, 179, 122, 0.22);
  border-radius: 18px;
  background: #070B20;
  box-shadow: var(--shadow-soft);
  padding: 1.05rem 0.9rem 1.2rem;
  text-align: center;
}

.services-guide-shell h2 {
  margin-bottom: 0.55rem;
}

.services-guide-shell p {
  margin: 0 0 0.75rem;
  color: rgba(242, 242, 242, 0.84);
  font-size: 0.95rem;
}

.services-guide-shell .btn {
  width: 100%;
}

.prices {
  padding-top: 1.6rem;
  padding-bottom: 2rem;
}

.prices-shell {
  border: 1px solid rgba(201, 179, 122, 0.22);
  border-radius: 18px;
  background: #070B20;
  box-shadow: var(--shadow-soft);
  padding: 1.05rem 0.9rem 1.2rem;
  text-align: center;
}

.prices-heading {
  text-align: center;
  margin-bottom: 0.75rem;
}

.prices-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #c9b37a;
  font-size: 0.9rem;
  margin-bottom: 0.42rem;
}

.prices-kicker::before,
.prices-kicker::after {
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(201, 179, 122, 0.8);
}

.prices-grid {
  display: grid;
  gap: 0.62rem;
  margin-bottom: 0.85rem;
}

.price-card {
  border: 1px solid rgba(201, 179, 122, 0.2);
  border-radius: 14px;
  background: rgba(10, 16, 45, 0.72);
  padding: 0.85rem 0.7rem;
}

.price-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.04rem;
  color: #f2f2f2;
}

.price-card p {
  margin: 0;
  color: rgba(242, 242, 242, 0.86);
  font-size: 0.93rem;
}

.prices-shell .btn {
  width: 100%;
}

.cta-shell {
  background: linear-gradient(
    135deg,
    rgba(201, 179, 122, 0.3) 0%,
    rgba(201, 179, 122, 0.18) 30%,
    #0a102d 70%,
    #0a102d 100%
  );
  border-radius: var(--radius-lg);
  border: 2px solid rgba(201, 179, 122, 0.78);
  padding: 1.55rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta p {
  color: #d8ddee;
  margin: var(--space-1) 0 var(--space-3);
  font-size: 1.03rem;
}

.cta-actions .btn-outline {
  background: rgba(10, 16, 45, 0.72);
  border-color: rgba(201, 179, 122, 0.92);
  color: #f2f2f2;
}

.cta-actions .btn-gold {
  background: linear-gradient(180deg, #d5c089 0%, #c8b076 100%);
  color: #0a102d;
}

.site-footer {
  border-top: 1px solid rgba(201, 179, 122, 0.2);
  padding: 2rem 0 calc(2.4rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(15, 24, 60, 0.75), rgba(8, 14, 38, 0.94));
}

.footer-shell {
  display: grid;
  gap: 0.9rem;
  justify-items: center;
  text-align: center;
}

.footer-logo {
  width: 74px;
}

.footer-info p {
  margin: 0.2rem 0;
  color: #d7dcec;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  gap: 0.95rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--accent);
  border-bottom: 1px dashed rgba(201, 179, 122, 0.45);
}

.gallery-modal {
  border: 0;
  padding: 0;
  width: min(95vw, 680px);
  background: transparent;
}

.gallery-modal::backdrop {
  background: rgba(0, 0, 0, 0.9);
}

.gallery-modal img {
  width: 100%;
  border-radius: 12px;
  max-height: 80svh;
  object-fit: contain;
}

.modal-close {
  position: fixed;
  top: 0.8rem;
  left: 0.8rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.modal-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modal-nav svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal-prev {
  left: 0.8rem;
}

.modal-next {
  right: 0.8rem;
}

@media (max-width: 759px) {
  .site-header {
    backdrop-filter: blur(10px);
  }

  .header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.44rem 0;
    gap: 0.55rem;
    position: relative;
  }

  .logo {
    width: clamp(110px, 25vw, 132px);
  }

  .logo-wrap {
    order: 3;
    justify-self: auto;
    margin-inline-start: 0.2rem;
  }

.menu-toggle {
    order: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(201, 179, 122, 0.42);
    background: rgba(201, 179, 122, 0.08);
    color: #f2f2f2;
    font-size: 1.45rem;
    line-height: 1;
    padding: 0;
    box-shadow: none;
    margin-inline-end: 0.18rem;
    transition: transform 180ms ease, box-shadow 180ms ease,
      background-color 180ms ease, border-color 180ms ease, filter 180ms ease;
  }

  .menu-toggle:hover {
    background: rgba(201, 179, 122, 0.14);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  }

  .menu-toggle:active {
    background: rgba(201, 179, 122, 0.18);
    transform: scale(0.98);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.28rem);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.42rem;
    padding: 0.5rem;
    border-radius: 14px;
    border: 1px solid rgba(201, 179, 122, 0.18);
    background: rgba(10, 16, 45, 0.96);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
    z-index: 95;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.46rem 0.68rem;
    font-size: 0.9rem;
    border-radius: 11px;
    line-height: 1.2;
    border-color: rgba(201, 179, 122, 0.14);
    background: rgba(255, 255, 255, 0.025);
    text-align: right;
  }

  .site-nav a span:first-child {
    display: inline-block;
  }

  .menu-item-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(201, 179, 122, 0.95);
    flex-shrink: 0;
  }

  .menu-item-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
  }

  .header-actions {
    order: 2;
    display: flex;
    gap: 0.52rem;
    margin-inline: auto;
    transform: none;
  }

  .header-actions .btn {
    min-height: 48px;
    height: 48px;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 1.04rem;
    font-weight: 700;
    box-shadow: none;
  }

  .header-btn-label {
    display: inline;
    line-height: 1;
  }

  .header-icon {
    width: 19px;
    height: 19px;
  }

  .hero {
    min-height: auto;
    margin: 0;
    padding: 0.75rem 0 0.62rem;
  }

  .hero-content {
    gap: 0;
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(2rem, 7.2vw, 2.5rem);
    transform: translateY(-10%);
  }

  .hero-subtitle {
    font-size: 0.92rem;
    margin-top: 0.95rem;
    transform: translateY(-10%);
  }

  .hero-kicker {
    font-size: 0.8rem;
    margin-bottom: 0.78rem;
    transform: translateY(-5%);
  }

  .hero-copy {
    padding: 1.2rem 0.8rem 0.8rem;
  }

  .hero-media {
    border-radius: 0;
    aspect-ratio: 9 / 11.8;
  }

  .hero-frame {
    padding-bottom: 1rem;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
  }

  .hero-highlights {
    gap: 0.42rem;
    margin-bottom: 4.1rem;
    transform: translateY(10%);
  }

  .hero-highlight p {
    font-size: 0.74rem;
  }

  .hero-actions {
    width: calc(100% - 0.9rem);
    right: 0.45rem;
    left: 0.45rem;
    bottom: 0.25rem;
    gap: 0.46rem;
    padding: 0;
    transform: none;
    will-change: auto;
    -webkit-transform: translateZ(0);
  }

  .hero-btn {
    min-height: 50px;
    font-size: 0.95rem;
    line-height: 1;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .features-grid {
    align-items: start;
  }

  .feature-card {
    display: grid;
    grid-template-rows: 24px auto;
    align-content: start;
    justify-items: center;
    row-gap: 0.42rem;
  }

  .feature-card .icon {
    width: 24px;
    height: 24px;
    margin: 0;
    line-height: 0;
  }

  .feature-card .icon svg {
    display: block;
    width: 24px;
    height: 24px;
  }

  .feature-card h3 {
    margin-top: 0;
  }

  .gallery {
    grid-auto-columns: 52%;
    gap: 0.62rem;
  }

  .gallery-item img {
    min-height: 165px;
  }
}

@media (min-width: 760px) {
  .container {
    width: min(100% - 2rem, 1100px);
  }

  .header-shell {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-items: stretch;
    padding: 0.8rem 0 0.9rem;
  }

  .logo-wrap {
    justify-self: start;
  }

  .logo {
    width: clamp(140px, 35vw, 172px);
  }

  .site-nav {
    display: flex;
    gap: 0.45rem;
    justify-content: center;
  }

  .menu-item-icon {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav a {
    padding: 0.5rem 0.8rem;
  }

  .header-actions {
    display: flex;
    gap: 0.55rem;
  }

  .header-actions .header-icon {
    display: none;
  }

  .header-btn-label {
    display: inline;
  }

  .hero-content {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    gap: 0;
  }

  .hero-media {
    aspect-ratio: 16 / 8.2;
  }

  .hero-copy {
    text-align: center;
    padding: 1rem 1rem 0.9rem;
  }

  .hero-highlights {
    margin-bottom: 5.6rem;
  }

  .hero-actions {
    bottom: 0.6rem;
  }

  .hero h1 {
    font-size: 2.55rem;
    transform: none;
  }

  .hero-subtitle {
    transform: none;
  }

  .gallery {
    grid-auto-columns: 26%;
  }

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

  .reviews-grid {
    grid-auto-columns: 42%;
  }

  .activities .btn {
    width: auto;
    min-width: 260px;
  }

  .services-guide-shell .btn {
    width: auto;
    min-width: 260px;
  }

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

  .prices-shell .btn {
    width: auto;
    min-width: 260px;
  }
}

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

  .btn,
  .site-nav a {
    transition: none;
  }
}
