/* ==========================================================================
   DenceSpot Clinic — site stylesheet
   Tokens and components lifted from the design build so the PHP site renders
   identically to hair-transplant-in-gurgaon.html, but mobile-first.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */

:root {
  --canvas:       #F5F4F7;
  --card:         #FFFFFF;
  --ink:          #1a1147;
  --ink-soft:     #3E3560;
  --ink-muted:    #6B6485;
  --line:         #E7E4ED;
  --line-dash:    #C9C3D8;
  --placeholder:  #C0BACF;

  --accent:       #10B981;
  --accent-deep:  #0B7A5E;
  --accent-dark:  #086349;
  --accent-tint:  #E7F7F1;

  --shadow-sm:    0 4px 16px -4px rgba(26,17,71,.06);
  --shadow-md:    0 12px 32px -8px rgba(26,17,71,.10);
  --shadow-lg:    0 24px 60px -16px rgba(26,17,71,.16);
  --shadow-cta:   0 18px 44px -18px rgba(16,185,129,.75);

  --r-sm:  14px;
  --r-md:  16px;
  --r-lg:  20px;
  --r-xl:  24px;
  --r-2xl: 32px;

  --wrap:    1280px;
  --gutter:  20px;
  --section: 64px;

  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;
}

@media (min-width: 768px)  { :root { --gutter: 32px; --section: 80px; } }
@media (min-width: 1080px) { :root { --gutter: 40px; --section: 96px; } }

/* --- Reset -------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; padding: 0; }
ul { list-style: none; }
img, svg, video { max-width: 100%; }
img { height: auto; display: block; }

a { color: var(--accent-deep); text-decoration: none; }
a:hover { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }

button, input, select, textarea { font: inherit; }

summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- Layout ------------------------------------------------------------- */

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: var(--section); }
.section--canvas { background: var(--canvas); }
.section--white  { background: #fff; }
.section--ink    { background: var(--ink); color: #fff; }

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }
.grid--5 { grid-template-columns: 1fr 1fr; }

@media (min-width: 700px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1080px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--5 { grid-template-columns: repeat(5, 1fr); }
}

/* Asymmetric split used by hero / what-is / cost blocks */
.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1080px) {
  .split            { grid-template-columns: 1.05fr .95fr; gap: 64px; }
  .split--wide-left { grid-template-columns: 1.15fr .85fr; }
  .split--wide-right{ grid-template-columns: .8fr 1.2fr; }
  .split--sidebar   { grid-template-columns: .75fr 1.25fr; align-items: start; gap: 56px; }
  .split--top       { align-items: start; }
}

.stack   > * + * { margin-top: 16px; }
.stack-sm > * + * { margin-top: 10px; }
.stack-lg > * + * { margin-top: 24px; }

.measure { max-width: 62ch; }
.measure-sm { max-width: 46ch; }

/* --- Type --------------------------------------------------------------- */

.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-deep);
}
.section--ink .eyebrow { color: var(--accent); }

