/* ===========================================================
   STUDIO BOO DESIGN — base styles (public site)
   =========================================================== */

:root {
  --paper:   #f3eee5;        /* warm ivory */
  --paper-2: #ece5d8;        /* slightly deeper card ground */
  --ink:     #2a241d;        /* warm near-black */
  --ink-soft:#5c5347;        /* muted brown-grey */
  --line:    #d8cfbf;        /* hairline */
  --clay:    #a98a68;        /* wood / clay accent */
  --frame:   #fbf8f2;        /* white-ish photo frame */

  /* Reference feel: one refined neo-grotesque across display + UI. */
  --serif: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  --sans:  "Helvetica Neue", "Helvetica", "Arial", sans-serif;

  --maxw: 1320px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#boo-root { min-height: 100vh; background: var(--paper); }

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

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--clay); color: var(--paper); }

/* cover image + quiet placeholder used wherever the prototype had a slot */
img.cover { width: 100%; height: 100%; object-fit: cover; }
.img-empty { display: block; width: 100%; height: 100%; background: var(--paper-2); }
.slot-wrap { position: relative; }

/* ---------- Typographic primitives ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 11px;
  color: var(--ink-soft);
}
.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.serif { font-family: var(--serif); }

/* ---------- App shell ---------- */
.boo-app { min-height: 100vh; display: flex; flex-direction: column; }

/* Header */
.boo-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 54px);
}
.boo-header.is-light { color: #f5f1ea; }
.boo-header.is-dark  { color: var(--ink); }
.boo-header.is-solid {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--line) 60%, transparent);
}

.boo-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.boo-mark {
  width: 38px; height: 38px; flex: none;
  background-color: currentColor;
  -webkit-mask: url("/img/mark.png") center / contain no-repeat;
          mask: url("/img/mark.png") center / contain no-repeat;
}

.boo-nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 40px); }
.boo-nav a {
  background: none; border: none; color: inherit; padding: 4px 0;
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase;
  opacity: .82; position: relative; white-space: nowrap;
}
.boo-nav a:hover { opacity: 1; }
.boo-nav a .ul {
  position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px;
  background: currentColor; transition: right .35s ease;
}
.boo-nav a:hover .ul { right: 0; }
.boo-nav a.active { opacity: 1; }
.boo-nav a.active .ul { right: 0; }

/* page body */
.boo-page { flex: 1; }

/* footer */
.boo-footer {
  border-top: 1px solid var(--line);
  padding: 46px clamp(20px, 4vw, 54px) 40px;
  display: flex; flex-wrap: wrap; gap: 24px 48px;
  align-items: flex-end; justify-content: space-between;
  color: var(--ink-soft);
}
.boo-footer .fcol h4 {
  font-family: var(--sans); font-size: 10px; letter-spacing: .28em;
  text-transform: uppercase; margin: 0 0 10px; color: var(--ink);
}
.boo-footer .fcol p { margin: 2px 0; font-size: 14px; }
.boo-footer .fcol p a:hover { color: var(--ink); }
.boo-footer .fbrand { font-family: var(--serif); font-size: 30px; color: var(--ink); }
.boo-footer .admin-link {
  font-size: 12px; letter-spacing: .04em; color: var(--ink-soft);
  border-bottom: 1px solid var(--line); padding-bottom: 1px; transition: color .25s, border-color .25s;
}
.boo-footer .admin-link:hover { color: var(--ink); border-color: var(--clay); }

/* scrollbars hidden but scrollable */
.no-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }
