/* ============================================================
   SOFA ELEGANCE — MAIN STYLESHEET (FULLY RESPONSIVE)
   ============================================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  --cream:    #F5F0E8;
  --cream-dk: #EDE7D8;
  --brown:    #6B4C35;
  --brown-lt: #A0795A;
  --gold:     #C9A96E;
  --dark:     #1A1410;
  --text:     #3A2E24;
  --muted:    #7A6A5A;
  --red:      #C0392B;
  --green:    #4A7C5F;

  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;

  --radius:   12px;
  --shadow:   0 4px 24px rgba(26,20,16,.10);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 100px 0;
}

/* ---------- SECTION TYPOGRAPHY ---------- */
.section-eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 36px;
}
.section-title.center { text-align: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(245,240,232,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(26,20,16,.08);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  transition: color var(--transition);
  white-space: nowrap;
}
.navbar.scrolled .nav-logo { color: var(--dark); }
.logo-plus { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background var(--transition), transform .3s ease, opacity .3s ease;
}
.navbar.scrolled .nav-toggle span { background: var(--dark); }

/* Hamburger → X animation */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
   
}


.hero-img{
  width: 100%;
  height: 100vh;
  object-fit: contain;
  display: block;
  
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
 
}
.hero-bg.loaded { transform: scale(1); }
/* Dòng 175-177, thêm vào: */



.hero-title em { font-style: italic; font-weight: 400; }
.hero-title strong { font-style: normal; font-weight: 700; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp .7s 1.1s forwards;
}
.hero-scroll svg { animation: bounce 1.8s infinite; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--cream);
  text-align: center;
}
.about .section-title {
  max-width: 680px;
  margin: 0 auto 28px;
}
.about-body {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-body p { color: var(--muted); font-size: .95rem; }
.about-divider {
  margin-top: 48px;
  font-size: 1.4rem;
  color: var(--gold);
  opacity: .6;
}

/* ============================================================
   DIFFERENTIATORS
   ============================================================ */
.diff {
  background: var(--cream-dk);
  padding-top: 0;
}
.diff .section-title { margin-bottom: 56px; }

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: end;
}

.diff-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition);
}
.diff-card:hover { transform: translateY(-6px); }

.diff-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: #c4a882 center/cover no-repeat;
}
.diff-img--1 {
  background-image: url('../images/anh8.jpg');
  aspect-ratio: 3/3.5;
}
.diff-img--2 {
  background-image: url('../images/anh9.jpg');
}
.diff-img--3 {
  background-image: url('../images/anh10.jpg');
  aspect-ratio: 3/3.5;
}

.diff-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(20,14,8,.82) 60%, transparent);
  color: #fff;
}
.diff-text h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.diff-text p { font-size: .82rem; opacity: .88; line-height: 1.6; }

/* ============================================================
   COLLECTION
   ============================================================ */
.collection { background: var(--cream); }
.collection .section-title { max-width: 520px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(28px);
}
.product-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease, box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(26,20,16,.15);
}

.product-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: #d4c4b0 center/cover no-repeat;
  overflow: hidden;
}
.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
}
.product-card:hover .product-img::after { background: rgba(0,0,0,.08); }

/* Product images */
.product-img--vienna    { background-image: url('../images/anh1.jpg'); }
.product-img--milano    { background-image: url('../images/anh2.jpg'); }
.product-img--kyoto     { background-image: url('../images/anh3.jpg'); }
.product-img--florence  { background-image: url('../images/anh4.jpg'); }
.product-img--oslo      { background-image: url('../images/anh5.jpg'); }
.product-img--santorini { background-image: url('../images/anh6.jpg'); }
.product-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--text);
  z-index: 1;
}
.product-info {
  padding: 22px 24px 26px;
}
.product-info h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}
.product-info p {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.product-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--red);
  font-family: var(--serif);
}

