:root {
  --green: #17372d;
  --green-dark: #10271f;
  --gold: #d4ad63;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --text: #19231f;
  --muted: #6d756f;
  --line: #dedfd9;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(20, 40, 31, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

.section {
  padding: 96px 0;
}

.eyebrow {
  margin-bottom: 13px;
  color: #f0d49d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #9a7439;
}

.section-heading h2,
.amenities-content h2,
.contact-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(16, 39, 31, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.brand-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(240, 212, 157, 0.7);
  border-radius: 50%;
  color: #f0d49d;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 600;
}

.desktop-nav a:hover {
  color: white;
}

.header-button {
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: white;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: white;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 25, 18, 0.88), rgba(8, 25, 18, 0.38)),
    linear-gradient(0deg, rgba(8, 25, 18, 0.55), transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 820px;
  padding-top: 150px;
  padding-bottom: 65px;
  align-items: end;
  grid-template-columns: 1fr 380px;
  gap: 70px;
}

.hero-content {
  align-self: center;
}

.hero-content h1 {
  max-width: 690px;
  font-family: "Playfair Display", serif;
  font-size: clamp(3.5rem, 8vw, 6.8rem);
  font-weight: 500;
  line-height: 0.98;
}

.hero-text {
  max-width: 600px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.button-primary {
  background: var(--gold);
  color: var(--green-dark);
}

.button-light {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
}

.availability-card {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  box-shadow: var(--shadow);
}

.availability-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 23px;
}

.availability-heading span {
  color: #9a7439;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.availability-heading h2 {
  margin-top: 5px;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.availability-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
}

.availability-fields {
  display: grid;
  gap: 15px;
}

.availability-fields label,
.reservation-form label {
  display: grid;
  gap: 7px;
}

.availability-fields label > span,
.reservation-form label > span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  background: white;
}

input,
select {
  height: 49px;
  padding: 0 13px;
}

textarea {
  min-height: 110px;
  padding: 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}

.availability-submit,
.reservation-form button {
  width: 100%;
  min-height: 51px;
  margin-top: 18px;
  border: 0;
  border-radius: 10px;
  background: var(--green);
  color: white;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.intro-section {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.intro-copy {
  color: var(--muted);
}

.intro-copy p + p {
  margin-top: 17px;
}

.intro-stats {
  display: grid;
  margin-top: 35px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.intro-stats strong,
.intro-stats span {
  display: block;
}

.intro-stats strong {
  color: var(--green);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 500;
}

.intro-stats span {
  margin-top: 5px;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.rooms-section {
  background: var(--cream);
}

.section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 42px;
}

.section-description {
  max-width: 460px;
  color: var(--muted);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.room-card {
  overflow: hidden;
  border-radius: 18px;
  background: white;
  box-shadow: 0 15px 45px rgba(20, 40, 31, 0.08);
}

.room-image-wrap {
  position: relative;
  height: 255px;
  overflow: hidden;
}

.room-image-wrap img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: white;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
}

.room-body {
  padding: 24px;
}

.room-type {
  color: #9a7439;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.room-body h3 {
  margin-top: 4px;
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.room-body > p {
  min-height: 76px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.88rem;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.room-features span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--cream);
  color: #59635d;
  font-size: 0.68rem;
}

.room-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
}

.amenities-section {
  background: var(--green-dark);
  color: white;
}

.amenities-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
}

.amenities-image {
  height: 620px;
  overflow: hidden;
  border-radius: 22px;
}

.amenities-image img {
  height: 100%;
  object-fit: cover;
}

.amenities-content h2 {
  max-width: 560px;
}

.amenities-list {
  display: grid;
  margin-top: 38px;
  gap: 0;
}

.amenities-list article {
  display: grid;
  padding: 21px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: 45px 1fr;
  gap: 15px;
}

.amenities-list article > span {
  color: var(--gold);
  font-size: 0.75rem;
}

.amenities-list h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.amenities-list p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.84rem;
}

.gallery-grid {
  display: grid;
  height: 610px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
}

.gallery-grid figure {
  overflow: hidden;
  border-radius: 16px;
}

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

.gallery-large {
  grid-row: 1 / 3;
}

.gallery-wide {
  grid-column: 2 / 4;
}

