/* ==========================================================================
   Mika Mayfield — Moonlit Storybook
   ========================================================================== */

:root {
  --ink: #FDFAF3;
  --ink-soft: #E8E1D2;
  --ink-muted: #A79E8D;
  --ink-dim: #77705F;

  --paper: #0B0E1F;
  --paper-2: #101534;
  --paper-3: #161C3E;
  --paper-4: #1D2450;

  --amber: #E8A755;
  --amber-glow: #F2C078;
  --amber-deep: #B47726;
  --danger: #E06E5A;

  --border: rgba(232, 167, 85, 0.22);
  --border-soft: rgba(255, 255, 255, 0.08);
  --border-hard: rgba(232, 167, 85, 0.5);

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 20px;

  --shadow-sm: 0 6px 20px -8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 20px 44px -18px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 60px -10px rgba(242, 192, 120, 0.25);

  --wrap: 1200px;
  --gutter: 32px;
}

/* Reset ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: var(--amber); color: var(--paper); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 400; }
p { margin: 0; }
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Utilities --------------------------------------------------------------- */
.container { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 24px;
}
.prose p + p { margin-top: 1em; }
.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;
}

/* Header ------------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(11, 14, 31, 0.72);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.site-header .nav {
  max-width: var(--wrap); margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.005em;
  color: var(--amber-glow);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo .dot {
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 999px;
  box-shadow: 0 0 12px var(--amber-glow);
}
.nav-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 36px;
  font-size: 14px; letter-spacing: 0.02em;
}
.nav-links a {
  color: var(--ink-muted);
  transition: color 0.2s;
  padding: 6px 0;
  position: relative;
}
.nav-links a:hover { color: var(--amber-glow); }
.nav-links a.active { color: var(--amber-glow); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--amber);
}

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 15px 26px;
  border-radius: 999px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn-primary { background: var(--amber); color: #1A1206; }
.btn-primary:hover { background: var(--amber-glow); transform: translateY(-1px); box-shadow: 0 8px 24px -8px rgba(232, 167, 85, 0.5); }
.btn-ghost { color: var(--ink); border-color: var(--border); background: transparent; }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber-glow); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 32px; font-size: 15px; }

/* Mobile drawer ----------------------------------------------------------- */
.menu-toggle {
  display: none;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  color: var(--ink);
}
.menu-toggle svg { width: 18px; height: 18px; }

/* Hero -------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 100px var(--gutter) 90px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%; width: 60%; height: 80%;
  background: radial-gradient(closest-side, rgba(242, 192, 120, 0.20), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 72px; align-items: center;
  position: relative; z-index: 1;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--amber-glow);
  font-weight: 400;
}
.hero-lede {
  color: var(--ink-muted);
  font-size: 18px; line-height: 1.7;
  max-width: 44ch;
  margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-art {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  background: var(--paper-2);
}
.hero-art img {
  width: 100%; height: auto;
  display: block;
}
.hero-caption {
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  pointer-events: none;
}
.hero-caption span {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber-glow);
  margin-top: 6px;
}

/* Section headers --------------------------------------------------------- */
.section { padding: 100px var(--gutter); position: relative; }
.section-alt {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
}
.section-title em {
  font-style: italic;
  color: var(--amber-glow);
}
.section-lede {
  color: var(--ink-muted);
  font-size: 17.5px; line-height: 1.7;
  max-width: 56ch;
  margin: 0 0 60px;
}

/* -------------------------------------------------------------------------
   ARTWORK PLATES — the critical grid
   Each plate frames the artwork uncropped on a subtle paper card.
   ------------------------------------------------------------------------- */
.plates {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px 32px;
}
.plate {
  grid-column: span 6;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform 0.4s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.plate:hover { transform: translateY(-4px); }
.plate.span-4 { grid-column: span 4; }
.plate.span-6 { grid-column: span 6; }
.plate.span-12 { grid-column: span 12; }

.plate .frame {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.plate:hover .frame {
  box-shadow: var(--shadow-lg), 0 0 40px -10px rgba(232, 167, 85, 0.25);
  border-color: var(--border);
}
.plate .frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(232, 167, 85, 0.08);
  border-radius: 4px;
  pointer-events: none;
}
.plate .frame img {
  width: 100%; height: auto;
  max-height: 620px;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  box-shadow: 0 6px 24px -8px rgba(0, 0, 0, 0.5);
}
.plate .meta {
  display: flex; align-items: baseline; gap: 12px;
  margin: 18px 4px 0;
}
.plate .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--amber);
  letter-spacing: 0.02em;
  min-width: 3.5ch;
}
.plate .name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink);
}
.plate .kind {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 6px 4px 0;
}