.h1 {
  font-size: clamp(32px, 6.2vw, 56px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.06; text-wrap: balance;
}
.h2 {
  font-size: clamp(27px, 4.6vw, 40px); font-weight: 800;
  letter-spacing: -.025em; line-height: 1.12; text-wrap: balance;
}
.h3 { font-size: 19px; font-weight: 700; letter-spacing: -.01em; line-height: 1.28; }
.h4 { font-size: 17px; font-weight: 700; line-height: 1.3; }

.lead {
  font-size: clamp(17px, 2.2vw, 19px); line-height: 1.6;
  color: var(--ink-soft); text-wrap: pretty;
}
.body   { font-size: 16px; line-height: 1.7; color: var(--ink-soft); text-wrap: pretty; }
.body-l { font-size: 17px; line-height: 1.7; color: var(--ink-soft); text-wrap: pretty; }
.body-s { font-size: 15px; line-height: 1.65; color: var(--ink-soft); }
.meta   { font-size: 13px; line-height: 1.55; color: var(--ink-muted); }
.fine   { font-size: 12px; line-height: 1.6; color: var(--ink-muted); }

.section--ink .h1, .section--ink .h2, .section--ink .h3, .section--ink .h4 { color: #fff; }
.section--ink .body, .section--ink .lead, .section--ink .body-s { color: rgba(255,255,255,.72); }
.section--ink .meta, .section--ink .fine { color: rgba(255,255,255,.55); }

.mt-1 { margin-top: 8px; }  .mt-2 { margin-top: 14px; } .mt-3 { margin-top: 18px; }
.mt-4 { margin-top: 24px; } .mt-5 { margin-top: 32px; } .mt-6 { margin-top: 44px; }

/* --- Buttons ------------------------------------------------------------ */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 52px; padding: 0 24px; border: 1px solid transparent;
  border-radius: var(--r-md); font-size: 16px; font-weight: 600; line-height: 1.2;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: transform .18s cubic-bezier(.22,1,.36,1), box-shadow .18s, background .18s, border-color .18s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(.985); }

.btn--ink   { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #241a5e; color: #fff; }

.btn--accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-cta); }
.btn--accent:hover { background: #0ea271; color: #fff; }

.btn--outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { background: #fff; color: var(--ink); border-color: var(--ink); }

.btn--ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.24); }
.btn--ghost:hover { background: rgba(255,255,255,.16); color: #fff; }

.btn--lg { min-height: 56px; padding: 0 26px; }
.btn--sm { min-height: 44px; padding: 0 18px; font-size: 14px; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* --- Cards -------------------------------------------------------------- */

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm);
}
.card--flat   { box-shadow: none; background: var(--canvas); }
.card--dashed { border-style: dashed; border-color: var(--line-dash); box-shadow: none; }
.card--pad-lg { padding: 32px; }
.card--tint   { background: var(--canvas); box-shadow: none; }
.card--ink    { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); box-shadow: none; }

.card__icon { color: var(--accent-deep); display: block; }

.note {
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: var(--r-md); padding: 22px 24px;
}
.note--tint { background: var(--canvas); }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 13px; border-radius: 999px; background: var(--accent-tint);
  color: var(--accent-deep); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; line-height: 1.5;
}
.pill--dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.pill--ink { background: var(--ink); color: #fff; }

.step-num {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 12px;
  background: var(--accent-tint); color: var(--accent-deep);
  font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}

/* --- Ticked lists ------------------------------------------------------- */

.ticks { display: grid; gap: 12px; }
@media (min-width: 640px) { .ticks--2col { grid-template-columns: 1fr 1fr; gap: 14px 28px; } }

.tick { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); }
.tick svg { flex: 0 0 auto; margin-top: 3px; color: var(--accent); }

/* --- Media / image slots ------------------------------------------------ */

.media { border-radius: var(--r-xl); overflow: hidden; background: var(--canvas); }
.media--shadow { box-shadow: var(--shadow-lg); }
.media--sm { border-radius: var(--r-lg); }

.ratio-4-5  { aspect-ratio: 4/5; }
.ratio-4-3  { aspect-ratio: 4/3; }
.ratio-1-1  { aspect-ratio: 1/1; }
.ratio-16-10{ aspect-ratio: 16/10; }

/* Placeholder shown until real photography lands. */
.slot {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; padding: 16px; text-align: center;
  background: repeating-linear-gradient(135deg, #EDEBF2 0 12px, var(--line) 12px 24px);
  color: var(--ink-muted); font-size: 12px; font-weight: 600; line-height: 1.45;
}
.slot span { max-width: 32ch; }

/* --- Header ------------------------------------------------------------- */

.site-header {
  position: sticky; top: 10px; z-index: 60;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(18px);
  border: 1px solid var(--line); border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  max-width: var(--wrap); margin: 10px auto;
}
.site-header__bar {
  max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter);
  min-height: 68px; display: flex; align-items: center; gap: 16px;
}
@media (min-width: 1080px) { .site-header__bar { min-height: 78px; gap: 20px; } }

.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); flex: 0 0 auto; }
.brand:hover { color: var(--ink); text-decoration: none; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 11px; background: var(--ink);
  display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
}
.brand__name { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name b { font-weight: 800; letter-spacing: -.01em; font-size: 16px; }
.brand__name span {
  font-size: 9px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 600; white-space: nowrap;
}
@media (min-width: 480px) { .brand__name b { font-size: 17px; } .brand__name span { font-size: 10px; } }

.nav { display: none; }
@media (min-width: 1080px) {
  .nav { display: flex; gap: 20px; align-items: center; justify-content: center; flex: 1 1 auto; margin-left: 8px; }
  .nav a { font-size: 14px; font-weight: 500; color: var(--ink-soft); white-space: nowrap; }
  .nav a:hover { color: var(--ink); text-decoration: none; }
  .nav a[aria-current="page"] {
    font-weight: 600; color: var(--ink);
    border-bottom: 2px solid var(--accent); padding-bottom: 2px;
  }
}

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; flex: 0 0 auto; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 42px; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: #fff; color: var(--ink); flex: 0 0 auto;
}
.icon-btn:hover { color: var(--ink); border-color: var(--ink); text-decoration: none; }