.contact-section {
  background: var(--green);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.65);
}

.contact-details {
  display: grid;
  margin-top: 35px;
  gap: 18px;
}

.contact-details a,
.contact-details div {
  color: white;
  font-size: 0.9rem;
}

.contact-details span {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reservation-form {
  padding: 30px;
  border-radius: 20px;
  background: white;
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.reservation-form > label,
.reservation-form .form-row + .form-row,
.reservation-form > .form-row + label {
  margin-top: 15px;
}

footer {
  padding: 34px 0;
  background: #0a1d16;
  color: white;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-wrap p,
.footer-wrap > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  padding: 12px 17px;
  border-radius: 999px;
  background: #25d366;
  color: white;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  font-size: 0.75rem;
  font-weight: 700;
}

@media (max-width: 950px) {
  .desktop-nav,
  .header-button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    display: flex;
    width: min(330px, 88vw);
    height: 100vh;
    padding: 110px 30px 40px;
    background: var(--green-dark);
    flex-direction: column;
    gap: 23px;
    transition: right 0.3s ease;
  }

  .mobile-nav.open {
    right: 0;
  }

  .mobile-nav a {
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .availability-card {
    max-width: 580px;
  }

  .intro-grid,
  .amenities-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .room-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
    justify-self: center;
  }

  .amenities-image {
    height: 480px;
  }
}

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

  .section {
    padding: 72px 0;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 130px;
    padding-bottom: 38px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-content h1 {
    font-size: clamp(3.1rem, 15vw, 4.7rem);
  }

  .hero-text {
    font-size: 0.93rem;
  }

  .availability-card {
    padding: 21px;
  }

  .intro-grid {
    gap: 35px;
  }

  .intro-stats {
    gap: 10px;
  }

  .intro-stats strong {
    font-size: 1.6rem;
  }

  .section-top {
    display: block;
  }

  .section-description {
    margin-top: 17px;
  }

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

  .room-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .room-image-wrap {
    height: 240px;
  }

  .amenities-image {
    height: 360px;
  }

  .gallery-grid {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 180px 210px;
  }

  .gallery-large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .gallery-wide {
    grid-column: 1 / 3;
  }

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

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

/* SIMPLE LAYOUT OVERRIDES */

.amenities-layout {
  display: block;
  max-width: 820px;
}

.amenities-content {
  max-width: 760px;
}

.amenities-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
}

.room-image-wrap {
  height: 220px;
}

.room-image-wrap img {
  object-position: center;
}

.rooms-grid {
  gap: 18px;
}

.room-card {
  box-shadow: none;
  border: 1px solid var(--line);
}

.section {
  padding: 72px 0;
}

@media (max-width: 650px) {
  .amenities-list {
    grid-template-columns: 1fr;
  }

  .room-image-wrap {
    height: 190px;
  }

  .section {
    padding: 58px 0;
  }
}

/* Larger hotel name and navigation */

.site-header .brand-copy strong {
  font-size: 2rem !important;
  letter-spacing: 0.02em;
}

.site-header .brand-copy small {
  font-size: 0.72rem !important;
}

.site-header .brand-symbol {
  width: 50px;
  height: 50px;
  font-size: 1.55rem;
}

.site-header .desktop-nav a {
  font-size: 1.08rem !important;
  font-weight: 700;
}

.site-header .header-button {
  padding: 14px 27px;
  font-size: 0.95rem !important;
}

@media (max-width: 950px) {
  .site-header .brand-copy strong {
    font-size: 1.8rem !important;
  }

  .site-header .mobile-nav a {
    font-size: 2.3rem !important;
  }
}

@media (max-width: 650px) {
  .site-header .brand-copy strong {
    font-size: 1.55rem !important;
  }

  .site-header .brand-copy small {
    font-size: 0.62rem !important;
  }

  .site-header .brand-symbol {
    width: 44px;
    height: 44px;
  }
}

/* Show the real hotel image clearly in the hero */
.hero-image {
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(8, 25, 18, 0.74) 0%,
      rgba(8, 25, 18, 0.42) 52%,
      rgba(8, 25, 18, 0.18) 100%
    ),
    linear-gradient(
      0deg,
      rgba(8, 25, 18, 0.32),
      transparent 55%
    );
}