/* Statement plate (full-width heroic) */
.plate.statement .frame { padding: 32px; min-height: 480px; background: var(--paper-3); }
.plate.statement .frame img { max-height: 900px; }

/* Filter chips ------------------------------------------------------------ */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 0 0 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-soft);
}
.chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--ink-muted);
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  cursor: pointer;
}
.chip:hover { color: var(--ink); border-color: var(--border); }
.chip.active {
  background: var(--amber);
  color: #1A1206;
  border-color: var(--amber);
  font-weight: 600;
}

/* About split ------------------------------------------------------------- */
.about-band {
  padding: 120px var(--gutter);
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.about-inner {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: center;
}
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 32px;
  padding-left: 24px;
  border-left: 2px solid var(--amber);
}
.pull-quote em { color: var(--amber-glow); }
.about-body {
  color: var(--ink-muted);
  font-size: 17px; line-height: 1.75;
}
.about-body p + p { margin-top: 16px; }
.about-portrait {
  border-radius: 6px; overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--border-soft);
  padding: 16px;
  box-shadow: var(--shadow-lg);
}
.about-portrait img {
  width: 100%; height: auto;
  border-radius: 3px;
}
.signature-line {
  margin-top: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--amber-glow);
}

/* Timeline ---------------------------------------------------------------- */
.timeline { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 0 auto; }
.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-soft);
}
.timeline-item:last-child { border-bottom: 0; }
.timeline-year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--amber);
}
.timeline-body h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 4px;
}
.timeline-body p {
  font-size: 14px;
  color: var(--ink-muted);
  margin: 0;
}

/* Commissions process ---------------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.step { text-align: left; }
.step-num {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--amber);
  border-radius: 999px;
  color: var(--amber);
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  margin-bottom: 20px;
}
.step h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 12px;
}
.step p { color: var(--ink-muted); font-size: 15px; line-height: 1.6; }

/* Pricing table ---------------------------------------------------------- */
.pricing {
  max-width: 640px;
  margin: 0 auto;
  border-top: 1px solid var(--border-soft);
}
.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-soft);
  align-items: baseline;
}
.pricing-label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber); font-weight: 600;
}
.pricing-value {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}
.pricing-note {
  margin-top: 24px;
  color: var(--ink-muted);
  font-size: 14px; line-height: 1.6;
  max-width: 640px;
}

/* Artwork detail --------------------------------------------------------- */
.artwork-detail {
  padding: 80px var(--gutter) 100px;
}
.artwork-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-muted);
  font-size: 13px; letter-spacing: 0.04em;
  margin-bottom: 40px;
  transition: color 0.2s;
}
.artwork-back:hover { color: var(--amber-glow); }

.artwork-grid {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 64px; align-items: start;
}
.artwork-frame {
  background: var(--paper-2);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.artwork-frame::before {
  content: ""; position: absolute; inset: 12px;
  border: 1px solid rgba(232, 167, 85, 0.1);
  border-radius: 3px;
  pointer-events: none;
}
.artwork-frame img {
  width: 100%; height: auto;
  display: block; border-radius: 2px;
  box-shadow: 0 12px 44px -12px rgba(0, 0, 0, 0.6);
}

.artwork-info { position: sticky; top: 100px; }
.artwork-info .eyebrow { margin-bottom: 14px; }
.artwork-info h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 20px;
}
.artwork-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--amber-glow);
  margin: 0 0 32px;
}
.artwork-meta {
  border-top: 1px solid var(--border-soft);
  margin-bottom: 36px;
}
.artwork-meta-row {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  align-items: baseline;
}
.artwork-meta-label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 600;
}
.artwork-meta-value { color: var(--ink); font-size: 15px; }
.artwork-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.artwork-story {
  color: var(--ink-muted);
  font-size: 16px; line-height: 1.75;
}

/* More from the studio (mini strip) --------------------------------------- */
.more-strip {
  padding: 100px var(--gutter);
  background: var(--paper-2);
  border-top: 1px solid var(--border-soft);
}

/* -------------------------------------------------------------------------
   INQUIRY CARD — patterned on danishakeating.com/speaking
   ------------------------------------------------------------------------- */
