/* =========================================================
   INFORM — Editorial Redesign
   Direction: luxury fashion publication × talent agency
   Palette: ink, cream, sienna accent
   Typography: Cormorant Garamond · Manrope · Montserrat
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400;1,500;1,600&family=Manrope:wght@300;400;500;600&family=Montserrat:wght@400;500;600&display=swap");

:root {
  --ink: #171411;
  --ink-soft: #39322b;
  --cream: #f4efe6;
  --cream-deep: #e8e0d2;
  --paper: #fbf8f1;
  --sienna: #38fe15;
  --sienna-deep: #7a4527;
  --line: rgba(23, 20, 17, 0.14);
  /* ── Typography system ── */
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", system-ui, sans-serif;
  --ui: "Montserrat", system-ui, sans-serif;
  --maxw: 1320px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.8;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings:
    "kern" 1,
    "liga" 1;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

/* ---------- Type ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.2px;
  font-feature-settings:
    "kern" 1,
    "liga" 1;
}
h1 {
  font-size: clamp(30px, 5.5vw, 62px);
}
h2 {
  font-size: clamp(24px, 4.2vw, 46px);
}
h3 {
  font-size: clamp(20px, 3.2vw, 34px);
}
h4 {
  font-size: clamp(17px, 2.6vw, 24px);
}
h5 {
  font-size: clamp(15px, 2.1vw, 19px);
  font-weight: 600;
}
h6 {
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 600;
}

p {
  font-family: var(--body);
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 1.5em;
  color: var(--ink-soft);
  letter-spacing: 0.1px;
}
p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  font-family: var(--ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sienna);
  display: inline-block;
}
.display-xl {
  font-family: var(--display);
  font-size: clamp(3rem, 11vw, 10rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}
.display-l {
  font-family: var(--display);
  font-size: clamp(2.2rem, 6.5vw, 5.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.1px;
}
.display-m {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4.2vw, 3.4rem);
  font-weight: 600;
  line-height: 1.12;
}
.lede {
  font-family: var(--body);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.8;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 54ch;
  letter-spacing: 0.1px;
}
.italic {
  font-style: italic;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 64px);
  transition:
    background 0.5s var(--ease),
    padding 0.5s var(--ease),
    color 0.5s var(--ease);
  mix-blend-mode: difference;
  color: #fff;
}
.site-header.solid {
  mix-blend-mode: normal;
  background: rgb(68 55 44);
  backdrop-filter: blur(14px);
  color: #fff;
  border-bottom: 1px solid var(--line);
  padding: 14px clamp(20px, 5vw, 64px);
}
.brand {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
/* .brand span {
  color: var(--sienna);
} */
.nav {
  display: flex;
  gap: 34px;
  align-items: center;
}
.nav a {
  font-family: var(--ui);
  font-size: 11.5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease);
}
.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}
.nav .cta-link {
  border: 1px solid currentColor;
  padding: 9px 18px;
  border-radius: 40px;
}
.nav .cta-link::after {
  display: none;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  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;
  filter: saturate(0.92);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55));
}
.hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-bottom: clamp(48px, 9vh, 120px);
  width: 100%;
  margin-top: 100px;
}
.hero h1 {
  color: #fff;
  mix-blend-mode: normal;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 22px;
}
.hero-meta p {
  font-family: var(--body);
  max-width: 38ch;
  font-size: clamp(14px, 1.7vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 0;
  letter-spacing: 0.1px;
}
.scroll-cue {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-cue::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #fff;
  display: inline-block;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}
.reveal.d4 {
  transition-delay: 0.32s;
}

/* ---------- Section frame ---------- */
section {
  position: relative;
}
.sec {
  padding: clamp(72px, 11vh, 150px) 0;
}
.sec-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 56px;
}
.sec-head .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}
.sec-num {
  font-family: var(--ui);
  font-size: 11px;
  color: var(--sienna);
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* ---------- About ---------- */
.about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}
.about-grid .fig {
  position: relative;
}
.about-grid .fig img {
  width: 100%;
  border-radius: 2px;
  /* aspect-ratio: 5/6; */
  object-fit: cover;
}
.about-grid .fig .tag {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--ink);
  color: var(--cream);
  padding: 16px 22px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.5;
  font-style: italic;
}
.about p + p {
  margin-top: 1.5em;
}
.stat-row {
  display: flex;
  gap: 48px;
  margin-top: 42px;
  flex-wrap: wrap;
}
.stat .n {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1px;
}
.stat .l {
  font-family: var(--ui);
  font-size: 10.5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* ---------- Talent ---------- */
.talent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.talent-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.talent-card img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  transition:
    transform 1.1s var(--ease),
    filter 0.6s;
}
.talent-card:hover img {
  transform: scale(1.06);
}
.talent-card .info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  transform: translateY(8px);
  opacity: 0.92;
  transition: 0.5s var(--ease);
}
.talent-card:hover .info {
  transform: none;
  opacity: 1;
}
.talent-card .info h4 {
  color: #fff;
  font-size: 1.3rem;
}
.talent-card .info span {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ---------- Sectors ---------- */
.sectors {
  background: var(--ink);
  color: var(--cream);
}
.sectors .eyebrow {
  color: var(--sienna);
}
.sectors h2 {
  color: var(--cream);
}
.sector-list {
  border-top: 1px solid rgba(244, 239, 230, 0.16);
}
.sector-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.16);
  transition: padding 0.5s var(--ease);
  cursor: pointer;
}
.sector-row:hover {
  padding-left: 24px;
}
.sector-row .idx {
  font-family: var(--ui);
  color: var(--sienna);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
}
.sector-row .name {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4.2vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.2px;
}
.sector-row .desc {
  font-family: var(--body);
  max-width: 30ch;
  color: rgba(244, 239, 230, 0.62);
  font-size: 13px;
  line-height: 1.65;
  text-align: right;
  letter-spacing: 0.1px;
}
.sector-row:hover .name {
  color: #fff;
  font-style: italic;
}