@media (max-width: 650px) {
  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(
        90deg,
        rgba(8, 25, 18, 0.78),
        rgba(8, 25, 18, 0.35)
      );
  }
}

/* Room image popup */

.room-image-wrap {
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  padding: 24px;
  align-items: center;
  justify-content: center;
  background: rgba(4, 10, 7, 0.92);
}

.image-lightbox.open {
  display: flex;
}

.image-lightbox img {
  width: auto;
  max-width: min(1100px, 96vw);
  max-height: 88vh;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 650px) {
  .image-lightbox {
    padding: 12px;
  }

  .image-lightbox img {
    max-width: 100%;
    max-height: 82vh;
  }
}

/* ===== Premium animations ===== */

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image {
  animation: heroZoom 12s ease-out forwards;
}

.hero-content {
  animation: heroContentIn 0.9s ease-out 0.15s both;
}

.availability-card {
  animation: heroContentIn 0.9s ease-out 0.35s both;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

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

.room-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(20, 40, 31, 0.14);
}

.room-image-wrap img {
  transition: transform 0.55s ease;
}

.room-card:hover .room-image-wrap img {
  transform: scale(1.06);
}

.button,
.header-button,
.availability-submit,
.reservation-form button {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.button:hover,
.header-button:hover,
.availability-submit:hover,
.reservation-form button:hover {
  transform: translateY(-2px);
}

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

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

/* Premium navigation bar */

.site-header {
  background: rgba(10, 28, 21, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.site-header.scrolled {
  background: rgba(10, 28, 21, 0.96);
}

.nav-wrap {
  min-height: 92px;
}

.site-header .brand-copy strong {
  color: #ffffff;
  font-size: 2rem !important;
}

.site-header .brand-copy small {
  color: rgba(255, 255, 255, 0.72);
}

.site-header .brand-symbol {
  border-color: rgba(240, 212, 157, 0.9);
  background: rgba(255, 255, 255, 0.06);
}

.site-header .desktop-nav {
  gap: 34px;
}

.site-header .desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem !important;
  font-weight: 700;
}

.site-header .desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

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

.site-header .header-button {
  padding: 14px 27px;
  background: linear-gradient(135deg, #e3bd70, #c99c49);
  color: #17372d;
  font-size: 0.95rem !important;
  box-shadow: 0 10px 25px rgba(212, 173, 99, 0.3);
}

@media (max-width: 950px) {
  .nav-wrap {
    min-height: 80px;
  }

  .site-header .brand-copy strong {
    font-size: 1.65rem !important;
  }
}

@media (max-width: 650px) {
  .site-header {
    background: rgba(10, 28, 21, 0.86);
  }

  .nav-wrap {
    min-height: 74px;
  }

  .site-header .brand-copy strong {
    font-size: 1.5rem !important;
  }
}

/* Show more of the hero photo */

.hero-image {
  animation: none;
  transform: none;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 650px) {
  .hero-image {
    object-position: center center;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 145px;
  }
}

/* Mobile hero: show the full hotel photo without cropping */
@media (max-width: 650px) {
  .hero {
    background: #12342b;
  }

  .hero-image {
    object-fit: contain !important;
    object-position: center top !important;
    background: #12342b;
  }

  .hero-shade {
    background:
      linear-gradient(
        180deg,
        rgba(7, 25, 18, 0.22) 0%,
        rgba(7, 25, 18, 0.48) 45%,
        rgba(7, 25, 18, 0.82) 100%
      );
  }
}

/* Restore hero animation without zooming */

@keyframes heroPhotoIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image {
  animation: heroPhotoIn 1.1s ease-out both !important;
}

.hero-content {
  animation: heroTextIn 0.9s ease-out 0.2s both;
}

.availability-card {
  animation: heroTextIn 0.9s ease-out 0.4s both;
}

/* Mobile menu backdrop and closing area */

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: none;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-backdrop.open {
  display: block;
  opacity: 1;
}

.mobile-nav {
  z-index: 999;
}

.menu-button {
  position: relative;
  z-index: 1001;
}

@media (max-width: 950px) {
  .mobile-nav {
    width: min(330px, 82vw);
    left: auto;
  }
}
