:root {
  --green-deep: #1e4d3c;
  --green-dark: #202e1f;
  --green-card: #152e24;
  --green-wa: #25d366;
  --gold: #d4bc8a;
  --gold-light: #e8dcc4;
  --gold-muted: #a8946e;
  --white: #ffffff;
  --header-pad: clamp(1rem, 3vw, 2rem);
  --container: min(1200px, 100% - 2 * var(--header-pad));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Tajawal", system-ui, sans-serif;
  background: var(--green-dark);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container-narrow {
  width: min(720px, var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 0.75rem var(--header-pad);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(32, 46, 31, 0.94);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
  z-index: 101;
}

.logo-icon {
  color: var(--gold);
}

.logo-text {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  z-index: 101;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  margin-inline: auto;
  transition: transform 0.2s, opacity 0.2s;
}

.site-header.menu-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.45rem, 1.2vw, 1.1rem);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  white-space: nowrap;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.6rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.icon-globe {
  flex-shrink: 0;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(232, 220, 196, 0.35);
  backdrop-filter: blur(8px);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s, border-color 0.2s;
}

.btn-contact:hover {
  background: rgba(232, 220, 196, 0.5);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem var(--header-pad) 4rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #e8f0ec url("assets/hero.png") center center / cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* مركز الإطار قليلاً للأعلى لإبراز المشهد والتفاصيل */
  object-position: center 40%;
  transform: scale(1.02);
  transform-origin: center center;
  filter: brightness(1.06) contrast(1.07) saturate(1.08);
}

@media (max-width: 768px) {
  .hero-video {
    object-position: center 36%;
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* إضاءة أنظف في الأعلى (إحساس النظافة)، وحجب أخف حول النص */
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 28%),
    linear-gradient(90deg, rgba(8, 32, 24, 0.42) 0%, rgba(8, 28, 22, 0.18) 42%, rgba(6, 22, 18, 0.28) 100%),
    radial-gradient(ellipse 95% 85% at 50% 42%, rgba(5, 18, 14, 0.55) 0%, rgba(5, 15, 12, 0.22) 52%, rgba(4, 12, 10, 0.38) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
  padding: 1.75rem 1.25rem;
}

.hero-title,
.hero-subtitle,
.hero-cta {
  opacity: 0;
  animation: heroFadeIn 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--white);
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.8)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
  animation-delay: 0.2s;
}

.hero-title .text-highlight {
  background: linear-gradient(to right, #c5a059 20%, #f5ecd8 50%, #c5a059 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textShine 4s linear infinite;
}

.hero-subtitle {
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
  max-width: 36em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.6);
  animation-delay: 0.4s;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation-delay: 0.6s;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textShine {
  to {
    background-position: 200% center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.9rem;
}

.btn-whatsapp {
  background: var(--green-deep);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn-whatsapp:hover {
  filter: brightness(1.08);
}

.btn-whatsapp .icon-wa {
  flex-shrink: 0;
}

.btn-phone {
  background: var(--gold-light);
  color: #1a2e26;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-phone:hover {
  filter: brightness(1.03);
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid rgba(212, 188, 138, 0.55);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  filter: none;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) var(--header-pad);
}

.section-about,
.section-gallery,
.section-packages,
.section-reviews {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 100%);
}

.section-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
}

.section-subtitle {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 40em;
}

.section-lead {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
  max-width: 42em;
}

.section-footnote {
  margin: 2rem 0 0;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* About features */
.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--green-card);
  border: 1px solid rgba(212, 188, 138, 0.15);
  border-radius: 16px;
  padding: 1.5rem 1.35rem;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(212, 188, 138, 0.5);
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(212, 188, 138, 0.25);
}