.inquiry-section {
  padding: 120px var(--gutter) 140px;
  background: var(--paper);
}
.inquiry-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  padding: 56px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-lg);
}
.inquiry-card .eyebrow { color: var(--amber); }
.inquiry-card h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.02;
  margin: 0 0 18px;
}
.inquiry-card h2 em { font-style: italic; color: var(--amber-glow); }
.inquiry-card .lede {
  color: var(--ink-muted);
  font-size: 16.5px; line-height: 1.7;
  margin: 0 0 40px;
  max-width: 58ch;
}
.inquiry-card .lede a {
  color: var(--amber-glow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.subhead {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  color: var(--amber-glow);
  margin: 36px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
}
.subhead:first-of-type { margin-top: 0; }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 4px; }
.field label {
  display: block;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; color: var(--amber);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--paper-2);
}
.field textarea { min-height: 130px; resize: vertical; }
.field ::placeholder { color: rgba(167, 158, 141, 0.5); }
.field .err-msg {
  display: none;
  font-size: 12px;
  color: var(--danger);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.field.error .err-msg { display: block; }
.field.error input,
.field.error select,
.field.error textarea { border-color: var(--danger); }

.terms-box {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 30px;
  margin: 32px 0 24px;
}
.terms-box h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--amber-glow);
  margin: 0 0 16px;
}
.terms-box ul { list-style: none; padding: 0; margin: 0; }
.terms-box li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.terms-box li:last-child { margin-bottom: 0; }
.terms-box li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--amber);
  font-weight: 700;
}
.terms-box li strong { color: var(--ink); font-weight: 600; }

.checkbox-row {
  display: flex; gap: 12px; align-items: flex-start;
  margin: 20px 0 28px;
  font-size: 14.5px; color: var(--ink-muted);
  line-height: 1.55;
}
.checkbox-row input {
  accent-color: var(--amber);
  margin-top: 3px;
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.submit-row { text-align: center; margin-top: 8px; }
.submit-btn {
  background: var(--amber);
  color: #1A1206;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  padding: 18px 36px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.submit-btn:hover {
  background: var(--amber-glow);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -10px rgba(232, 167, 85, 0.5);
}
.form-success {
  display: none;
  padding: 40px;
  text-align: center;
  color: var(--ink);
}
.form-success.on { display: block; }
.form-success h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--amber-glow);
  margin-bottom: 12px;
}

/* Footer ------------------------------------------------------------------ */
.site-footer {
  padding: 64px var(--gutter) 32px;
  background: var(--paper-2);
  border-top: 1px solid var(--border-soft);
}
.footer-inner {
  max-width: var(--wrap); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
.foot-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--amber-glow);
  margin-bottom: 16px;
}
.foot-desc {
  color: var(--ink-muted);
  font-size: 14.5px;
  max-width: 32ch;
  line-height: 1.65;
}
.foot-col h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 6px 0 18px;
  font-weight: 600;
}
.foot-col a {
  display: block;
  color: var(--ink-muted);
  font-size: 14.5px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--amber-glow); }
.copyright {
  max-width: var(--wrap);
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: var(--ink-dim);
  letter-spacing: 0.02em;
}

/* -------------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 960px) {
  :root { --gutter: 22px; }
  .hero-inner,
  .about-inner,
  .artwork-grid,
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 60px var(--gutter) 60px; }
  .section, .about-band, .inquiry-section { padding: 64px var(--gutter); }
  .plates { grid-template-columns: 1fr; gap: 40px; }
  .plate,
  .plate.span-4,
  .plate.span-6,
  .plate.span-12 { grid-column: span 1; }
  .plate .frame { padding: 14px; min-height: 260px; }
  .plate.statement .frame { padding: 18px; min-height: 320px; }
  .plate .frame img { max-height: 480px; }
  .process { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .field-grid { grid-template-columns: 1fr; }
  .inquiry-card { padding: 32px 22px; }
  .hero-art { max-width: 540px; margin: 0 auto; }
  .about-portrait { max-width: 480px; margin: 0 auto; }
  .artwork-info { position: static; }
  .timeline-item { grid-template-columns: 70px 1fr; gap: 20px; }

  /* Persistent horizontal nav on tablet/mobile ----------------------------- */
  .menu-toggle,
  .drawer { display: none !important; }
  .site-header .nav {
    padding: 14px var(--gutter);
    gap: 12px;
    flex-wrap: nowrap;
  }
  .logo { font-size: 20px; gap: 8px; }
  .logo .dot { width: 6px; height: 6px; }
  .nav-links {
    display: flex;
    gap: 18px;
    font-size: 13px;
    letter-spacing: 0.01em;
  }
  .nav-links a { padding: 4px 0; }
  .site-header .btn { padding: 8px 16px; font-size: 12px; }
}

