:root {
  --ink: #1d1d1d;
  --ink-soft: #393329;
  --paper: #f7f1e7;
  --paper-deep: #efe1c9;
  --gold: #c9a86a;
  --gold-deep: #a77a3d;
  --stone: #6e5332;
  --lapis: #174c4f;
  --lapis-bright: #1f6f78;
  --white: #fffaf1;
  --shadow: 0 24px 80px rgba(29, 29, 29, 0.16);
  --shadow-soft: 0 18px 45px rgba(71, 49, 25, 0.12);
  --radius: 8px;
  --container: min(1160px, calc(100% - 32px));
  --header-height: 78px;
}

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

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

body {
  margin: 0;
  font-family: "Alexandria", "Cairo", "Tajawal", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(31, 111, 120, 0.12), transparent 28rem),
    linear-gradient(135deg, #fff8ed 0%, #f5ead7 46%, #ece0ca 100%);
  line-height: 1.8;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

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

h1 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2.7rem, 7vw, 6.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.25;
  color: var(--ink);
}

h3 {
  font-size: 1.12rem;
  line-height: 1.5;
}

.section-heading p {
  margin-bottom: 0;
  color: rgba(29, 29, 29, 0.72);
  font-size: 1.02rem;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--ink);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__mark {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 58px;
}

.loader__mark span {
  width: 28px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  animation: pulse 1s ease-in-out infinite;
}

.loader__mark span:nth-child(1) {
  height: 38px;
}

.loader__mark span:nth-child(2) {
  height: 58px;
  animation-delay: 0.16s;
}

.loader__mark span:nth-child(3) {
  height: 44px;
  animation-delay: 0.32s;
}

@keyframes pulse {
  50% {
    transform: translateY(-12px);
    filter: drop-shadow(0 0 18px rgba(201, 168, 106, 0.7));
  }
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  transition: transform 0.25s ease;
}

.navbar {
  width: var(--container);
  min-height: var(--header-height);
  margin: 14px auto 0;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  background: rgba(29, 29, 29, 0.2);
  color: var(--white);
  backdrop-filter: blur(16px);
  box-shadow: none;
  border-radius: var(--radius);
  transition: background 0.3s ease, box-shadow 0.3s ease, margin 0.3s ease;
}

.site-header.scrolled .navbar {
  margin-top: 8px;
  background: rgba(29, 29, 29, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(201, 168, 106, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: rgba(255, 250, 241, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-link:is(:hover, :focus-visible),
.nav-link.active {
  color: var(--white);
  background: rgba(201, 168, 106, 0.18);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(255, 250, 241, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 96svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px 0 78px;
  background:
    linear-gradient(145deg, rgba(29, 29, 29, 0.94), rgba(23, 76, 79, 0.86)),
    linear-gradient(45deg, var(--stone), var(--gold-deep));
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(201, 168, 106, 0.08) 0 2px, transparent 2px 160px),
    linear-gradient(60deg, rgba(255, 250, 241, 0.06) 0 1px, transparent 1px 120px);
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  z-index: -1;
  background: linear-gradient(0deg, var(--paper), transparent);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__content .eyebrow {
  color: var(--gold);
}

.hero__logo {
  margin-bottom: 20px;
  border-radius: 50%;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28), 0 0 0 3px rgba(201, 168, 106, 0.22);
}

.hero__subtitle {
  max-width: 780px;
  margin-bottom: 16px;
  color: rgba(255, 250, 241, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
}

.hero__text {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 250, 241, 0.72);
  font-size: 1.02rem;
}

.hero__actions,
.booking__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 22px;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn--primary {
  color: #23190c;
  background: linear-gradient(135deg, var(--gold), #f3d99a);
  box-shadow: 0 14px 34px rgba(201, 168, 106, 0.32);
}

.btn--ghost {
  color: var(--white);
  background: rgba(255, 250, 241, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 241, 0.22);
}

.btn--dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--lapis), #163638);
}

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

.ripple {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 0.62s ease-out forwards;
  pointer-events: none;
  z-index: -1;
}

@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(18);
    opacity: 0;
  }
}

.hero__visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.portrait-frame {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 0.86;
  border-radius: var(--radius);
  padding: 18px;
  background: linear-gradient(145deg, rgba(255, 250, 241, 0.2), rgba(201, 168, 106, 0.12));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.portrait-frame::before,
.portrait-frame::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(201, 168, 106, 0.45);
  border-radius: var(--radius);
  pointer-events: none;
}

.portrait-frame::before {
  inset: 9px;
}

.portrait-frame::after {
  inset: -14px;
  opacity: 0.36;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #e7d4ad, #8d6b37);
}

.hero-badge {
  position: absolute;
  display: grid;
  min-width: 140px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(29, 29, 29, 0.44);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(15px);
}

.hero-badge strong {
  color: var(--gold);
  font-size: 1.7rem;
  line-height: 1;
}

.hero-badge span {
  font-size: 0.82rem;
}

.hero-badge--top {
  top: 70px;
  left: 0;
}

.hero-badge--bottom {
  right: -8px;
  bottom: 82px;
}

.hero__ornaments span {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.pyramid {
  width: 260px;
  aspect-ratio: 1.18;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.24), rgba(255, 250, 241, 0.03));
  animation: float 7s ease-in-out infinite;
}

