/* ============================
   Sukoon Coffee Co. - Styles
   Dark & Moody Theme
   ============================ */

/* --- Reset & Variables --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Dark & Moody Palette */
  --color-bg: #0a0a0a;
  --color-bg-elevated: #111111;
  --color-bg-card: #161616;
  --color-bg-input: #1a1a1a;
  --color-surface: #1e1e1e;
  --color-border: #2a2a2a;
  --color-border-light: #333333;

  --color-gold: #c9a96e;
  --color-gold-light: #dfc088;
  --color-gold-dark: #a8884e;

  --color-success-deep: #2a2018;
  --color-success: #3d2e1e;
  --color-success-accent: #c9a96e;

  --color-text: #f5f0eb;
  --color-text-secondary: #a09688;
  --color-text-muted: #6b6360;

  --color-white: #ffffff;
  --color-black: #000000;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 10vw, 8rem);
  --container-width: 1200px;
  --container-narrow: 800px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* --- Layout --- */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--section-padding) 0;
}

.section__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section__label--center {
  text-align: center;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.section__title--center {
  text-align: center;
}

.section__subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.text-gold {
  color: var(--color-gold);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-black);
}

.btn--primary:hover {
  background: var(--color-gold-light);
  color: var(--color-black);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-light);
}

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn__icon {
  width: 18px;
  height: 18px;
}

.btn__loading {
  display: none;
}

.btn--loading .btn__text {
  display: none;
}

.btn--loading .btn__loading {
  display: inline;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.nav__container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text);
  text-decoration: none;
}

.nav__logo:hover {
  color: var(--color-text);
}

.nav__logo-img {
  height: 40px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--color-text);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 0.5rem 1.25rem;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

/* Mobile Nav Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: all var(--transition);
}

.nav__toggle--active .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle--active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle--active .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a150f 50%, #0f0d0a 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(45, 74, 45, 0.1) 0%, transparent 60%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.hero__content {
  position: relative;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero__tagline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero__accent {
  color: var(--color-gold);
  font-style: italic;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* --- About --- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__text {
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.about__text em {
  color: var(--color-gold);
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 1.1em;
}

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}

.about__stat {
  display: flex;
  flex-direction: column;
}

.about__stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
}

.about__stat-suffix {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.about__image-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-bg-card);
}

.about__image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  pointer-events: none;
}

.about__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about__image-frame:hover img {
  transform: scale(1.03);
}

/* --- Services --- */
.services {
  background: var(--color-bg-elevated);
}

.service-single {
  max-width: 800px;
  margin: 0 auto;
}

.service-single__features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem 2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition);
}

.service-feature:hover {
  border-color: var(--color-border-light);
}

.service-feature__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 2px;
}

.service-feature__icon svg {
  width: 100%;
  height: 100%;
}

.service-feature__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.service-feature__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.service-single__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* --- Menu --- */
.menu {
  background: var(--color-bg-elevated);
}

.menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.menu__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  position: relative;
}

.menu__card--premium {
  border-color: var(--color-gold-dark);
}

.menu__card-badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--color-gold);
  color: var(--color-black);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
}

.menu__card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.menu__card-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.menu__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu__items--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.menu__item {
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
  font-weight: 300;
}

.menu__items--two-col .menu__item:nth-last-child(1),
.menu__items--two-col .menu__item:nth-last-child(2) {
  border-bottom: none;
}

.menu__items:not(.menu__items--two-col) .menu__item:last-child {
  border-bottom: none;
}

.menu__cta {
  text-align: center;
  margin-top: 3rem;
}

/* --- Gallery --- */
.gallery__loading {
  text-align: center;
  padding: 3rem 0;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.gallery__grid--instagram {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.gallery__post {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg-card);
  cursor: pointer;
}

.gallery__post img,
.gallery__post video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), opacity var(--transition);
}

.gallery__post:hover img,
.gallery__post:hover video {
  transform: scale(1.05);
  opacity: 0.7;
}

.gallery__post-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  background: rgba(0, 0, 0, 0.3);
}

.gallery__post:hover .gallery__post-overlay {
  opacity: 1;
}

.gallery__post-overlay svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.gallery__post-video-icon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  color: var(--color-white);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}

.gallery__post-video-icon svg {
  width: 20px;
  height: 20px;
}

.gallery__cta {
  text-align: center;
}

/* --- FAQ --- */
.faq {
  background: var(--color-bg-elevated);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__question {
  padding: 1.5rem 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: color var(--transition);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

details[open] .faq__question::after {
  content: '−';
}

.faq__question:hover {
  color: var(--color-gold);
}

.faq__answer {
  padding: 0 0 1.5rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  max-width: 90%;
}

/* --- Booking Form --- */
.booking {
  background: var(--color-bg);
}

.form {
  margin-top: 1rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
}

.form__input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--color-bg-input);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
}

.form__input::placeholder {
  color: var(--color-text-muted);
}

.form__input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form__autocomplete {
  position: relative;
}

.form__suggestions {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #1a1714;
  border: 1px solid rgba(160, 150, 136, 0.3);
  border-top: none;
  border-radius: 0 0 4px 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 100;
  max-height: 250px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.form__suggestions--visible {
  display: block;
}

.form__suggestion {
  padding: 0.75rem 1rem;
  color: var(--color-cream);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
}

.form__suggestion:hover {
  background: rgba(160, 150, 136, 0.15);
}

.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a09688' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

.form__success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 1.5rem;
  border: 1px solid var(--color-success-accent);
  background: var(--color-success-deep);
  border-radius: 4px;
}

.form__success svg {
  width: 48px;
  height: 48px;
  color: var(--color-success-accent);
  margin: 0 auto 1rem;
}

.form__success h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-cream);
  margin-bottom: 0.75rem;
}

.form__success p {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.form__success .btn {
  margin-top: 0.5rem;
}

.form__success--visible {
  display: block;
}

/* --- Footer --- */
.footer {
  background: var(--color-bg-elevated);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--color-border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
}

.footer__tagline {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  transition: all var(--transition);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer__social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a,
.footer__links p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-gold);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* --- Animations --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about__grid {
    gap: 3rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg-elevated);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    border-left: 1px solid var(--color-border);
    transition: right var(--transition);
  }

  .nav__menu--open {
    right: 0;
  }

  .nav__menu li {
    width: 100%;
  }

  .nav__link {
    display: block;
    padding: 1rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--color-border);
  }

  .nav__link::after {
    display: none;
  }

  .nav__link--cta {
    border: 1px solid var(--color-gold);
    padding: 0.75rem 1.25rem;
    text-align: center;
    margin-top: 1rem;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__image {
    order: -1;
  }

  .about__stats {
    gap: 1.5rem;
  }

  .service-feature {
    padding: 1.25rem 1.5rem;
  }

  .service-single__cta {
    flex-direction: column;
    align-items: center;
  }

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

  .menu__items--two-col {
    grid-template-columns: 1fr;
  }

  .menu__card {
    padding: 1.75rem;
  }

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.25rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

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

  .about__stats {
    flex-direction: column;
    gap: 1.25rem;
  }
}

/* --- Mobile Nav Overlay --- */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
}

.nav__overlay--visible {
  opacity: 1;
  visibility: visible;
}
