/* =================================================
   Nan Doud Portfolio — Main Stylesheet
   ================================================= */

/* ----- Variables ----- */
:root {
  --bg: #F7F4EF;
  --dark: #1a1a1a;
  --muted: #888888;
  --petrol-dark: #0c445a;
  --petrol-mid: #265d74;
  --gold: #f4cf77;
  --gold-text: #7a6200;
  --coral: #f97171;
  --red: #c81d25;
  --white: #ffffff;

  --font-sans: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --nav-height: 64px;
  --max-w: 1100px;
  --gutter: 32px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--dark);
  background: var(--bg);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ----- Focus Styles ----- */
:focus-visible {
  outline: 2px solid #F5C400;
  outline-offset: 3px;
  border-radius: 0;
}

button.section-caret {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

/* ----- Navigation ----- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  height: var(--nav-height);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--dark);
  text-decoration: none;
  transition: opacity 0.15s;
}

.nav-logo:hover {
  opacity: 0.65;
}

/* ----- ND Monogram ----- */
.nav-logo--monogram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-name {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}

.nav-logo--monogram:hover {
  opacity: 1;
}

.nd-monogram {
  display: block;
  overflow: visible;
}

.nd-n,
.nd-d {
  transition: transform 0.3s ease;
  transform-box: fill-box;
  transform-origin: 50% 100%;
}

.nav-logo--monogram:hover .nd-n {
  transform: rotate(-12deg);
}

.nav-logo--monogram:hover .nd-d {
  transform: rotate(12deg);
}

.nd-dot {
  transition: transform 0.3s ease;
  transform-box: fill-box;
  transform-origin: 50% 50%;
}

.nav-logo--monogram:hover .nd-dot {
  transform: scale(1.3);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: opacity 0.15s;
}

.nav-links a:hover {
  opacity: 0.55;
}

.nav-links .linkedin-link {
  color: var(--petrol-mid);
  font-weight: 600;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px 4px;
  z-index: 101;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  padding: 40px var(--gutter);
  gap: 4px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  overflow-y: auto;
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.07);
  transition: color 0.15s;
}

.nav-mobile a:hover {
  color: var(--petrol-mid);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  border: 2px solid transparent;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.85);
}

.btn-petrol {
  background: var(--petrol-dark);
  color: var(--white);
  border-color: var(--petrol-dark);
}

.btn-petrol:hover {
  opacity: 0.88;
}

/* ----- Section Labels ----- */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  margin-bottom: 48px;
}

/* ----- Homepage Hero ----- */
.hero-home {
  background: var(--petrol-dark);
  padding: 120px var(--gutter) 110px;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
}

.hero-home-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.hero-home-left {
  min-width: 0;
}

.hero-home-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(244, 207, 119, 0.35);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 44px;
  font-size: 14px;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 500;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.7);
}

.hero-headline {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: clamp(26px, 3.8vw, 52px);
  line-height: 1.25;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 28px;
}

.hero-subhead {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255, 255, 255, 0.6);
  max-width: 540px;
  margin-bottom: 52px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ----- Portrait & Rings ----- */
.hero-portrait-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
}

.ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: border-color 0.4s ease;
}

.ring--inner {
  width: 250px;
  height: 250px;
  top: 35px;
  left: 35px;
  border: 1.5px solid rgba(232, 80, 58, 0.25);
  animation: spin-cw 4s linear infinite;
  animation-play-state: paused;
}

.ring--outer {
  width: 300px;
  height: 300px;
  top: 10px;
  left: 10px;
  border: 1.5px solid rgba(245, 196, 0, 0.1);
  animation: spin-ccw 7s linear infinite;
  animation-play-state: paused;
}

.hero-portrait-wrap:hover .ring--inner {
  border-color: rgba(232, 80, 58, 0.9);
  animation-play-state: running;
}

.hero-portrait-wrap:hover .ring--outer {
  border-color: rgba(245, 196, 0, 0.35);
  animation-play-state: running;
}

