/* ============================================================
   1. Reset
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
}

body.is-nav-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}

/* ============================================================
   2. CSS Variables
   ============================================================ */
:root {
  --clr-primary: #1B4332;
  --clr-primary-deep: #142E23;
  --clr-accent: #2E8B57;
  --clr-gold: #D4AF37;
  --clr-brown: #5C4033;
  --clr-cream: #F5F0E6;
  --clr-red: #9A2828;
  --clr-gray: #263A34;
  --clr-tan: #C19A6B;

  --font-headline: 'Impact', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-body: 'Noto Sans SC', 'Microsoft YaHei', 'PingFang SC', sans-serif;
  --font-index: 'Segoe UI', 'Helvetica Neue', 'Noto Sans SC', sans-serif;

  --header-width: 280px;
  --container-width: 1180px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.14);

  --transition-fast: 0.15s ease;
  --transition-med: 0.25s ease;

  --gold-line: 1px solid rgba(212, 175, 55, 0.28);
}

/* ============================================================
   3. Base Typography
   ============================================================ */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-brown);
  background-color: var(--clr-cream);
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headline);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--clr-primary);
}

::selection {
  background: var(--clr-gold);
  color: var(--clr-primary-deep);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(92, 64, 51, 0.22);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.42);
}

/* ============================================================
   4. Skip Link
   ============================================================ */
.skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  z-index: 999;
  padding: 0.7rem 1.2rem;
  background: var(--clr-cream);
  color: var(--clr-primary);
  border: 1px solid var(--clr-gold);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

/* ============================================================
   5. Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  background: var(--clr-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: 0.75rem 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  text-decoration: none;
  color: var(--clr-cream);
}

.brand-mark {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
}

.brand-text {
  display: block;
  min-width: 0;
}

.brand-name {
  display: block;
  font-family: var(--font-headline);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.045em;
  color: var(--clr-cream);
}

.brand-tagline {
  display: none;
  margin-top: 0.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--clr-tan);
  white-space: nowrap;
}

.nav-toggle {
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.nav-toggle:hover {
  border-color: var(--clr-gold);
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  background: var(--clr-cream);
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   6. Navigation
   ============================================================ */
.site-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  transition: transform var(--transition-med), visibility 0s linear 0.25s;
}

.site-nav:focus {
  outline: none;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.6rem 0 1rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.82rem 1.5rem;
  color: rgba(245, 240, 230, 0.78);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 60%;
  background: var(--clr-gold);
  transform: translateY(-50%) scaleY(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: rgba(46, 139, 87, 0.16);
  color: var(--clr-cream);
}

.nav-link:hover::before,
.nav-link[aria-current="page"]::before {
  transform: translateY(-50%) scaleY(1);
}

.nav-index {
  font-family: var(--font-index);
  font-size: 0.74rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--clr-tan);
  opacity: 0.72;
  min-width: 1.7em;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.nav-link:hover .nav-index,
.nav-link[aria-current="page"] .nav-index {
  color: var(--clr-gold);
  opacity: 1;
}

.nav-label {
  flex: 0 1 auto;
  font-size: inherit;
}

.nav-extra {
  margin-top: auto;
  padding: 1rem 1.5rem 1.1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.header-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 230, 0.58);
}

.header-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.55);
  animation: statusPulse 2.6s ease-in-out infinite;
}

.header-status-text {
  font-size: inherit;
  line-height: 1;
  letter-spacing: 0.12em;
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 205;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

/* ============================================================
   7. Main / Container
   ============================================================ */
.site-main {
  flex: 1 0 auto;
  width: 100%;
}

#main-content {
  scroll-margin-top: 2rem;
}

.site-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

/* ============================================================
   8. Footer
   ============================================================ */
.site-footer {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--clr-primary);
  color: rgba(245, 240, 230, 0.76);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1;
  background: linear-gradient(90deg, var(--clr-gold) 0%, rgba(212, 175, 55, 0.18) 40%, transparent 85%);
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: repeating-linear-gradient(-45deg, transparent 0 26px, rgba(212, 175, 55, 0.04) 26px 30px);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 2.75rem 1rem 1.75rem;
}

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