@media (max-width: 720px) {
  .site-header .nav { gap: 10px; }
  .logo { font-size: 17px; }
  /* Hide logo text on tight screens; keep dot as a mark */
  .logo { gap: 0; }
  .logo::after {
    content: "MM";
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    color: var(--amber-glow);
  }
  .logo > :not(.dot) { display: none; }
  .logo .dot { margin-right: 8px; }
  .nav-links { gap: 14px; font-size: 12.5px; }
  .site-header .btn { padding: 7px 14px; font-size: 11.5px; }
}

@media (max-width: 560px) {
  .process { grid-template-columns: 1fr; }
  .site-header .nav { padding: 12px 16px; gap: 8px; }
  .nav-links { gap: 11px; font-size: 12px; }
  /* Hide the Inquire pill — Contact is already in the nav */
  .site-header .btn { display: none; }
}

@media (max-width: 400px) {
  .logo::after { display: none; }
  .logo .dot { margin-right: 0; }
  .nav-links { gap: 9px; font-size: 11.5px; letter-spacing: 0; }
}

/* Mobile drawer overlay */
.drawer {
  position: fixed; inset: 0;
  background: rgba(11, 14, 31, 0.98);
  z-index: 50;
  padding: 80px 32px;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.drawer.on { display: flex; }
.drawer a {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--ink);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}
.drawer a:last-child { border-bottom: 0; }
.drawer .close {
  position: absolute; top: 20px; right: 22px;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}

/* Legal & FAQ pages ------------------------------------------------------ */
.legal {
  padding: 80px var(--gutter) 100px;
}
.legal-inner {
  max-width: 780px;
  margin: 0 auto;
}
.legal h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.legal h1 em { font-style: italic; color: var(--amber-glow); }
.legal .updated {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 48px;
}
.legal h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  color: var(--amber-glow);
  margin: 48px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-soft);
}
.legal h2:first-of-type { margin-top: 0; }
.legal h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  margin: 28px 0 10px;
}
.legal p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 16px;
}
.legal ul, .legal ol {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal li { margin-bottom: 10px; }
.legal li::marker { color: var(--amber); }
.legal strong { color: var(--ink); font-weight: 600; }
.legal a { color: var(--amber-glow); text-decoration: underline; text-underline-offset: 3px; }
.legal .callout {
  background: var(--paper-2);
  border-left: 3px solid var(--amber);
  border-radius: 6px;
  padding: 22px 26px;
  margin: 24px 0;
}
.legal .callout p:last-child { margin-bottom: 0; }
.legal .callout strong { color: var(--amber-glow); }
.legal .toc {
  background: var(--paper-2);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 20px 26px;
  margin: 0 0 48px;
}
.legal .toc h3 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin: 0 0 12px;
}
.legal .toc ol {
  margin: 0;
  padding-left: 20px;
  columns: 2;
  column-gap: 32px;
  font-size: 14.5px;
}
.legal .toc li { margin-bottom: 6px; }
.legal .toc a { color: var(--ink); text-decoration: none; }
.legal .toc a:hover { color: var(--amber-glow); }
@media (max-width: 640px) {
  .legal .toc ol { columns: 1; }
}

/* FAQ accordion ---------------------------------------------------------- */
.faq-list { margin: 32px 0 24px; }
.faq-item {
  border-top: 1px solid var(--border-soft);
}
.faq-item:last-child { border-bottom: 1px solid var(--border-soft); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--amber-glow); }
.faq-q .icon {
  width: 22px; height: 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  font-size: 14px;
  line-height: 1;
}
.faq-item[open] .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 0 24px;
  color: var(--ink-muted);
  font-size: 15.5px;
  line-height: 1.75;
}
.faq-a p { margin: 0 0 12px; color: var(--ink-muted); }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a { color: var(--amber-glow); text-decoration: underline; text-underline-offset: 3px; }

/* Reveal on scroll (progressive enhancement) */
html.js-reveal .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2,0.6,0.2,1); }
html.js-reveal .reveal.on { opacity: 1; transform: none; }
