/* ============================================================
   MOMENTUM DUBAI — gallery-dark editorial system
   Palette keyed to the brand logo (vintage gold emblem,
   warm off-white wordmark, near-black plate).
   ============================================================ */

:root {
  --bg:        #0C0C0E;  /* near-black gallery canvas (logo plate) */
  --bg-2:      #101013;  /* alternating band */
  --surface:   #16161A;  /* cards / raised panels */
  --surface-2: #1C1C21;  /* hover / nested */
  --text:      #F4F1EA;  /* warm off-white (serif wordmark) */
  --muted:     #9CA0A6;  /* cool grey secondary (DUBAI · SINCE 2011) */
  --faint:     #6A6E74;  /* tertiary / captions */
  --primary:   #C9A24C;  /* vintage gold — accent/CTA only */
  --primary-hi:#E0BE6E;  /* brighter gold for hover text */
  --secondary: #9CA0A6;  /* steel / platinum grey */
  --accent:    #8A6A30;  /* deep patina gold — hairlines */
  --border:    #2A2A2E;
  --border-2:  #36363C;
  --focus:     #C9A24C;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--primary); color: #0C0C0E; }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Typography ---------- */
.serif { font-family: var(--serif); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow.muted { color: var(--muted); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.06; letter-spacing: 0.005em; }

.display {
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  font-weight: 500;
  line-height: 1.02;
}
.h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

.lede {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  line-height: 1.65;
  color: var(--muted);
  font-weight: 400;
}

.body-text { color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.body-text + .body-text { margin-top: 1.1em; }

.amp { color: var(--primary); font-style: italic; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(64px, 11vw, 132px) 0; }
.band { background: var(--bg-2); }

.section-head { max-width: 720px; }
.section-head .eyebrow { display: block; margin-bottom: 22px; }
.section-head h2 { margin-bottom: 18px; }

.hairline { height: 1px; background: var(--border); border: 0; }
.gold-rule { width: 56px; height: 2px; background: var(--primary); border: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 15px 30px; min-height: 48px;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #0C0C0E; }
.btn-primary:hover { background: var(--primary-hi); transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--border-2); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-ghost { padding-left: 0; padding-right: 0; color: var(--primary); letter-spacing: 0.12em; }
.btn-ghost .arr { transition: transform 0.4s var(--ease); }
.btn-ghost:hover .arr { transform: translateX(6px); }
.btn-wa { background: #1f6f4d; color: #fff; }
.btn-wa:hover { background: #258a5f; transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary);
}
.link-arrow .arr { transition: transform 0.4s var(--ease); }
.link-arrow:hover .arr { transform: translateX(5px); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,12,0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 50px; width: auto; transition: height 0.4s var(--ease); }
.nav.scrolled .nav-logo img { height: 42px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-link {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--muted); position: relative; padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--primary); transition: width 0.4s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active::after, .nav-link:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-2); border-radius: 50%; color: var(--text);
  transition: all 0.3s var(--ease);
}
.icon-btn:hover { border-color: var(--primary); color: var(--primary); }
.nav-burger { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.15) 30%, rgba(10,10,12,0.55) 65%, rgba(10,10,12,0.96) 100%),
    linear-gradient(90deg, rgba(10,10,12,0.7) 0%, rgba(10,10,12,0.1) 60%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(72px, 12vh, 130px); padding-top: 140px; }
.hero-content .eyebrow { display: block; margin-bottom: 26px; }
.hero h1 { max-width: 16ch; margin-bottom: 28px; }
.hero .lede { max-width: 46ch; margin-bottom: 40px; color: #D9D6CE; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--faint);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll .line { width: 1px; height: 40px; background: linear-gradient(var(--primary), transparent); }

/* ---------- Trust strip ---------- */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--maxw); margin: 0 auto;
}
.trust-item {
  padding: 30px var(--gutter); text-align: center;
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 7px; align-items: center;
}
.trust-item:first-child { border-left: 0; }
.trust-item .ti-k { font-family: var(--serif); font-size: 1.45rem; color: var(--text); line-height: 1; }
.trust-item .ti-l { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ---------- Collection grid ---------- */
.coll-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.coll-card {
  position: relative; overflow: hidden; aspect-ratio: 4/5; background: var(--surface);
  display: block;
}
.coll-card.wide { grid-column: span 2; aspect-ratio: auto; }
.coll-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.92) brightness(0.82);
}
.coll-card:hover img { transform: scale(1.06); filter: saturate(1) brightness(0.95); }
.coll-card-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0) 35%, rgba(10,10,12,0.85) 100%);
}
.coll-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; }
.coll-card-body .cc-cat { font-family: var(--serif); font-size: 1.55rem; color: var(--text); line-height: 1.1; margin-bottom: 6px; }
.coll-card-body .cc-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 14px; }
.coll-card .cc-link { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); opacity: 0; transform: translateY(8px); transition: all 0.4s var(--ease); display: inline-flex; gap: 0.5em; }
.coll-card:hover .cc-link { opacity: 1; transform: translateY(0); }