.pyramid--one {
  right: 8%;
  bottom: 6%;
}

.pyramid--two {
  width: 190px;
  left: 10%;
  top: 18%;
  animation-delay: -2s;
}

.sun-disc {
  width: 170px;
  height: 170px;
  left: 22%;
  bottom: 21%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.35), rgba(201, 168, 106, 0.02) 68%);
  animation: glow 5s ease-in-out infinite;
}

.cartouche {
  width: 86px;
  height: 240px;
  right: 46%;
  top: 14%;
  border: 1px solid rgba(201, 168, 106, 0.28);
  border-radius: 999px;
  transform: rotate(24deg);
}

@keyframes float {
  50% {
    transform: translate3d(0, -18px, 0) rotate(1deg);
  }
}

@keyframes glow {
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

.glass {
  border: 1px solid rgba(255, 250, 241, 0.58);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.58);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.about {
  background: var(--paper);
}

.about__grid,
.booking__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: stretch;
  gap: 24px;
}

.about__panel {
  padding: clamp(24px, 4vw, 38px);
}

.about__panel h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.about__panel p {
  color: rgba(29, 29, 29, 0.7);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.contact-list a,
.contact-list p {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list svg,
.contact-list svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.stat-card,
.stage-card,
.feature-card,
.social-card {
  position: relative;
  border: 1px solid rgba(110, 83, 50, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.76);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.stat-card {
  display: grid;
  align-content: center;
  min-height: 164px;
  padding: 24px;
  text-align: center;
}

.stat-card strong {
  color: var(--lapis);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
}

.stat-card span {
  color: rgba(29, 29, 29, 0.68);
  font-weight: 700;
}

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

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

.stages {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.86), rgba(247, 241, 231, 0.94)),
    radial-gradient(circle at 95% 20%, rgba(31, 111, 120, 0.18), transparent 30rem);
}

.stage-card,
.feature-card,
.social-card {
  min-height: 150px;
  padding: 24px;
}

.stage-card::before,
.feature-card::before,
.social-card::before {
  content: "";
  position: absolute;
  inset-inline: 20px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--lapis-bright), transparent);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.stage-card svg,
.feature-card svg,
.social-card svg {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  fill: none;
  stroke: var(--lapis);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stage-card h3,
.feature-card h3 {
  margin-bottom: 0;
}

.stage-card:is(:hover, :focus-within),
.feature-card:is(:hover, :focus-within),
.social-card:is(:hover, :focus-visible),
.stat-card:is(:hover, :focus-within) {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 106, 0.48);
  box-shadow: 0 26px 70px rgba(71, 49, 25, 0.18), 0 0 36px rgba(201, 168, 106, 0.13);
}

.stage-card:hover::before,
.feature-card:hover::before,
.social-card:hover::before {
  opacity: 1;
}

