/* ===========================================================================
   styles.css - ONE shared stylesheet for every page. Edit the whole site's
   look here. Tokens live in :root; swap them to rebrand without touching markup.
   Type is an explicit 8-step scale; spacing follows a 4px base.
   =========================================================================== */
:root {
  --bone: #f4efe4;
  --ink: #211d18;
  --muted: #574e42;
  --accent: #2f5238;
  --accent-soft: #d8b878;
  --deep: #233027;
  --measure: 38rem;          /* readable line length */
  --gap: 1rem;
  --gap-2: 1.5rem;
  --gap-3: 2rem;
  --gap-4: 3rem;
  --gap-5: 4.5rem;
  --edge: clamp(1.25rem, 5vw, 4rem);
  --rule: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body: 'Mulish', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background-color: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- type: explicit 8-step scale -> 13 / 16 / 18 / 22 / 28 / 32 / 40 / 56 px ---- */
h1 { font-family: var(--font-display); font-weight: 700; font-size: 2.5rem;
     line-height: 1.05; letter-spacing: -0.01em; margin: 0 0 1rem; color: var(--ink); }
h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.75rem;
     line-height: 1.15; margin: 0 0 0.75rem; color: var(--ink); }
h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.375rem;
     line-height: 1.25; margin: 0 0 0.5rem; color: var(--ink); }
p  { margin: 0 0 1rem; max-width: var(--measure); }
.lede { font-size: 1.375rem; line-height: 1.5; color: var(--muted); max-width: 34rem; }
.kicker { font-family: var(--font-body); text-transform: uppercase;
          letter-spacing: 0.16em; font-size: 0.8125rem; font-weight: 700;
          color: var(--accent); margin: 0 0 0.75rem; }
.measure { max-width: var(--measure); }

/* ---- links & buttons (hover + focus on everything interactive) ---- */
a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px;
    text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--accent); outline-offset: 2px;
}
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; background-color: var(--ink); color: var(--bone);
              padding: 0.5rem 1rem; z-index: 10; text-decoration: none; }