/* ---------- Featured pieces ---------- */
.feat-rail { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 18px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--border-2) transparent; }
.feat-rail::-webkit-scrollbar { height: 6px; }
.feat-rail::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }
.feat-card { flex: 0 0 auto; width: 290px; scroll-snap-align: start; }
.feat-card .fc-img { aspect-ratio: 1; background: var(--surface); overflow: hidden; border: 1px solid var(--border); border-radius: 3px; }
.feat-card .fc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.feat-card:hover .fc-img img { transform: scale(1.05); }
.feat-card .fc-meta { padding: 16px 4px 0; }
.feat-card .fc-cat { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); }
.feat-card .fc-name { font-family: var(--serif); font-size: 1.15rem; color: var(--text); margin-top: 6px; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(32px, 6vw, 90px); }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; height: 100%; max-height: 640px; object-fit: cover; border-radius: 3px; }
.split-media .badge {
  position: absolute; bottom: 22px; left: 22px;
  background: rgba(10,10,12,0.78); backdrop-filter: blur(8px);
  border: 1px solid var(--border-2); border-radius: 2px;
  padding: 12px 18px; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary);
}

/* ---------- Services list ---------- */
.svc-list { border-top: 1px solid var(--border); }
.svc-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(20px, 4vw, 56px);
  padding: 34px 0; border-bottom: 1px solid var(--border);
  transition: background 0.4s var(--ease); position: relative;
}
.svc-row::before {
  content: ""; position: absolute; left: -100vw; right: -100vw; top: 0; bottom: 0;
  background: var(--surface); opacity: 0; transition: opacity 0.4s var(--ease); z-index: -1;
}
.svc-row:hover::before { opacity: 0.5; }
.svc-num { font-family: var(--serif); font-size: 1.2rem; color: var(--accent); width: 2.5ch; }
.svc-main h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 8px; }
.svc-main p { color: var(--muted); font-size: 0.96rem; max-width: 60ch; }
.svc-side { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.svc-price { font-family: var(--serif); font-size: 1.5rem; color: var(--primary); white-space: nowrap; }
.svc-price small { display: block; font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-top: 2px; }

/* ---------- Steps (watch spa) ---------- */
.steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 3px; overflow: hidden; }
.step { background: var(--surface); padding: 26px 20px; }
.step .s-n { font-family: var(--serif); color: var(--primary); font-size: 1.4rem; margin-bottom: 10px; }
.step .s-t { font-size: 0.86rem; color: var(--text); font-weight: 500; }