.feature-icon {
  display: block;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .feature-icon svg {
  transform: scale(1.2) rotate(8deg);
}

.feature-title {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.feature-text {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* Services */
.service-group {
  margin-top: 3rem;
}

.service-group:first-of-type {
  margin-top: 2rem;
}

.service-group-title {
  margin: 0 0 1.25rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-light);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 188, 138, 0.25);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.service-grid-1 {
  grid-template-columns: minmax(0, 1fr);
  max-width: 560px;
}

.service-card {
  background: var(--green-card);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(212, 188, 138, 0.2);
  border-color: rgba(212, 188, 138, 0.4);
}

.service-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.service-price {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
}

.service-price .currency {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.service-desc {
  margin: 0;
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.service-card .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

/* Packages */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.package-card {
  position: relative;
  background: var(--green-card);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(212, 188, 138, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(212, 188, 138, 0.2);
  border-color: rgba(212, 188, 138, 0.5);
}

.package-card-featured {
  border-color: rgba(212, 188, 138, 0.45);
  box-shadow: 0 0 0 1px rgba(212, 188, 138, 0.2), 0 20px 50px rgba(0, 0, 0, 0.35);
}

.package-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: #1a2e26;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
}

[dir="rtl"] .package-badge {
  left: auto;
  right: 1rem;
}

.package-name {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
}

.package-tagline {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.package-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
}

.package-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
}

.package-price small {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.85;
}

.package-was {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.package-save {
  font-size: 0.8rem;
  font-weight: 700;
  color: #7fd4a8;
}

.package-list {
  margin: 0;
  padding: 0 1.1rem 0 0;
  list-style: disc;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  font-size: 0.95rem;
}

.package-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
}

/* Gift */
.section-gift {
  background: linear-gradient(135deg, #12261c 0%, #0f291f 50%, #1a3d2e 100%);
}

.gift-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.gift-visual {
  min-height: 280px;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(212, 188, 138, 0.25), transparent),
    url("assets/hero.png") center / cover no-repeat;
  border: 1px solid rgba(212, 188, 138, 0.2);
}

/* Branches */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.branch-card {
  background: var(--green-card);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(212, 188, 138, 0.2);
  border-color: rgba(212, 188, 138, 0.4);
}

.branch-name {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-light);
}

.branch-address,
.branch-hours {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.branch-phone {
  margin: 0.5rem 0;
}

.branch-phone a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.branch-map {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}

.branch-map:hover {
  text-decoration: underline;
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.review-card {
  margin: 0;
  background: var(--green-card);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(212, 188, 138, 0.15);
}

.review-card p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.review-card footer {
  font-size: 0.9rem;
  color: var(--gold-muted);
}

.review-card cite {
  font-style: normal;
  font-weight: 800;
  color: var(--gold-light);
}

.review-branch {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--green-card);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: left;
  font-weight: 800;
  color: var(--gold);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* CTA block */
.section-cta {
  text-align: center;
  background: radial-gradient(ellipse 80% 80% at 50% 100%, rgba(30, 77, 60, 0.5), transparent),
    linear-gradient(180deg, #0d221a, #0a1812);
  border-top: 1px solid rgba(212, 188, 138, 0.12);
}

.cta-inner {
  padding-block: 0.5rem;
}

.cta-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
}

.cta-text {
  margin: 0 auto 1.75rem;
  max-width: 36em;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 4rem var(--header-pad) 2rem;
  background: rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  text-align: right;
}

.footer-col-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-muted);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(-5px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-brand {
  margin: 0 0 1rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--gold);
}

/* Styling for descriptive text and copyright in the footer */
.footer-col p.footer-note {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 280px; /* Limit width for readability in the first column */
  margin-inline-start: auto; /* To align to the right within its column due to footer-grid's text-align: right */
}

.footer-note a {
  color: var(--gold-muted);
  text-decoration: none; /* Remove default underline */
}


.fab-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 99;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-wa);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.fab-whatsapp:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

@media (max-width: 1024px) {
  .site-nav .nav-list {
    gap: 0.55rem 0.85rem;
  }

  .gift-layout {
    grid-template-columns: 1fr;
  }

  .gift-visual {
    min-height: 220px;
    order: -1;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    order: 2;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .logo {
    order: 0;
  }

  .header-actions {
    order: 1;
    margin-inline-start: auto;
  }

  .site-nav {
    order: 3;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .site-nav.is-open {
    max-height: 480px;
    padding-top: 1rem;
  }

  .site-nav .nav-list {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
  }

  .site-nav a {
    display: block;
    padding: 0.5rem 0;
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .btn-contact {
    padding: 0.55rem 0.85rem;
    font-size: 0.85rem;
  }

  .hero-content {
    padding: 1.2rem 0.85rem;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 320px;
  }

  .package-actions {
    flex-direction: column;
  }

  .package-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