.collection-cta {
  text-align: center;
  margin-top: 56px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  transition: all var(--transition);
  cursor: pointer;
}
.btn--outline {
  border: 1.5px solid var(--brown);
  color: var(--brown);
  background: transparent;
}
.btn--outline:hover {
  background: var(--brown);
  color: #fff;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream-dk); }
.services .section-title { margin-bottom: 60px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.service-item { padding: 12px; }
.service-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: rgba(74,124,95,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg {
  width: 26px; height: 26px;
  stroke: var(--green);
}
.service-item h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-item p { font-size: .83rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   CONTACT CTA
   ============================================================ */
.contact {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background: url('../images/anh11.jpg') center/cover no-repeat;
  filter: brightness(.5) saturate(.8);
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,12,6,.88) 40%, rgba(20,12,6,.40) 100%);
}
.contact-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.contact-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.contact-accent { color: var(--green); font-style: italic; }
.contact-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.78);
  max-width: 440px;
  line-height: 1.75;
}
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  flex-shrink: 0;
}
.cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: transform var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.cta-btn:hover { transform: scale(1.08); }
.cta-btn svg { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; }
.cta-btn span {
  font-size: .75rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 48px;
}
.footer-brand .nav-logo { color: #fff; font-size: 1.1rem; display: inline-block; margin-bottom: 14px; }
.footer-brand p { font-size: .83rem; line-height: 1.75; max-width: 280px; }
.footer-links h4 {
  font-family: var(--serif);
  font-size: .95rem;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li, .footer-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  padding: 20px 28px;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ============================================================
   RESPONSIVE — TABLET (1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .diff-grid { grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ============================================================
   RESPONSIVE — SMALL TABLET / LARGE MOBILE (768px)
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  /* --- Nav desktop links: ẩn trên mobile --- */
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none !important; }
  .nav-toggle { display: flex; position: relative; z-index: 1100; }
  .nav-toggle.open span { background: #fff !important; }

  /* --- Hero --- */
  .hero-content {
    padding: 120px 20px 100px;
    max-width: 100%;
  }
  .hero-title {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
    max-width: 100%;
  }
  .hero-desc {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }
  .hero-desc p { font-size: .87rem; }

  /* --- About --- */
  .about .section-title { max-width: 100%; }
  .about-body { max-width: 100%; }

  /* --- Diff --- */
  .diff-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .diff-card { max-width: 520px; margin: 0 auto; width: 100%; }
  .diff-img--1,
  .diff-img--3 { aspect-ratio: 16/10; }
  .diff-img--2  { aspect-ratio: 16/10; }

  /* --- Products --- */
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  /* --- Services --- */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* --- Contact --- */
  .contact-inner {
    flex-direction: column;
    text-align: center;
    gap: 36px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .contact-desc { max-width: 100%; }
  .contact-overlay {
    background: linear-gradient(180deg, rgba(20,12,6,.88) 0%, rgba(20,12,6,.60) 100%);
  }
  .contact-buttons {
    flex-direction: row;
    gap: 32px;
  }

  /* --- Footer --- */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-top: 48px;
    padding-bottom: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — MOBILE (480px)
   ============================================================ */
@media (max-width: 480px) {
  .section { padding: 52px 0; }
  .container { padding: 0 16px; }

  /* --- Nav --- */
  .nav-inner { padding: 0 16px; }
  .nav-logo { font-size: 1rem; }
  .nav-links a { font-size: 1.4rem; }

  /* --- Hero --- */
  .hero-content {
    padding: 110px 16px 90px;
  }
  .hero-title {
    font-size: clamp(2.4rem, 13vw, 3.6rem);
    line-height: 1.08;
  }
  .hero-eyebrow { font-size: .68rem; }
  .hero-desc p { font-size: .84rem; }
  .hero-scroll { bottom: 24px; }

  /* --- Section titles --- */
  .section-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  /* --- About --- */
  .about-body p { font-size: .9rem; }

  /* --- Diff --- */
  .diff { padding-top: 0; }
  .diff-grid { gap: 12px; }
  .diff-card { max-width: 100%; }
  .diff-img--1,
  .diff-img--2,
  .diff-img--3 { aspect-ratio: 4/3; }
  .diff-text { padding: 20px 18px; }
  .diff-text h3 { font-size: 1.1rem; }

  /* --- Products --- */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .product-info { padding: 18px 18px 22px; }
  .product-info h3 { font-size: 1.15rem; }

  /* --- Services --- */
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .service-item { padding: 8px 4px; }
  .service-icon { width: 56px; height: 56px; margin-bottom: 14px; }
  .service-item h3 { font-size: .95rem; }
  .service-item p { font-size: .78rem; }

  /* --- Contact --- */
  .contact { min-height: auto; }
  .contact-inner { padding: 52px 16px; }
  .contact-title { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .contact-desc { font-size: .85rem; }
  .cta-btn svg { width: 64px; height: 64px; }
  .cta-btn span { font-size: .8rem; }

  /* --- Footer --- */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 40px;
    padding-bottom: 28px;
  }
  .footer-brand { grid-column: auto; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { padding: 16px 16px; }
}

/* ============================================================
   RESPONSIVE — VERY SMALL MOBILE (360px)
   ============================================================ */
@media (max-width: 375px) {
  .hero-title { font-size: clamp(2.2rem, 13vw, 3rem); }
  .section-title { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   IPAD PRO / LARGE TABLET (1024px – 1180px)
   ============================================================ */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-content { padding: 130px 28px 90px; }
  .hero-title { font-size: clamp(3rem, 7vw, 5rem); }
  .diff-grid { gap: 12px; }
  .diff-text { padding: 20px 16px; }
  .diff-text h3 { font-size: 1.1rem; }
  .products-grid { gap: 16px; }
  .product-info { padding: 16px 16px 20px; }
  .services-grid { gap: 20px; }
  .footer-links { padding: 0; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============================================================
   SAFE AREA — iPhone notch / Dynamic Island / Android cutout
   ============================================================ */
@supports (padding: max(0px)) {
  .navbar { padding-left: max(0px, env(safe-area-inset-left)); padding-right: max(0px, env(safe-area-inset-right)); }
  .nav-inner { padding-left: max(28px, calc(28px + env(safe-area-inset-left))); padding-right: max(28px, calc(28px + env(safe-area-inset-right))); }
  .footer-bottom { padding-bottom: max(20px, calc(20px + env(safe-area-inset-bottom))); }
}

/* ---------- MOBILE TOUCH IMPROVEMENTS ---------- */
@media (hover: none) and (pointer: coarse) {
  .diff-card:hover { transform: none; }
  .product-card:hover { transform: none; box-shadow: var(--shadow); }
  .btn--outline:hover { background: transparent; color: var(--brown); }
  /* Active states instead of hover for touch */
  .diff-card:active { transform: scale(0.98); }
  .product-card:active { transform: scale(0.98); }
  .btn--outline:active { background: var(--brown); color: #fff; }
  .cta-btn:active { transform: scale(1.08); }
}

/* ============================================================
   MOBILE MENU — BRAND HEADER
   ============================================================ */
.nav-mobile-brand {
  display: none;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  letter-spacing: .1em;
  pointer-events: none;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  width: 120px;
  margin: 0 auto;
}
.nav-mobile-brand .logo-plus { color: var(--gold); opacity: .7; }

@media (max-width: 768px) {
  .nav-mobile-brand { display: block; }
}

/* ============================================================
   MOBILE MENU OVERLAY — nằm trực tiếp trong <body>, không bị
   giới hạn bởi stacking context của <nav>
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #1A1410;
  z-index: 1099;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu-brand {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 700;
  color: rgba(255,255,255,.3);
  letter-spacing: .1em;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  width: 160px;
  text-align: center;
}
.mobile-menu-brand .logo-plus { color: var(--gold); opacity: .6; }
.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-menu-links a {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(255,255,255,.88);
  letter-spacing: .05em;
  text-decoration: none;
  transition: color .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-links a:hover,
.mobile-menu-links a:active { color: var(--gold); }

/* Ẩn trên desktop */
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}


/* Nút X đóng menu — góc trên phải của overlay */
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-close span {
  position: absolute;
  width: 24px; height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
}
.mobile-menu-close span:nth-child(1) { transform: rotate(45deg); }
.mobile-menu-close span:nth-child(2) { transform: rotate(-45deg); }
.mobile-menu-close:hover span,
.mobile-menu-close:active span { background: var(--gold); }