@keyframes spin-cw {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes spin-ccw {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

.portrait-imgs {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 60px;
  left: 60px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}

.portrait-imgs img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.portrait-art {
  opacity: 1;
  z-index: 2;
  object-position: center 25%;
}

.portrait-photo {
  opacity: 0;
  z-index: 1;
  transform: scale(1.15);
  object-position: center 30%;
  filter: saturate(1.35);
}

.hero-portrait-wrap:hover .portrait-art {
  opacity: 0;
}

.hero-portrait-wrap:hover .portrait-photo {
  opacity: 1;
}

/* ----- Hero Squares ----- */
.hero-squares {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.hero-sq {
  width: 80px;
  border-radius: 5px;
  display: grid;
  grid-template-rows: 80px 0fr;
  overflow: hidden;
  cursor: default;
  flex-shrink: 0;
  transition: grid-template-rows 0.45s ease;
}

.hero-sq:hover {
  grid-template-rows: 80px 1fr;
}

.sq-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.sq-word-wrap {
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.sq-word {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  writing-mode: vertical-lr;
  padding: 10px 0 18px;
  opacity: 0;
  transition: opacity 0.25s ease 0.2s;
}

.hero-sq:hover .sq-word {
  opacity: 1;
}

.hero-sq--coral  { background: #E8503A; }
.hero-sq--yellow { background: #F5C400; }
.hero-sq--ghost  { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.35); }

.hero-sq--yellow .sq-letter,
.hero-sq--yellow .sq-word {
  color: rgba(26, 26, 26, 0.85);
}

/* ----- Work / Cards Section ----- */
.work-section {
  padding: 88px 0 80px;
}

.work-section-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.cards-list {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  display: grid;
  grid-template-columns: 2fr 3fr;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
}

.card:focus-visible {
  outline: 3px solid var(--petrol-mid);
  outline-offset: 4px;
}

.card-left {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.card-number {
  position: absolute;
  top: -16px;
  left: 24px;
  font-family: 'Jost', sans-serif;
  font-size: 130px;
  font-weight: 300;
  letter-spacing: -0.02em;
  opacity: 0.13;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.card-category {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

/* Card 01 — petrol */
.card--petrol .card-left  { background: var(--petrol-mid); }
.card--petrol .card-number { color: var(--white); }
.card--petrol .card-category { color: rgba(255, 255, 255, 0.7); }

/* Card 02 — gold */
.card--gold .card-left { background: var(--gold); }
.card--gold .card-number { color: var(--dark); }
.card--gold .card-category { color: var(--gold-text); }

/* Card 03 — coral */
.card--coral .card-left { background: var(--coral); }
.card--coral .card-number { color: var(--dark); }
.card--coral .card-category { color: rgba(26, 26, 26, 0.65); }

.card-right {
  background: var(--white);
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-title {
  font-family: 'Jost', sans-serif;
  font-size: clamp(15px, 1.4vw, 21px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 16px;
}

.card-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 24px;
}

.card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--bg);
  color: var(--muted);
  align-self: flex-start;
  font-family: var(--font-mono);
  margin-bottom: 20px;
}

.card-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--petrol-mid);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s;
}

.card:hover .card-cta {
  gap: 10px;
}

/* ----- About Section ----- */
.about-section {
  padding: 100px 0;
  border-top: 1px solid rgba(26, 26, 26, 0.07);
}

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: 36px;
  margin-bottom: 28px;
  color: var(--dark);
  line-height: 1.2;
}

.about-text p {
  font-size: 17px;
  line-height: 1.82;
  color: #333;
  margin-bottom: 22px;
}

.about-text p:last-of-type {
  margin-bottom: 28px;
}

.about-linkedin {
  color: var(--petrol-mid);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
  font-size: 15px;
  transition: opacity 0.15s;
}

.about-linkedin:hover {
  opacity: 0.65;
}

.skills-card {
  background: var(--petrol-dark);
  border-radius: 12px;
  padding: 40px;
  color: var(--white);
}

.skills-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--gold);
  margin-bottom: 24px;
}

.skills-list {
  display: flex;
  flex-direction: column;
}

.skills-list li {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}

.skills-list li:last-child {
  border-bottom: none;
}

.skills-list li::before {
  content: '→';
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
}

/* ----- Footer ----- */
footer {
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.site-footer {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}

.site-footer a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.site-footer a:hover {
  color: var(--dark);
}

/* ----- Case Study Hero ----- */
.case-hero {
  padding: 100px var(--gutter) 80px;
}

.case-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.case-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  opacity: 0.65;
}

.case-hero h1 {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: clamp(22px, 3.2vw, 46px);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 740px;
}

.case-meta {
  font-size: 15px;
  opacity: 0.6;
  font-weight: 500;
}

.case-hero--petrol {
  background: var(--petrol-mid);
  color: var(--white);
}

.case-hero--gold {
  background: var(--gold);
  color: var(--dark);
}

.case-hero--coral {
  background: var(--coral);
  color: var(--dark);
}

/* ----- Back link ----- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 48px;
  transition: color 0.15s;
  letter-spacing: 0.03em;
}

.back-link:hover {
  color: var(--dark);
}

/* ----- Case Study Body ----- */
.case-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px var(--gutter);
}

.case-section {
  margin-bottom: 64px;
}

.case-section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 14px;
}