.btn {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  font-size: 1rem; text-decoration: none; cursor: pointer;
  background-color: var(--accent); color: var(--bone);
  border: 2px solid var(--accent); border-radius: 2px;
  padding: 0.75rem 1.5rem; transition: transform .12s ease, background-color .12s ease;
}
.btn:hover { transform: translateY(-2px); background-color: #211d18; border-color: #211d18; color: var(--bone); }

/* ---- layout chrome ---- */
.site-head {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  padding: 1.25rem var(--edge); border-bottom: var(--rule);
}
.wordmark { font-family: var(--font-display); font-weight: 700; font-size: 1.375rem;
            color: var(--ink); text-decoration: none; letter-spacing: -0.01em; }
.site-head nav ul { display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 0; padding: 0; list-style: none; }
.site-head nav a { color: var(--ink); text-decoration: none; font-weight: 500; }
.site-head nav a:hover { color: var(--accent); }

main { display: block; }
section { padding: var(--gap-5) var(--edge); border-bottom: var(--rule); }

/* asymmetric masthead - deliberately NOT a centered hero */
.masthead { display: grid; grid-template-columns: 3fr 2fr; gap: var(--gap-4); align-items: start; }
.masthead-lead { min-width: 0; }
.masthead-aside { min-width: 0; }
.facts { margin: 0; border-left: 3px solid var(--accent); padding-left: 1.25rem; }
.facts dt { font-weight: 700; font-size: 0.8125rem; text-transform: uppercase;
            letter-spacing: 0.08em; color: var(--muted); margin-top: 1rem; }
.facts dd { margin: 0.25rem 0 0; font-family: var(--font-display); font-size: 1.125rem; }

.band-quiet { background-color: color-mix(in srgb, var(--accent) 8%, var(--bone)); }

/* reflowing list - auto-fit, never a fixed 3-col card grid */
.reflow { list-style: none; margin: 0; padding: 0; display: grid;
          grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: var(--gap-3); }
.reflow-wide { grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); }
.reflow li { padding: 1.5rem; border: var(--rule); border-radius: 3px;
             background-color: color-mix(in srgb, var(--bone) 60%, #ffffff); }
.reflow p { margin-bottom: 0; }

.split { display: grid; grid-template-columns: 3fr 2fr; gap: var(--gap-4); align-items: start; }
.side-note { border-top: 3px solid var(--accent); padding-top: 1rem; }
.ticks { margin: 0; padding-left: 1rem; }
.ticks li { margin-bottom: 0.5rem; }

/* dark invitation band - light text RESTATES the dark background in-rule */
.invite { background-color: var(--deep); }
.invite h2 { color: #f4efe4; background-color: var(--deep); }
.invite p  { color: #f4efe4; background-color: var(--deep); max-width: var(--measure); }
.btn-on-dark { background-color: var(--accent-soft); color: #233027; border-color: var(--accent-soft); }
.btn-on-dark:hover { background-color: #f4efe4; border-color: #f4efe4; color: #233027; }

.page-intro { padding-top: var(--gap-5); }

/* contact - fields are unclassed <p> styled via parent>child */
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: var(--gap-4); align-items: start; }
.contact-form { display: grid; gap: var(--gap-2); max-width: 32rem; }
.contact-form p { margin: 0; display: grid; gap: 0.5rem; max-width: none; }
.contact-form label { font-weight: 700; font-size: 1rem; }
.form-note { background-color: color-mix(in srgb, var(--accent) 12%, var(--bone));
             border: var(--rule); border-left: 3px solid var(--accent);
             padding: 0.75rem 1rem; font-size: 1rem; color: var(--ink); }
input, select, textarea {
  font: inherit; color: var(--ink); background-color: #ffffff;
  border: 1px solid color-mix(in srgb, var(--ink) 28%, transparent);
  border-radius: 2px; padding: 0.5rem 0.75rem; width: 100%;
}
.contact-aside { border-left: 3px solid var(--accent); padding-left: 1.25rem; }

/* footer - light text RESTATES the dark background in-rule */
.site-foot { background-color: var(--deep); color: #f4efe4; padding: var(--gap-4) var(--edge); border-bottom: none; }
.site-foot p { color: #f4efe4; background-color: var(--deep); max-width: none; margin: 0 0 0.5rem; }
.foot-mark { font-family: var(--font-display); font-size: 1.375rem; font-weight: 600; }
.foot-contact a { color: #d8b878; background-color: var(--deep); }
.foot-fine { color: #d8b878; background-color: var(--deep); font-size: 0.8125rem; }

/* ---- responsive: collapse to one column, scale display type up on wide ---- */
@media (max-width: 720px) {
  .masthead, .split, .contact-grid { grid-template-columns: 1fr; }
  section { padding-top: var(--gap-4); padding-bottom: var(--gap-4); }
}
@media (min-width: 1000px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* ===========================================================================
   Mirror Images — distinctive identity layered on the floor.
   Aged-stone cream, botanical green, candlelit wheat-gold; Newsreader + Mulish.
   =========================================================================== */

/* botanical sprig — a small hand-drawn signature mark (decorative, path only) */
.sprig { display: block; width: 2.5rem; height: auto; margin: 0 0 1.25rem; color: var(--accent); }

/* masthead aside reads as a small stone "ledger card" */
.facts { background-color: color-mix(in srgb, var(--accent) 6%, var(--bone)); padding: 1.25rem 1.25rem 1.5rem; }

/* pull-quote band — the studio's warmth, on a soft botanical tint */
.pullquote { background-color: color-mix(in srgb, var(--accent) 9%, var(--bone)); }
.pullquote blockquote { margin: 0; max-width: 46rem; }
.pullquote blockquote p { font-family: var(--font-display); font-style: italic;
  font-size: 1.75rem; line-height: 1.3; color: var(--ink); margin: 0 0 1rem; max-width: none; }
.pullquote cite { font-style: normal; font-family: var(--font-body); font-weight: 700;
  font-size: 1rem; letter-spacing: 0.04em; color: var(--muted); }

/* service / price ledger — leader rows; children are unclassed (no card tell) */
.ledger { margin: 0 0 1.5rem; padding: 0; max-width: 46rem; }
.ledger > div { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.25rem 1.5rem;
  padding: 1rem 0; border-bottom: var(--rule); }
.ledger > div:first-child { border-top: var(--rule); }
.ledger > div > dt { flex: 1 1 18rem; margin: 0; }
.ledger > div > dt strong { display: block; font-family: var(--font-display);
  font-weight: 600; font-size: 1.375rem; line-height: 1.2; color: var(--ink); }
.ledger > div > dt span { font-size: 1rem; color: var(--muted); }
.ledger > div > dd { margin: 0; font-family: var(--font-display); font-weight: 600;
  font-size: 1.375rem; color: var(--accent); white-space: nowrap; }
.menu-note { max-width: 46rem; border-left: 3px solid var(--accent);
  padding: 0.25rem 0 0.25rem 1.25rem; color: var(--muted); }

/* gallery — framed spaces ready for the studio's own real photos (no stock/AI) */
.frames { list-style: none; margin: 0; padding: 0; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: var(--gap-3); }
.frames > figure { margin: 0; }
.frames > figure > div { aspect-ratio: 4 / 5; display: flex; align-items: flex-end;
  padding: 1rem; border: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
  background-color: color-mix(in srgb, var(--accent) 10%, var(--bone)); }
.frames > figure > div span { font-family: var(--font-body); font-weight: 700;
  font-size: 1rem; letter-spacing: 0.04em; color: var(--ink); }
.frames > figure figcaption { margin-top: 0.75rem; font-size: 1rem; color: var(--muted); }