/* ---------- Campaigns ---------- */
.camp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.camp {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  grid-column: span 2;
}
.camp.big {
  grid-column: span 3;
}
.camp.tall {
  grid-row: span 2;
}
.camp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
  transition: transform 1.1s var(--ease);
}
.camp.tall img {
  aspect-ratio: 3/4;
}
.camp:hover img {
  transform: scale(1.05);
}
.camp .cap {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 22px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  width: 100%;
}
.camp .cap .k {
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  opacity: 0.82;
}
.camp .cap h4 {
  font-family: var(--display);
  color: #fff;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-top: 4px;
}

/* ---------- Brands marquee ---------- */
.brands {
  background: var(--cream);
}
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}
.marquee-track {
  display: flex;
  gap: 80px;
  animation: scroll 34s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.marquee-track span {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.3px;
  font-style: italic;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Quote / success ---------- */
.success {
  background: var(--paper);
}
.quote {
  max-width: 26ch;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
  letter-spacing: 0.2px;
  font-style: italic;
}
.quote .mark {
  color: var(--sienna);
}
.case-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 64px;
}
.case {
  border-top: 2px solid var(--ink);
  padding-top: 22px;
}
.case .m {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.2px;
}
.case p {
  font-family: var(--body);
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-top: 10px;
  letter-spacing: 0.1px;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--ink);
  color: var(--cream);
}
.contact h2 {
  color: var(--cream);
}
.contact .eyebrow {
  color: var(--sienna);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 7vw, 110px);
  align-items: start;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 26px;
}
.form-row label {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.6);
}
.form-row input,
.form-row textarea,
.form-row select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.3);
  color: var(--cream);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.75;
  padding: 10px 0;
  outline: none;
  transition: border 0.4s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--sienna);
}
.form-row select option {
  color: #111;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--sienna);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 40px;
  transition: 0.4s var(--ease);
}
.btn:hover {
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}
.btn-ghost:hover {
  background: currentColor;
  color: var(--ink);
}
.contact-aside p {
  font-family: var(--body);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.75;
  color: rgba(244, 239, 230, 0.7);
  margin-bottom: 26px;
  max-width: 34ch;
}
.contact-aside a.big {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.3px;
  border-bottom: 1px solid var(--sienna);
  padding-bottom: 4px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 60px 0 36px;
  border-top: 1px solid rgba(244, 239, 230, 0.14);
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.foot-brand {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 600;
}
.foot-brand span {
  color: var(--sienna);
}
.foot-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.foot-col h5 {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
  margin-bottom: 16px;
}
.foot-col a {
  font-family: var(--body);
  display: block;
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 10px;
  color: rgba(244, 239, 230, 0.85);
  letter-spacing: 0.1px;
}
.foot-col a:hover {
  color: var(--sienna);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 239, 230, 0.14);
  font-family: var(--ui);
  font-size: 10.5px;
  letter-spacing: 0.4px;
  color: rgba(244, 239, 230, 0.55);
}

