/* Monni — Lookbook One
   No stock photography was available for this build, so the art direction is
   carried entirely by type, space and rule-work. That is a deliberate choice,
   not a placeholder: an editorial fashion label lives or dies on typography. */

:root {
  --ink: #14120f;
  --paper: #f4f1ea;
  --bone: #e8e3d8;
  --clay: #b4593a;
  --mist: #6f6a61;
  --rule: rgba(20, 18, 15, 0.14);

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: "Helvetica Neue", Helvetica, Inter, system-ui, -apple-system, sans-serif;

  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --measure: 62ch;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration-color: var(--rule); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

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

/* ── Type ─────────────────────────────────────────────────────────────── */

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.9rem, 9.5vw, 8rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin: 0;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; margin: 0 0 0.4em; }

.lede { font-size: clamp(1.05rem, 1.6vw, 1.28rem); line-height: 1.55; color: var(--ink); }

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  margin: 0 0 1.1rem;
  font-weight: 500;
}

.quiet { color: var(--mist); font-size: 0.95rem; }

/* ── Header ───────────────────────────────────────────────────────────── */

.site-head {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}

.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 62px;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav { display: flex; gap: clamp(0.9rem, 2.4vw, 2rem); align-items: center; }
.site-nav a {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; padding: 0.35rem 0; border-bottom: 1px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { border-bottom-color: var(--ink); }
.site-nav .nav-cta { border: 1px solid var(--ink); padding: 0.45rem 0.9rem; border-radius: 999px; }
.site-nav .nav-cta:hover { background: var(--ink); color: var(--paper); }

@media (max-width: 720px) {
  .site-nav a:not(.nav-cta):not(:last-child) { display: none; }
}

/* ── Hero ─────────────────────────────────────────────────────────────── */

.hero { padding-block: clamp(4rem, 13vw, 11rem) clamp(3rem, 8vw, 6rem); }
.hero .lede { margin-top: 2rem; max-width: 46ch; }

.hero-mark {
  margin-top: clamp(2.5rem, 7vw, 5rem);
  border-top: 1px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.hero-mark > div { padding: 1.1rem 0; border-bottom: 1px solid var(--rule); }
.hero-mark dt { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mist); }
.hero-mark dd { margin: 0.3rem 0 0; font-family: var(--serif); font-size: 1.15rem; }

/* ── Sections ─────────────────────────────────────────────────────────── */

section { padding-block: clamp(3rem, 8vw, 6.5rem); }
section + section { border-top: 1px solid var(--rule); }
.section-head { margin-bottom: clamp(2rem, 5vw, 3.5rem); }

.split { display: grid; gap: clamp(1.75rem, 5vw, 4rem); grid-template-columns: 1fr; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; align-items: start; } }

/* ── Lookbook grid ────────────────────────────────────────────────────── */

.look-grid { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
@media (min-width: 640px) { .look-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .look-grid { grid-template-columns: repeat(3, 1fr); } }

.look {
  background: var(--paper);
  padding: 1.6rem 1.4rem 1.9rem;
  display: flex; flex-direction: column; min-height: 230px;
  transition: background 160ms ease;
}
.look:hover { background: var(--bone); }
.look-no { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--mist); }
.look h3 { font-size: 1.45rem; margin: 0.6rem 0 0.3rem; }
.look p { margin: 0; color: var(--mist); font-size: 0.93rem; }
.look .tag {
  margin-top: auto; padding-top: 1.2rem;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay);
}

/* ── Forms ────────────────────────────────────────────────────────────── */

.field { margin-bottom: 1.1rem; }
label { display: block; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mist); margin-bottom: 0.45rem; }

input, textarea {
  width: 100%; padding: 0.8rem 0.9rem;
  font: inherit; font-size: 1rem;
  color: var(--ink); background: transparent;
  border: 1px solid var(--rule); border-radius: 2px;
}
input:focus, textarea:focus { outline: 2px solid var(--ink); outline-offset: 1px; border-color: transparent; }
textarea { min-height: 150px; resize: vertical; }

.btn {
  display: inline-block; cursor: pointer;
  font: inherit; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.9rem 1.7rem;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink); border-radius: 999px;
  transition: background 140ms ease, color 140ms ease;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn--ghost { background: transparent; color: var(--ink); }

.note { font-size: 0.92rem; margin-top: 1rem; padding: 0.8rem 1rem; border-left: 2px solid var(--ink); background: var(--bone); }
.note[data-tone="error"] { border-left-color: var(--clay); }
.note[data-tone="ok"] { border-left-color: #3f6b4a; }
.note:empty { display: none; }

/* ── Dashboard ────────────────────────────────────────────────────────── */

.panel { border: 1px solid var(--rule); background: var(--paper); padding: clamp(1.25rem, 3vw, 2rem); }
.panel + .panel { margin-top: 1.25rem; }
.stat { font-family: var(--serif); font-size: clamp(2.4rem, 7vw, 4rem); line-height: 1; }

.enquiry { border-top: 1px solid var(--rule); padding: 1.1rem 0; }
.enquiry:first-of-type { border-top: 0; }
.enquiry-head { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; flex-wrap: wrap; }
.enquiry-meta { font-size: 0.78rem; color: var(--mist); }

.badge {
  display: inline-block; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.25rem 0.55rem; border: 1px solid var(--rule); border-radius: 999px; color: var(--mist);
}

/* ── Footer ───────────────────────────────────────────────────────────── */

.site-foot { border-top: 1px solid var(--rule); padding-block: 2.5rem 3.5rem; margin-top: 2rem; }
.foot-grid { display: grid; gap: 1.75rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr; } }
.site-foot a { display: block; font-size: 0.92rem; margin-bottom: 0.4rem; }
.site-foot h4 { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mist); margin: 0 0 0.9rem; }