.case-section h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--dark);
  line-height: 1.25;
}

.case-section p {
  font-size: 17px;
  line-height: 1.82;
  color: #333;
  margin-bottom: 18px;
}

.case-section p:last-child {
  margin-bottom: 0;
}

.case-section ul {
  padding: 0;
  margin: 20px 0 0;
}

.case-section ul li {
  font-size: 17px;
  line-height: 1.75;
  color: #333;
  padding: 11px 0 11px 30px;
  position: relative;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.case-section ul li:first-child {
  border-top: 1px solid rgba(26, 26, 26, 0.06);
}

.case-section ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--muted);
}

/* ----- Stats Callouts ----- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.stat-item {
  background: var(--bg);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
}

.stat-number {
  font-family: 'Jost', sans-serif;
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--petrol-dark);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ----- Outcome Callout ----- */
.outcome-callout {
  background: var(--petrol-dark);
  border-radius: 12px;
  padding: 64px 40px;
  text-align: center;
  margin: 48px 0;
}

.outcome-number {
  font-family: 'Jost', sans-serif;
  font-size: clamp(64px, 10vw, 100px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.outcome-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Samaritan outcome — text-based */
.outcome-callout-text {
  background: var(--petrol-dark);
  border-radius: 12px;
  padding: 56px 48px;
  text-align: center;
  margin: 48px 0;
}

.outcome-callout-text .outcome-big-text {
  font-family: 'Jost', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1.25;
  margin-bottom: 16px;
}

.outcome-callout-text .outcome-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ----- Image Placeholders ----- */
.img-placeholder {
  background: #e8e4dd;
  border-radius: 8px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  gap: 10px;
  padding: 32px;
  text-align: center;
}

.img-placeholder span {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
}

.img-placeholder small {
  font-size: 12px;
  color: rgba(136, 136, 136, 0.6);
}

/* ----- Quotes Section ----- */
.quotes-section {
  background: var(--bg);
  padding: 80px var(--gutter);
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.quotes-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quote-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.quote-mark {
  font-size: 40px;
  line-height: 1;
  color: var(--muted);
  opacity: 0.35;
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.quote-text {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 24px;
}

.quote-attribution {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.quote-role {
  font-size: 13px;
  color: var(--muted);
}

/* ----- Shortlist CTA Block ----- */
.shortlist-cta-block {
  background: var(--petrol-dark);
  border-radius: 12px;
  padding: 64px 48px;
  text-align: center;
  margin: 48px 0;
}

.shortlist-cta-block h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 16px;
}

.shortlist-cta-block p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .quotes-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-home {
    padding: 64px var(--gutter) 72px;
    min-height: auto;
  }

  .hero-home-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-home-right {
    display: none;
  }

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

  .card-left {
    min-height: 160px;
    padding: 32px 28px;
  }

  .card-number {
    font-size: 90px;
    top: -10px;
    left: 16px;
  }

  .card-right {
    padding: 32px 28px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .site-footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .case-hero {
    padding: 64px var(--gutter) 52px;
  }

  .case-body {
    padding: 52px var(--gutter);
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

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

  .shortlist-cta-block {
    padding: 48px 28px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

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

  .stats-row {
    grid-template-columns: 1fr;
  }

  .outcome-callout {
    padding: 48px 24px;
  }
}

/* =================================================
   STAINED GLASS DESIGN TREATMENT
   ================================================= */

/* ----- Planes SVG (behind all section content) ----- */
.planes-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Sections need relative + overflow for planes */
.hero-home,
.work-section,
.about-section,
footer {
  position: relative;
  overflow: hidden;
}

/* Content sits above planes */
.hero-home-inner,
.work-section-header,
.cards-list,
.about-inner,
.site-footer {
  position: relative;
  z-index: 1;
}

/* ----- Nav: cream background + leaded border ----- */
.site-nav {
  background: #F4EFE6;
  border-bottom: 2px solid #1a1a1a;
}

.nav-mobile {
  background: #F4EFE6;
}

/* ----- Hero: dark teal override ----- */
.hero-home {
  background: #0C5467;
}

/* ----- Work section: cream ----- */
.work-section {
  background: #F4EFE6;
}

/* ----- About section: coral ----- */
.about-section {
  background: #E8503A;
  border-top: none;
}

.about-section .about-text h2 {
  color: #ffffff;
}

.about-section .about-text p {
  color: rgba(255, 255, 255, 0.88);
}

.about-section .about-linkedin {
  color: rgba(255, 255, 255, 0.9);
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.about-section .about-linkedin:hover {
  opacity: 1;
  color: #ffffff;
}

/* ----- Footer: near black ----- */
footer {
  background: #1a1a1a;
  border-top: none;
}

.site-footer {
  color: rgba(255, 255, 255, 0.45);
}

.site-footer span {
  color: rgba(255, 255, 255, 0.45);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration-color: rgba(255, 255, 255, 0.2);
}

.site-footer a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ----- Leaded Dividers ----- */
.leaded-divider {
  position: relative;
  height: 18px;
  background: linear-gradient(180deg,
    #383838 0%,
    #222222 15%,
    #0d0d0d 40%,
    #111111 60%,
    #222222 85%,
    #383838 100%
  );
  overflow: hidden;
  cursor: default;
}


.ld-flare {
  position: absolute;
  top: 50%;
  left: 0;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(245, 196, 0, 0.5) 0%,
    rgba(255, 255, 255, 0.2) 40%,
    transparent 70%
  );
  transform: scale(0);
  pointer-events: none;
  transition: transform 0.2s ease;
}

.ld-flare.is-visible {
  transform: scale(1);
}

.ld-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    #E8503A 0%,
    #ff6644 15%,
    rgba(255, 255, 255, 0.5) 30%,
    #1a1a1a 45%,
    #1a1a1a 55%,
    rgba(255, 255, 255, 0.5) 70%,
    #F5C400 85%,
    #ffdd00 100%
  );
  pointer-events: none;
}

.ld-bottom-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    #F5C400 0%,
    #ffdd00 15%,
    rgba(255, 255, 255, 0.5) 30%,
    #1a1a1a 45%,
    #1a1a1a 55%,
    rgba(255, 255, 255, 0.5) 70%,
    #E8503A 85%,
    #ff6644 100%
  );
  pointer-events: none;
}

.ld-hairline {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  margin-top: -0.5px;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

/* ----- Buttons: geometric clipped corners ----- */
.btn {
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  border-radius: 0;
}

.btn-gold {
  background: #F5C400;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  font-family: var(--font-mono);
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  font-family: var(--font-mono);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

/* ----- Cards: stained glass treatment ----- */
.card {
  border-radius: 0;
  border: 2px solid #1a1a1a;
  box-shadow: none;
}

.card--petrol { border-top: 8px solid #E8503A; }
.card--gold   { border-top: 8px solid #F5C400; }
.card--coral  { border-top: 8px solid #0C5467; }

.card:hover {
  box-shadow: none;
  transform: translateY(-3px);
}

/* ----- Section heading accent ----- */
.section-h2 {
  position: relative;
}

.section-h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 10px;
  background: linear-gradient(90deg, #E8503A 0%, #F5C400 100%);
  clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 100%, 0 100%);
}

.about-section .section-h2::after {
  background: linear-gradient(90deg, #ffffff 0%, rgba(245, 196, 0, 0.85) 100%);
}

/* ----- Section label eyebrows ----- */
.work-section .section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(26, 26, 26, 0.45);
}

/* =================================================
   FLW REDESIGN SYSTEM
   Full override — Jost typography, unified window
   pattern, deep navy sections
   ================================================= */

/* FLW SVG background (same positioning as .planes-svg) */
.flw-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ----- Nav: whisper border ----- */
.site-nav {
  background: #F4EFE6;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.nav-mobile {
  background: #F4EFE6;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #555555;
}

.nav-links .linkedin-link {
  color: #4A5FC4;
  font-weight: 500;
}

/* ----- Hero: deep navy ----- */
.hero-home {
  background: #082430;
}

.hero-home-inner {
  grid-template-columns: 1fr 0.8fr;
}

.hero-headline {
  font-size: 36px;
  line-height: 1.22;
}

.hero-accent {
  color: #E8503A;
}

.availability-badge {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #F5C400;
  border-color: rgba(245, 196, 0, 0.3);
}

/* ----- Buttons: 7px clip-path ----- */
.btn {
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
}

/* ----- Work section: cream, no planes ----- */
.work-section {
  background: #F4EFE6;
}

.work-heading-block {
  margin-bottom: 52px;
}

.work-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(26, 26, 26, 0.45);
  margin-bottom: 10px;
}

.work-h2 {
  font-family: 'Jost', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.2;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
}

.work-h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 10px;
  background: linear-gradient(90deg, #E8503A 0%, #F5C400 100%);
  clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 100%, 0 100%);
}

/* ----- Cards: 7px top stripes ----- */
.card--petrol { border-top: 7px solid #E8503A; }
.card--gold   { border-top: 7px solid #F5C400; }
.card--coral  { border-top: 7px solid #0C5467; }

/* ----- About section: deep navy ----- */
.about-section {
  background: #082430;
  border-top: none;
}

.about-section .section-label {
  color: rgba(245, 196, 0, 0.72);
}

.about-section .about-text h2,
.about-section .section-h2 {
  color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.about-section .about-text p {
  color: rgba(255, 255, 255, 0.76);
}

.about-section .section-h2::after {
  background: linear-gradient(90deg, #E8503A 0%, rgba(245, 196, 0, 0.85) 100%);
}

/* Skills tags — FLW glass pane style */
.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.about-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  gap: 28px;
  padding-top: 32px;
}

.skills-tags span {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 0;
  cursor: default;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
  transition: transform 0.2s cubic-bezier(0.4,0,0.2,1), box-shadow 0.2s;
  /* Internal lead line */
  background-image: linear-gradient(90deg,
    transparent calc(100% - 21px),
    rgba(26,26,26,0.2) calc(100% - 21px),
    rgba(26,26,26,0.2) calc(100% - 20px),
    transparent calc(100% - 20px)
  );
}

/* Glass sheen overlay */
.skills-tags span::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.06) 35%, transparent 60%);
  opacity: 0.7;
  mix-blend-mode: overlay;
  clip-path: inherit;
  z-index: 1;
  transition: opacity 0.3s, background 0.3s;
}

/* Top edge highlight */
.skills-tags span::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.4);
  pointer-events: none;
  z-index: 2;
}

.skills-tags span:hover {
  transform: translateY(-2px);
}

.skills-tags span:hover::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0.12) 35%, transparent 60%);
}