/* ---------- Page hero (interior) ---------- */
.page-hero {
  padding: clamp(140px, 20vh, 220px) 0 clamp(50px, 8vh, 90px);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero .display-l {
  max-width: 16ch;
}
.breadcrumb {
  font-family: var(--ui);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 22px;
}

/* prose */
.prose {
  max-width: 68ch;
}
.prose p {
  font-family: var(--body);
  font-size: clamp(14px, 1.7vw, 16px);
  line-height: 1.9;
  margin-bottom: 1.6em;
  color: var(--ink-soft);
  letter-spacing: 0.1px;
}
.prose h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
  font-weight: 600;
  letter-spacing: 0.2px;
  margin: 56px 0 20px;
  line-height: 1.15;
}
.prose h3 {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.2px;
  margin: 44px 0 16px;
  line-height: 1.2;
}
.prose h4 {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.2px;
  margin: 32px 0 12px;
}
.prose blockquote {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  border-left: 3px solid var(--sienna);
  padding-left: 22px;
  margin: 36px 0;
  line-height: 1.55;
}

/* services cards */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc {
  border: 1px solid var(--line);
  padding: 34px;
  border-radius: 2px;
  background: var(--paper);
  transition: 0.5s var(--ease);
}
.svc:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-6px);
}
.svc:hover h3,
.svc:hover .num {
  color: var(--cream);
}
.svc .num {
  font-family: var(--ui);
  color: var(--sienna);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
}
.svc h3 {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.7vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.2px;
  margin: 14px 0 12px;
  line-height: 1.2;
}
.svc p {
  font-family: var(--body);
  font-size: 13.5px;
  line-height: 1.75;
  letter-spacing: 0.1px;
  color: var(--ink-soft);
}
.svc:hover p {
  color: rgba(244, 239, 230, 0.7);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .talent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .camp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .camp,
  .camp.big {
    grid-column: span 1;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .case-row,
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  body {
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.8;
  }
  p {
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.8;
  }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--ink);
    color: var(--cream);
    flex-direction: column;
    /* justify-content: center; */
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    mix-blend-mode: normal;
    padding-top: 20px;
    height: 55rem;
  }
  .nav.open {
    transform: none;
  }
  .nav a {
    font-family: var(--ui);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.4px;
    padding: 12px 24px;
    display: inline-block;
  }
  .burger {
    display: flex;
    position: relative;
    z-index: 1001;
    padding: 14px;
    transition: color 0.3s;
  }
  .site-header {
    mix-blend-mode: normal;
    color: #fff;
    background-color: black;
  }
  .site-header.light-fallback {
    color: var(--ink);
  }
  .sector-row {
    grid-template-columns: 30px 1fr;
    gap: 14px;
  }
  .sector-row .desc {
    display: none;
  }
  .case-row,
  .svc-grid,
  .stat-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .foot-brand {
    font-size: 32px;
  }
}

/* ---------- Dropdown menu (Editorial style) ---------- */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown .dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.nav-dropdown .chevron {
  font-size: 8px;
  display: inline-block;
  transition: transform 0.3s var(--ease);
  pointer-events: none;
}
.nav-dropdown:hover .chevron,
.nav-dropdown.active .chevron {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--ink);
  color: var(--cream);
  min-width: 240px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  padding: 14px 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    visibility 0.4s;
  z-index: 200;
  display: flex;
  flex-direction: column;
}
.site-header.solid .dropdown-menu {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  /* transform: translateX(-50%) translateY(0); */
}
.dropdown-menu a {
  padding: 10px 24px;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  transition:
    background 0.3s,
    color 0.3s;
  display: block;
}
.dropdown-menu a::after {
  display: none !important; /* disable underline anim */
}
.dropdown-menu a:hover {
  background: rgba(244, 239, 230, 0.08);
  color: var(--sienna);
}
.site-header.solid .dropdown-menu a:hover {
  background: rgba(23, 20, 17, 0.04);
}

/* Accordion on Mobile */
@media (max-width: 720px) {
  .nav-dropdown {
    width: 100%;
    text-align: center;
  }
  .nav-dropdown .dropdown-trigger {
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.4px;
    padding: 12px 24px;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    background: transparent !important;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    display: none;
    width: 100%;
    min-width: auto;
    text-align: center;
    margin-top: 10px;
    border: none !important;
  }
  .dropdown-menu a {
    color: rgba(244, 239, 230, 0.7) !important;
    font-size: 13px;
    padding: 12px 24px;
    display: block;
  }
  .dropdown-menu a:hover {
    background: transparent;
    color: var(--sienna) !important;
  }
  .nav-dropdown.active .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
  .burger.open {
    color: var(--cream) !important;
  }
  .burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.open span:nth-child(2) {
    opacity: 0;
  }
  .burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