.footer-brand-col,
.footer-links-col,
.footer-contact-col {
  min-width: 0;
}

.footer-brand {
  font-family: var(--font-headline);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: var(--clr-cream);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--clr-tan);
  margin-bottom: 0.9rem;
}

.footer-hint {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.55);
  max-width: 30em;
}

.footer-heading {
  font-family: var(--font-headline);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--clr-gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-list {
  display: grid;
  gap: 0.45rem;
}

.footer-link {
  display: inline-block;
  font-size: 0.88rem;
  color: rgba(245, 240, 230, 0.72);
  text-decoration: none;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-link:hover {
  color: var(--clr-gold);
  padding-left: 0.25rem;
}

.footer-meta-list {
  display: grid;
  gap: 0.55rem;
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(245, 240, 230, 0.7);
}

.footer-meta-item {
  position: relative;
  padding-left: 1.2em;
}

.footer-meta-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--clr-accent);
  transform: rotate(45deg);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
}

.footer-bottom-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding: 1rem;
  font-size: 0.78rem;
  color: rgba(245, 240, 230, 0.48);
}

.footer-copy {
  margin: 0;
}

.footer-icp {
  color: rgba(245, 240, 230, 0.48);
}

/* ============================================================
   9. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.72em 1.45em;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--clr-cream);
  background: var(--clr-accent);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
}

.btn:hover {
  background: #226B45;
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.15);
}

.btn-outline {
  background: transparent;
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.btn-sm {
  padding: 0.4em 1em;
  font-size: 0.82rem;
}

/* ============================================================
   10. Breadcrumb
   ============================================================ */
.breadcrumb {
  font-size: 0.86rem;
  margin-bottom: 1.5rem;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumb-link {
  color: var(--clr-gray);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb-link:hover {
  color: var(--clr-accent);
}

.breadcrumb-sep {
  color: var(--clr-tan);
}

.breadcrumb-current {
  color: var(--clr-brown);
  font-weight: 600;
}

/* ============================================================
   11. Grid
   ============================================================ */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-cols-2,
.grid-cols-3,
.grid-cols-4 {
  grid-template-columns: 1fr;
}

/* ============================================================
   12. Card
   ============================================================ */
.card {
  position: relative;
  background: var(--clr-cream);
  border: 1px solid rgba(92, 64, 51, 0.16);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.card:hover {
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35), 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.card-media {
  position: relative;
}

.card-body {
  padding: 1.2rem 1.4rem 1.4rem;
}

.card-title {
  font-family: var(--font-headline);
  font-size: 1.12rem;
  line-height: 1.3;
  color: var(--clr-primary);
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.88rem;
  color: var(--clr-gray);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 0.85rem;
  color: var(--clr-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.card-link::after {
  content: "→";
  transition: transform 0.15s ease;
}

.card:hover .card-link::after {
  transform: translateX(3px);
}

/* ============================================================
   13. Tag
   ============================================================ */
.tag {
  display: inline-block;
  padding: 0.18em 0.7em;
  border-radius: 99px;
  border: 1px solid transparent;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.tag-gold {
  color: var(--clr-gold);
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.08);
}

.tag-green {
  color: var(--clr-accent);
  border-color: rgba(46, 139, 87, 0.4);
  background: rgba(46, 139, 87, 0.08);
}

.tag-brown {
  color: var(--clr-brown);
  border-color: rgba(92, 64, 51, 0.35);
  background: rgba(92, 64, 51, 0.06);
}

/* ============================================================
   14. Section
   ============================================================ */
.section {
  padding: 2.25rem 0;
}

.section + .section {
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.section-head {
  margin-bottom: 1.75rem;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-headline);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 0.35rem;
}

.section-title {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: 0.05em;
  line-height: 1.15;
  color: var(--clr-primary);
}

.section-subtitle {
  margin-top: 0.5rem;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--clr-gray);
  max-width: 46em;
}

/* ============================================================
   15. Image Frames
   ============================================================ */
.img-frame,
.img-frame-wide,
.img-frame-square {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--clr-primary-deep) 0%, var(--clr-brown) 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.img-frame::before,
.img-frame-wide::before,
.img-frame-square::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  pointer-events: none;
  z-index: 1;
}

.img-frame::after,
.img-frame-wide::after,
.img-frame-square::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0 18px, rgba(245, 240, 230, 0.03) 18px 22px);
  pointer-events: none;
  z-index: 1;
}

.img-frame img,
.img-frame-wide img,
.img-frame-square img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.4s ease;
}