.why {
  background: #fff8ed;
}

.feature-card {
  min-height: 128px;
}

.booking {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(29, 29, 29, 0.95), rgba(23, 76, 79, 0.9)),
    var(--ink);
}

.booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 100%, rgba(201, 168, 106, 0.22), transparent 28rem);
}

.booking__grid {
  position: relative;
  z-index: 1;
}

.booking-card {
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 250, 241, 0.1);
  border-color: rgba(255, 250, 241, 0.16);
}

.booking-card h2 {
  color: var(--white);
}

.booking-card p {
  color: rgba(255, 250, 241, 0.72);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.contact-list a,
.contact-list p {
  margin: 0;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.08);
}

.contact-list svg {
  stroke: var(--gold);
}

.map-panel {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 168, 106, 0.26), rgba(31, 111, 120, 0.26)),
    #1b2f30;
  box-shadow: var(--shadow);
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 250, 241, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 241, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: rotate(-8deg) scale(1.24);
}

.map-grid::before,
.map-grid::after {
  content: "";
  position: absolute;
  background: rgba(201, 168, 106, 0.24);
  border-radius: 999px;
}

.map-grid::before {
  width: 80%;
  height: 34px;
  right: 4%;
  top: 35%;
  transform: rotate(28deg);
}

.map-grid::after {
  width: 34px;
  height: 120%;
  left: 35%;
  top: -10%;
  transform: rotate(18deg);
}

.map-pin {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.map-pin svg {
  width: 72px;
  height: 72px;
  fill: rgba(201, 168, 106, 0.2);
  stroke: var(--gold);
  stroke-width: 1.8;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.26));
  animation: pin 1.8s ease-in-out infinite;
}

@keyframes pin {
  50% {
    transform: translateY(-10px);
  }
}

.map-info {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  max-width: calc(100% - 44px);
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(29, 29, 29, 0.72);
  backdrop-filter: blur(12px);
}

.map-info strong {
  color: var(--gold);
}

.map-info span {
  color: rgba(255, 250, 241, 0.8);
}

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

.accordion {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.accordion__item {
  border: 1px solid rgba(110, 83, 50, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.78);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.accordion__item button {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  text-align: right;
  cursor: pointer;
}

.accordion__item button span {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(201, 168, 106, 0.2);
}

.accordion__item button span::before,
.accordion__item button span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 12px;
  height: 2px;
  background: var(--gold-deep);
  transform: translate(-50%, -50%);
}

.accordion__item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.accordion__item.active button span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.accordion__content p {
  min-height: 0;
  margin: 0;
  padding: 0 22px;
  overflow: hidden;
  color: rgba(29, 29, 29, 0.7);
}

.accordion__item.active .accordion__content {
  grid-template-rows: 1fr;
}

.accordion__item.active .accordion__content p {
  padding-bottom: 20px;
}

.contact {
  background:
    radial-gradient(circle at 78% 28%, rgba(31, 111, 120, 0.12), transparent 24rem),
    #fff8ed;
}

.social-grid {
  display: grid;
  text-align: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 190px;
  color: var(--ink);
}

.social-card strong {
  font-size: 1.18rem;
}

.social-card span {
  color: rgba(29, 29, 29, 0.62);
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 58px 16px 44px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.footer-background,
.footer-gradient-overlay,
.footer-effect {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.footer-background {
  background:
    linear-gradient(140deg, rgba(29, 29, 29, 0.98), rgba(23, 76, 79, 0.92)),
    var(--ink);
}

.footer-gradient-overlay {
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 168, 106, 0.26), transparent 34rem),
    linear-gradient(90deg, transparent, rgba(246, 240, 229, 0.06), transparent);
}

.footer-effect {
  width: 210px;
  height: 210px;
  margin: auto;
  border: 1px solid rgba(201, 168, 106, 0.2);
  border-radius: 50%;
  opacity: 0.58;
  animation: footerFloat 8s ease-in-out infinite;
}

.footer-effect-1 {
  right: -70px;
  left: auto;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.22), transparent 68%);
}