.header-actions .btn { min-height: 42px; padding: 0 14px; font-size: 14px; border-radius: var(--r-sm); }
.header-actions .btn--wa { display: none; }
@media (min-width: 560px) { .header-actions .btn--wa { display: inline-flex; } }
.header-actions .btn--book { display: none; }
@media (min-width: 1080px) { .header-actions .btn--book { display: inline-flex; } }

/* Mobile nav */
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 42px; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer;
}
@media (min-width: 1080px) { .nav-toggle { display: none; } }

.mobile-nav {
  display: none; border-top: 1px solid var(--line);
  background: rgba(245,244,247,.98); backdrop-filter: blur(18px);
}
.mobile-nav[data-open="true"] { display: block; }
@media (min-width: 1080px) { .mobile-nav { display: none !important; } }
.mobile-nav ul {
  max-width: var(--wrap); margin-inline: auto; padding: 12px var(--gutter) 20px;
  display: grid; gap: 2px;
}
.mobile-nav a {
  display: block; padding: 13px 0; font-size: 16px; font-weight: 500;
  color: var(--ink-soft); border-bottom: 1px solid var(--line);
}
.mobile-nav a:hover { text-decoration: none; color: var(--ink); }
.mobile-nav a[aria-current="page"] { color: var(--ink); font-weight: 700; }

/* --- Breadcrumb --------------------------------------------------------- */

.crumbs { background: #fff; border-bottom: 1px solid var(--line); }
.crumbs ol {
  max-width: var(--wrap); margin-inline: auto; padding: 13px var(--gutter);
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-muted); list-style: none;
}
.crumbs a { color: var(--ink-muted); }
.crumbs a:hover { color: var(--ink); }
.crumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* --- Hero --------------------------------------------------------------- */

.hero { padding-block: 40px 56px; background: linear-gradient(180deg, #FFF 0%, var(--canvas) 100%); }
@media (min-width: 1080px) { .hero { padding-block: 64px 80px; } }

.hero__badge-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 18px 20px; box-shadow: var(--shadow-md);
  margin-top: -40px; margin-inline: auto; max-width: 300px;
}
@media (min-width: 1080px) {
  .hero__figure { position: relative; }
  .hero__badge-card { position: absolute; left: -28px; bottom: 34px; margin: 0; width: 258px; max-width: none; }
}

/* --- Trust strip -------------------------------------------------------- */

.trust { background: var(--canvas); padding-bottom: 24px; }
.trust .card { padding: 20px 18px; border-radius: var(--r-md); }

/* --- Journey (dark numbered rail) --------------------------------------- */

.journey { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 560px)  { .journey { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px)  { .journey { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1180px) { .journey { grid-template-columns: repeat(7, 1fr); } }
.journey .card { padding: 22px 18px; border-radius: 18px; }
.journey__num { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--accent); }

/* --- Steps -------------------------------------------------------------- */

.step { display: flex; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px 24px; }

/* --- Accordion / FAQ ---------------------------------------------------- */

.faq { display: grid; gap: 10px; }
.faq details {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 18px 22px;
}
.faq summary {
  display: flex; justify-content: space-between; gap: 18px;
  font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.4;
}
@media (min-width: 700px) { .faq summary { font-size: 17px; } }
.faq summary::after { content: "+"; color: var(--accent); font-weight: 700; flex: 0 0 auto; }
.faq details[open] summary::after { content: "\2013"; }
.faq p { margin-top: 12px; font-size: 15px; line-height: 1.7; color: var(--ink-soft); }

/* --- Definition list (NAP block) ---------------------------------------- */

.dl { display: grid; gap: 0; margin-top: 24px; }
.dl > div {
  display: grid; gap: 4px; padding: 14px 0; border-top: 1px solid var(--line);
}
.dl > div:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 560px) { .dl > div { grid-template-columns: 120px 1fr; gap: 16px; padding: 16px 0; } }
.dl dt {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-muted);
}
.dl dd { font-size: 15px; line-height: 1.55; color: var(--ink); font-weight: 600; }
.dl dd a { color: var(--ink); }

