/* Atelier — structure stylesheet. Colors come ONLY from var(--m-*) set in seasoning.css. */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--m-bg);
  color: var(--m-text);
  font-family: var(--m-font-body), system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--m-font-display), Georgia, serif; font-weight: 500; }

a { color: inherit; text-decoration: none; transition: color 0.18s ease, opacity 0.18s ease; }

.wrap { max-width: 1020px; margin: 0 auto; padding: 0 28px; }

/* ---- Mono label (contact-sheet voice) ---- */
.mono-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.12em; color: var(--m-faint);
}
.mono-label.lnk { color: var(--m-accent); }

/* ---- Navigation ---- */
.nav {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 30px 0 20px;
}
.logo {
  font-family: var(--m-font-display), Georgia, serif;
  font-size: 1.35rem; font-weight: 600; color: var(--m-heading);
  display: flex; flex-direction: column; gap: 1px;
}
.logo-line { font-family: 'IBM Plex Mono', monospace; font-size: 0.68rem; letter-spacing: 0.06em; color: var(--m-faint); font-weight: 400; }
.links { display: flex; gap: 24px; padding-top: 6px; }
.links a { font-size: 0.88rem; color: var(--m-soft); }
.links a:hover { color: var(--m-accent); }
.links a[aria-current="page"] { color: var(--m-heading); border-bottom: 1px solid var(--m-accent); padding-bottom: 2px; }

/* ---- Hero ---- */
.hero { padding: 74px 28px 54px; max-width: 780px; }
.hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1.16; color: var(--m-heading); }
.hero .intro { margin-top: 20px; max-width: 520px; color: var(--m-soft); }

/* ---- Contact sheet grid ---- */
.sheet { padding-bottom: 30px; }
.sheet-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 12px; border-bottom: 1px solid var(--m-line); margin-bottom: 22px;
}
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid .wide { grid-column: span 2; }
.shot { display: flex; flex-direction: column; }
.shot img {
  width: 100%; height: 300px; object-fit: cover; display: block;
  border: 1px solid var(--m-line); padding: 6px; background: var(--m-surface);
  transition: opacity 0.35s ease;
}
.shot img[loading="lazy"] { opacity: 1; }
.shot:hover img { opacity: 0.88; }
.shot figcaption {
  display: flex; justify-content: space-between; gap: 12px; margin-top: 8px;
  font-family: 'IBM Plex Mono', monospace; font-size: 0.68rem;
  letter-spacing: 0.08em; color: var(--m-faint);
}
.shot figcaption span:first-child { color: var(--m-accent); }
.grid.tall .shot img { height: 360px; }
.work-note { margin-top: 40px; max-width: 540px; font-size: 0.92rem; color: var(--m-soft); }
.work-note a { color: var(--m-accent); text-decoration: underline; text-underline-offset: 4px; }

/* ---- Offerings ---- */
.offers { background: var(--m-surface); padding: 60px 0; margin-top: 50px; }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.offer h3 { font-size: 1.3rem; color: var(--m-heading); }
.offer p { margin-top: 10px; font-size: 0.92rem; color: var(--m-soft); }

/* ---- Closing ---- */
.closing { padding: 76px 28px; max-width: 680px; }
.closing-line {
  font-family: var(--m-font-display), Georgia, serif;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem); line-height: 1.5; color: var(--m-heading);
}
.inquire-link {
  display: inline-block; margin-top: 26px; padding: 13px 30px;
  border: 1px solid var(--m-accent); color: var(--m-accent);
  font-size: 0.9rem; letter-spacing: 0.05em;
}
.inquire-link:hover { background: var(--m-accent); color: var(--m-bg); }

/* ---- Inner pages ---- */
.page { padding: 60px 0 80px; }
.page-title { font-size: clamp(1.9rem, 4.2vw, 2.7rem); color: var(--m-heading); line-height: 1.18; }
.page-lede { margin-top: 16px; color: var(--m-soft); max-width: 560px; }
.wrap.page .grid { margin-top: 40px; }

/* ---- Prose ---- */
.prose { max-width: 620px; margin: 0 auto; padding: 0 28px; }
.prose .page-title { margin-bottom: 30px; }
.prose p { margin-bottom: 22px; font-size: 1rem; color: var(--m-text); }
.pull {
  margin: 32px 0; padding-left: 22px; border-left: 2px solid var(--m-accent);
  font-family: var(--m-font-display), Georgia, serif;
  font-size: 1.4rem; font-style: italic; line-height: 1.5; color: var(--m-heading);
}
.sig { font-family: var(--m-font-display), Georgia, serif; font-style: italic; font-size: 1.3rem; color: var(--m-accent); }

/* ---- Inquire ---- */
.inquire-card { margin-top: 36px; border: 1px solid var(--m-line); background: var(--m-surface); }
.iq-row {
  display: flex; align-items: baseline; gap: 22px;
  padding: 16px 22px; border-top: 1px solid var(--m-line);
}
.iq-row:first-child { border-top: none; }
.iq-row .mono-label { min-width: 110px; }
.iq-val { font-family: var(--m-font-display), Georgia, serif; font-size: 1.15rem; color: var(--m-heading); }
.good-to-know { margin-top: 44px; }
.good-to-know h2 { font-size: 1.3rem; color: var(--m-heading); margin-bottom: 12px; }
.good-to-know p { font-size: 0.95rem; color: var(--m-soft); margin-bottom: 14px; }

/* ---- Footer ---- */
footer { border-top: 1px solid var(--m-line); padding: 30px 0; }
.foot { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }

@media (max-width: 820px) {
  .grid { grid-template-columns: 1fr 1fr; }
  .grid .wide { grid-column: span 2; }
  .offers-grid { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .grid .wide { grid-column: span 1; }
  .shot img, .grid.tall .shot img { height: 260px; }
  .links { gap: 14px; }
  .links a { font-size: 0.8rem; }
  .foot { flex-direction: column; gap: 6px; }
}