.footer-effect-2 {
  right: auto;
  left: -80px;
  top: auto;
  bottom: -95px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(31, 111, 120, 0.28), transparent 68%);
  animation-delay: -2.8s;
}

@keyframes footerFloat {
  50% {
    transform: translateY(-14px) scale(1.04);
  }
}

.footer-content {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  justify-items: center;
  gap: 26px;
}

.social-links-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.social-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 250, 241, 0.14);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 250, 241, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.social-link::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.social-link.whatsapp::before {
  background: linear-gradient(135deg, #25d366, var(--gold));
}

.social-link.telegram::before {
  background: linear-gradient(135deg, #2aabee, var(--gold));
}

.social-link.instagram::before {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link.telegram svg {
  fill: currentColor;
  stroke: none;
}

.social-link:is(:hover, :focus-visible) {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 106, 0.58);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28), 0 0 32px rgba(201, 168, 106, 0.16);
}

.social-link:is(:hover, :focus-visible)::before {
  opacity: 1;
}

.footer-copyright {
  width: min(880px, 100%);
  padding: 22px 24px;
  border: 1px solid rgba(255, 250, 241, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 250, 241, 0.08);
  backdrop-filter: blur(16px);
}

.copyright-content {
  display: grid;
  gap: 10px;
}

.developer-text,
.footer-tagline {
  margin: 0;
}

.developer-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 10px;
  color: rgba(255, 250, 241, 0.76);
  font-size: clamp(0.86rem, 2vw, 1rem);
  line-height: 1.8;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold), #fff2bd, var(--lapis-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.developer-link {
  position: relative;
  color: var(--white);
  font-weight: 800;
}

.developer-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--lapis-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.developer-link:is(:hover, :focus-visible)::after {
  transform: scaleX(1);
}

.footer-tagline {
  color: rgba(255, 250, 241, 0.74);
  font-size: 0.95rem;
}

.back-to-top {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 100;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 18px 36px rgba(29, 29, 29, 0.22);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(90deg);
}

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

.reveal-right {
  transform: translateX(34px);
}

.reveal-left {
  transform: translateX(-34px);
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  .section {
    padding: 78px 0;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: 92px;
    right: 16px;
    left: 16px;
    display: grid;
    padding: 14px;
    border: 1px solid rgba(255, 250, 241, 0.14);
    border-radius: var(--radius);
    background: rgba(29, 29, 29, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    justify-content: center;
    padding: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero__grid,
  .about__grid,
  .booking__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
    min-height: 420px;
  }

  .portrait-frame {
    width: min(330px, 84vw);
  }

  .hero-badge--top {
    top: 44px;
    left: calc(50% - 205px);
  }

  .hero-badge--bottom {
    right: calc(50% - 205px);
    bottom: 48px;
  }

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

  .site-footer {
    padding-top: 48px;
  }

  .footer-copyright {
    padding-inline: 18px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 24px, 1160px);
  }

  .navbar {
    padding: 10px 12px;
  }

  .brand span {
    max-width: 134px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: clamp(2.25rem, 14vw, 3.4rem);
  }

  .hero__content {
    text-align: center;
  }

  .hero__logo,
  .hero__actions {
    margin-inline: auto;
    justify-content: center;
  }

  .hero-badge {
    min-width: 112px;
    padding: 10px 12px;
  }

  .hero-badge strong {
    font-size: 1.25rem;
  }

  .hero-badge--top {
    left: 2px;
  }

  .hero-badge--bottom {
    right: 2px;
  }

  .stats-grid,
  .cards-grid--stages,
  .cards-grid--features,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .stage-card,
  .feature-card,
  .social-card {
    min-height: 116px;
  }

  .btn {
    width: 100%;
  }

  .map-panel {
    min-height: 340px;
  }

  .site-footer {
    padding-inline: 12px;
  }

  .social-link {
    width: 48px;
    height: 48px;
  }

  .developer-text {
    display: grid;
  }

  .back-to-top {
    left: 12px;
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