/* ---------- Cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: 3px; padding: 34px 30px; transition: border-color 0.4s var(--ease), transform 0.4s var(--ease); }
.info-card:hover { border-color: var(--border-2); transform: translateY(-3px); }
.info-card .ic-mark { width: 38px; height: 38px; border: 1px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 22px; }
.info-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.info-card p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--border); border-radius: 2px;
  padding: 14px 16px; color: var(--text); font-family: var(--sans); font-size: 0.96rem;
  transition: border-color 0.3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); }
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA0A6' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-note { font-size: 0.78rem; color: var(--faint); margin-top: 6px; }
.form-sent { background: var(--surface); border: 1px solid var(--accent); border-radius: 3px; padding: 30px; text-align: center; }
.form-sent .fs-mark { color: var(--primary); font-family: var(--serif); font-size: 2rem; margin-bottom: 10px; }

/* ---------- Map / visit ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: 3px; overflow: hidden; }
.visit-info { padding: clamp(32px, 5vw, 56px); }
.map-placeholder {
  position: relative; min-height: 420px; background:
    repeating-linear-gradient(45deg, #131318 0 14px, #15151b 14px 28px);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 18px; padding: 30px; text-align: center;
  border-left: 1px solid var(--border);
}
.map-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(201,162,76,0.12), transparent 60%);
}
.map-pin { position: relative; color: var(--primary); }
.map-label { position: relative; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

.detail-row { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.detail-row:last-child { border-bottom: 0; }
.detail-row .dr-ico { color: var(--primary); flex: 0 0 auto; margin-top: 2px; }
.detail-row .dr-k { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 4px; }
.detail-row .dr-v { color: var(--text); font-size: 0.98rem; line-height: 1.5; }
.detail-row a.dr-v:hover { color: var(--primary); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-top: clamp(56px, 8vw, 90px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-logo img { height: 78px; width: auto; margin-bottom: 22px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 34ch; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); margin-bottom: 20px; font-family: var(--sans); font-weight: 600; }
.footer-col a, .footer-col .fc-text { display: block; color: var(--muted); font-size: 0.92rem; margin-bottom: 12px; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding: 26px 0 40px; border-top: 1px solid var(--border); }
.footer-bottom .fb-legal { font-size: 0.76rem; color: var(--faint); line-height: 1.6; }
.footer-socials { display: flex; gap: 12px; }

/* ---------- Mobile action bar ---------- */
.mobile-bar { display: none; }

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed; right: 22px; bottom: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #1f6f4d; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5); transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.wa-fab:hover { transform: scale(1.08); background: #258a5f; }

/* ---------- Concept/demo ribbon ---------- */
.demo-note {
  background: var(--surface); border-bottom: 1px solid var(--border);
  text-align: center; font-size: 0.7rem; letter-spacing: 0.1em; color: var(--faint);
  padding: 7px var(--gutter);
}
.demo-note strong { color: var(--muted); font-weight: 500; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding-top: 168px; padding-bottom: clamp(40px, 7vw, 80px); }
.page-hero .eyebrow { display: block; margin-bottom: 22px; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); max-width: 18ch; margin-bottom: 22px; }
.page-hero .lede { max-width: 56ch; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta .desk-only { display: none; }
  .nav-burger { display: inline-flex; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(odd) { border-left: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .coll-grid { grid-template-columns: 1fr 1fr; }
  .coll-card.wide { grid-column: span 2; aspect-ratio: 16/10; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .split-media { order: 0; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .cards-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .map-placeholder { border-left: 0; border-top: 1px solid var(--border); min-height: 320px; order: -1; }
}

@media (max-width: 560px) {
  body { padding-bottom: 72px; } /* room for mobile bar */
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .coll-grid { grid-template-columns: 1fr; gap: 14px; }
  .coll-card, .coll-card.wide { aspect-ratio: 4/5; grid-column: auto; }
  .svc-row { grid-template-columns: auto 1fr; row-gap: 16px; }
  .svc-side { grid-column: 1 / -1; text-align: left; align-items: flex-start; flex-direction: row; justify-content: space-between; width: 100%; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .wa-fab { display: none; } /* mobile bar covers WhatsApp */

  .mobile-bar {
    display: grid; grid-template-columns: repeat(3, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    background: rgba(12,12,14,0.94); backdrop-filter: blur(14px);
    border-top: 1px solid var(--border);
  }
  .mobile-bar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    padding: 11px 6px 13px; min-height: 60px;
    font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
    border-left: 1px solid var(--border);
  }
  .mobile-bar a:first-child { border-left: 0; }
  .mobile-bar a.prime { color: var(--primary); }
  .mobile-bar a.wa { color: #4cc38a; }
  .hero { min-height: 92svh; }
}

/* ---------- Mobile drawer ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 110; background: rgba(6,6,8,0.7); backdrop-filter: blur(4px);
  display: none; opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease);
}
.drawer-backdrop.open { display: block; opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 111; width: min(86vw, 360px);
  background: var(--bg); border-left: 1px solid var(--border);
  transform: translateX(100%); transition: transform 0.45s var(--ease);
  display: none; flex-direction: column; padding: 26px var(--gutter);
}
.drawer.open { display: flex; transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.drawer-head img { height: 44px; }
.drawer-nav { display: flex; flex-direction: column; gap: 4px; }
.drawer-nav a {
  font-family: var(--serif); font-size: 1.8rem; color: var(--text); padding: 12px 0;
  border-bottom: 1px solid var(--border); transition: color 0.3s var(--ease);
}
.drawer-nav a:hover, .drawer-nav a.active { color: var(--primary); }
.drawer-actions { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 24px; }