.img-frame:hover img,
.img-frame-wide:hover img,
.img-frame-square:hover img {
  transform: scale(1.02);
}

.img-frame {
  aspect-ratio: 16 / 9;
}

.img-frame-wide {
  aspect-ratio: 21 / 9;
}

.img-frame-square {
  aspect-ratio: 1 / 1;
}

/* ============================================================
   16. Utilities
   ============================================================ */
.index-number {
  font-family: var(--font-index);
  font-weight: 100;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--clr-tan);
  opacity: 0.55;
  user-select: none;
  pointer-events: none;
}

.divider-diagonal {
  border: 0;
  height: 8px;
  margin: 2rem 0;
  background: repeating-linear-gradient(135deg, transparent 0 6px, var(--clr-gold) 6px 8px, transparent 8px 16px);
  opacity: 0.45;
}

/* ============================================================
   17. Scroll Progress & Top
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-gold));
  transform-origin: left center;
  z-index: 1000;
  pointer-events: none;
}

.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: var(--clr-primary);
  color: var(--clr-gold);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.scroll-top:hover,
.scroll-top:focus-visible {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}

.scroll-top:active {
  transform: scale(0.95);
}

.scroll-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.scroll-ring-track,
.scroll-ring-fill {
  fill: none;
  stroke-width: 2;
}

.scroll-ring-track {
  stroke: rgba(212, 175, 55, 0.18);
}

.scroll-ring-fill {
  stroke: var(--clr-gold);
  stroke-linecap: round;
  stroke-dasharray: 94.25;
  stroke-dashoffset: 94.25;
}

.scroll-top-icon {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  line-height: 1;
}

/* ============================================================
   18. Accessibility & Motion Preferences
   ============================================================ */
:focus {
  outline: 2px solid var(--clr-gold);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 2px;
}

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

  .status-dot,
  .header-status-dot {
    animation: none !important;
  }

  .img-frame:hover img,
  .img-frame-wide:hover img,
  .img-frame-square:hover img {
    transform: none !important;
  }
}

/* ============================================================
   19. Responsive
   ============================================================ */
@media (min-width: 640px) {
  .header-inner {
    padding: 0.75rem 1.25rem;
  }

  .site-container {
    padding: 2.25rem 1.5rem;
  }

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

  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    padding: 3rem 1.5rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .footer-bottom-inner {
    padding: 1rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  body {
    margin-left: var(--header-width);
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--header-width);
    background:
      radial-gradient(circle at 22% 0%, rgba(46, 139, 87, 0.25) 0%, transparent 58%),
      linear-gradient(180deg, var(--clr-primary) 0%, var(--clr-primary-deep) 130%);
    border-right: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: none;
  }

  .header-inner {
    align-items: flex-start;
    padding: 1.5rem 1.5rem 1rem;
    min-height: 0;
  }

  .brand {
    gap: 0.8rem;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-tagline {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.3) transparent;
    transition: none;
  }

  .nav-list {
    padding: 1rem 0 1.25rem;
  }

  .nav-overlay {
    display: none;
  }

  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
  }

  .footer-brand-col {
    grid-column: auto;
  }
}

@media (max-width: 1023px) {
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(330px, 86vw);
    z-index: 210;
    background: var(--clr-primary-deep);
    border-right: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 6px 0 24px rgba(0, 0, 0, 0.4);
    transform: translateX(-104%);
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
  }

  .site-nav[data-open="true"] {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform var(--transition-med), visibility 0s;
  }

  .nav-list {
    padding: 1.5rem 0 1rem;
  }

  .nav-extra {
    padding-bottom: 1.6rem;
  }
}