/* --- Forms -------------------------------------------------------------- */

.field { display: grid; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.section--ink .field label { color: rgba(255,255,255,.72); }

.input, .select, .textarea {
  width: 100%; min-height: 50px; padding: 13px 14px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; color: var(--ink); font-size: 16px;
}
.textarea { min-height: 88px; resize: vertical; }
.input::placeholder, .textarea::placeholder { color: var(--ink-muted); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(16,185,129,.16);
}

.form--onink .input, .form--onink .select, .form--onink .textarea {
  border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff;
}
.form--onink .input::placeholder, .form--onink .textarea::placeholder { color: rgba(255,255,255,.5); }
.form--onink .select option { color: var(--ink); }

.form-error { font-size: 13px; color: #EF4444; font-weight: 600; }
.form--onink .form-error { color: #FCA5A5; }

/* --- CTA band ----------------------------------------------------------- */

.cta-band {
  background: var(--ink); border-radius: var(--r-2xl); padding: 32px;
  color: #fff; display: grid; gap: 32px; box-shadow: var(--shadow-lg);
}
@media (min-width: 700px)  { .cta-band { padding: 44px; } }
@media (min-width: 1080px) { .cta-band { grid-template-columns: 1.1fr .9fr; gap: 56px; padding: 56px; align-items: center; } }

/* --- Footer ------------------------------------------------------------- */

.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding-top: 56px; }
.site-footer a { color: rgba(255,255,255,.72); font-size: 14px; }
.site-footer a:hover { color: #fff; }
.site-footer__cols { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 620px)  { .site-footer__cols { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .site-footer__cols { grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 40px; } }
.site-footer h2 {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #fff;
}
.site-footer ul { margin-top: 16px; display: grid; gap: 10px; }
.site-footer li { font-size: 14px; line-height: 1.55; }

.disclaimer {
  margin-top: 40px; padding: 20px 22px; border-radius: var(--r-md);
  background: rgba(255,255,255,.06); font-size: 12px; line-height: 1.7; color: rgba(255,255,255,.62);
}
.disclaimer b { color: #fff; }

.colophon {
  margin-top: 28px; padding: 22px 0 28px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; font-size: 13px;
}
.colophon p { color: rgba(255,255,255,.5); }
.colophon div { display: flex; flex-wrap: wrap; gap: 18px; }
.colophon a { color: rgba(255,255,255,.6); font-size: 13px; }

/* --- Sticky mobile CTA -------------------------------------------------- */

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.sticky-cta .btn { min-height: 48px; font-size: 15px; }
@media (min-width: 1080px) { .sticky-cta { display: none; } }
@media (max-width: 1079px) { body { padding-bottom: 76px; } }

/* --- Tables ------------------------------------------------------------- */

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.data { width: 100%; border-collapse: collapse; min-width: 520px; font-size: 15px; }
table.data th, table.data td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }
table.data th { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted); }
table.data td { color: var(--ink-soft); }
table.data tr:last-child td { border-bottom: 0; }

/* --- Prose (blog) ------------------------------------------------------- */

.prose { font-size: 17px; line-height: 1.75; color: var(--ink-soft); }
.prose > * + * { margin-top: 20px; }
.prose h2 { font-size: clamp(24px, 3.4vw, 30px); font-weight: 800; letter-spacing: -.02em; color: var(--ink); margin-top: 40px; line-height: 1.2; }
.prose h3 { font-size: 20px; font-weight: 700; color: var(--ink); margin-top: 30px; }
.prose ul, .prose ol { padding-left: 22px; display: grid; gap: 10px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose blockquote {
  border-left: 3px solid var(--accent); padding: 4px 0 4px 20px;
  color: var(--ink); font-weight: 500;
}
.prose img { border-radius: var(--r-lg); }

/* --- Motion ------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* --- Print -------------------------------------------------------------- */

@media print {
  .site-header, .mobile-nav, .sticky-cta, .site-footer, .btn { display: none !important; }
  body { padding-bottom: 0; }
}

/* Nav Dropdown */
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown-toggle { cursor: pointer; padding-bottom: 20px; }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.1); border-radius: 8px; padding: 10px 0; min-width: 220px; z-index: 100; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 8px 20px; color: var(--ink); text-decoration: none; }
.nav-dropdown-menu a:hover { background: #f5f4f7; }