/* Color variants */
.tag-coral  { background-color: #E8503A; color: #fff; border: 1.5px solid #1a1a1a; }
.tag-teal   { background-color: #0C5467; color: #fff; border: 1.5px solid #1a1a1a; }
.tag-gold   { background-color: #F5C400; color: #1a1a1a; border: 1.5px solid #1a1a1a; }
.tag-dteal  { background-color: #0C7A8A; color: #fff; border: 1.5px solid #1a1a1a; }
.tag-navy   { background-color: #082430; color: #fff; border: 1.5px solid rgba(255,255,255,0.2); }

.tag-coral:hover  { box-shadow: 0 4px 20px rgba(232,80,58,0.5); }
.tag-teal:hover   { box-shadow: 0 4px 20px rgba(12,84,103,0.5); }
.tag-gold:hover   { box-shadow: 0 4px 20px rgba(245,196,0,0.5); }
.tag-dteal:hover  { box-shadow: 0 4px 20px rgba(12,122,138,0.5); }
.tag-navy:hover   { box-shadow: 0 4px 20px rgba(12,84,103,0.3); }

/* About more link */
.about-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F5C400;
  text-decoration: none;
  transition: opacity 0.15s;
}

.about-more-link:hover {
  opacity: 0.65;
}

/* About LinkedIn (on dark navy) */
.about-section .about-linkedin {
  color: rgba(255, 255, 255, 0.75);
  text-decoration-color: rgba(255, 255, 255, 0.3);
}

.about-section .about-linkedin:hover {
  color: #ffffff;
  opacity: 1;
}

/* ----- Leaded dividers: 14px ----- */
.leaded-divider {
  height: 14px;
}

/* ----- Discipline squares: 52px, Jost ----- */
.hero-sq {
  width: 52px;
  grid-template-rows: 52px 0fr;
  border-radius: 0;
  border: 2px solid #1a1a1a;
}

.hero-sq:hover {
  grid-template-rows: 52px 1fr;
}

.hero-sq--ghost {
  background: rgba(255, 255, 255, 0.09);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.sq-letter {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.sq-word {
  font-family: 'Space Mono', monospace;
  font-size: 7px;
  font-weight: 400;
}

/* ----- Footer: near-black, simple ----- */
footer {
  background: #1a1a1a;
  border-top: none;
}

.site-footer {
  color: rgba(255, 255, 255, 0.4);
}

.footer-name {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.32);
}

/* =================================================
   FLW DISCIPLINE SHAPES
   ================================================= */

/* Hide old squares */
.hero-squares { display: none; }

/* ----- Shared shape wrapper ----- */
.hero-shapes {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.shape-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: default;
}

.shape-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s ease 0.15s;
  white-space: nowrap;
}

.shape-wrap:hover .shape-label { opacity: 1; }
.shape-wrap--half .shape-label { color: rgba(255, 255, 255, 0.6); }

/* =====
   SHAPE 1 — CIRCLE (U: UX Research)
   ===== */

.sc-container {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.shape-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #1a1a1a;
}

.sc-half {
  position: absolute;
  left: 0;
  right: 0;
}

.sc-half--top { top: 0;    height: 50%; background: #E8503A; }
.sc-half--bot { bottom: 0; height: 50%; background: #982010; }

.sc-lead {
  position: absolute;
  background: #1a1a1a;
  z-index: 2;
  pointer-events: none;
}

.sc-lead--h { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.sc-lead--v { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); }

.sc-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 45%);
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.sc-letter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  z-index: 4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.shape-wrap--circle:hover .sc-sheen  { opacity: 0; }
.shape-wrap--circle:hover .sc-letter { opacity: 0; }

/* Ripple rings — siblings of .shape-circle so they escape overflow:hidden */
.sc-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  border-radius: 50%;
  border: 2px solid rgba(232, 80, 58, 0.5);
  opacity: 0;
  pointer-events: none;
}

.shape-wrap--circle:hover .sc-ripple--1 { animation: sc-ripple-out 1s cubic-bezier(0, 0, 0.2, 1) infinite; animation-delay: 0s; }
.shape-wrap--circle:hover .sc-ripple--2 { animation: sc-ripple-out 1s cubic-bezier(0, 0, 0.2, 1) infinite; animation-delay: 0.33s; }
.shape-wrap--circle:hover .sc-ripple--3 { animation: sc-ripple-out 1s cubic-bezier(0, 0, 0.2, 1) infinite; animation-delay: 0.66s; }

@keyframes sc-ripple-out {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* =====
   SHAPE 2 — DIAMOND (C: Communications)
   ===== */

.sd-holder {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
}

.shape-diamond {
  width: 74px;
  height: 74px;
  position: relative;
  overflow: hidden;
  border: 2px solid #1a1a1a;
  transform: rotate(45deg);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.shape-wrap--diamond:hover .shape-diamond { transform: rotate(0deg); }

.sd-tri {
  position: absolute;
  inset: 0;
}

.sd-tri--top { background: #F5C400; clip-path: polygon(0 0, 100% 0, 50% 50%); }
.sd-tri--lft { background: #d4a800; clip-path: polygon(0 0, 50% 50%, 0 100%); }
.sd-tri--rgt { background: #e8b800; clip-path: polygon(100% 0, 100% 100%, 50% 50%); }
.sd-tri--bot { background: #c8900a; clip-path: polygon(0 100%, 50% 50%, 100% 100%); }

.sd-lead {
  position: absolute;
  background: #1a1a1a;
  z-index: 2;
  pointer-events: none;
}

.sd-lead--h { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.sd-lead--v { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); }

.sd-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 45%);
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sd-letter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #1a1a1a;
  z-index: 4;
  transform: rotate(-45deg);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  pointer-events: none;
}

.shape-wrap--diamond:hover .sd-letter { transform: rotate(0deg); opacity: 0; }
.shape-wrap--diamond:hover .sd-sheen  { opacity: 0; }

/* =====
   SHAPE 3 — D-SHAPE HALF CIRCLE (O: Operations)
   ===== */

.shape-wrap--half {
  min-width: 80px;
}

.shape-half {
  width: 56px;
  height: 80px;
  border-radius: 0 80px 80px 0;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.shape-wrap--half:hover .shape-half { transform: rotate(90deg); }

.sh-band {
  position: absolute;
  left: 0;
  right: 0;
}

.sh-band--t { top: 0;                    height: calc(100% / 3);       background: #0C7A8A; }
.sh-band--m { top: calc(100% / 3);       height: calc(100% / 3);       background: #0C5467; }
.sh-band--b { top: calc(100% * 2 / 3);   bottom: 0;                    background: #082430; }

.sh-hline {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
  pointer-events: none;
}

.sh-hline--1 { top: calc(100% / 3);       transform: translateY(-50%); }
.sh-hline--2 { top: calc(100% * 2 / 3);   transform: translateY(-50%); }

.sh-vline {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 1.5px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 2;
  pointer-events: none;
}

.sh-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  z-index: 3;
  pointer-events: none;
}

.sh-letter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  z-index: 4;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.shape-wrap--half:hover .sh-letter { opacity: 0; }

/* ----- Hero button sizing ----- */
.hero-buttons .btn {
  padding: 10px 22px;
  font-size: 12px;
  font-family: 'Space Mono', monospace;
  border-radius: 0;
}

.hero-buttons .btn-gold {
  font-weight: 700;
  background: #F5C400;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

.hero-buttons .btn-ghost {
  font-weight: 400;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-buttons .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

/* ============================================
   Section Navigation Carets
   ============================================ */

.section-caret {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  opacity: 0.35;
  transition: opacity 0.2s, transform 0.2s;
  position: relative;
  z-index: 10;
}
.section-caret:hover { opacity: 0.85; transform: translateY(2px); }
.section-caret--up:hover { transform: translateY(-2px); }

/* ============================================
   Dropdown Navigation
   ============================================ */

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: #F4EFE6;
  border: 1px solid rgba(26,26,26,0.1);
  border-radius: 0;
  padding: 8px 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 200;
}

.nav-dropdown-menu.is-open {
  display: block;
}

.nav-dropdown-menu li a:hover {
  background: rgba(232,80,58,0.06);
  color: #E8503A;
}

.nav-dropdown-trigger:hover {
  color: #1a1a1a;
}

/* ----- Reduced Motion ----- */
@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;
  }
}
