/* BRECKORP STUDIO corporate one-pager.
   Visual language inherited from the studio's product work: iOS semantic surfaces,
   system font stack, theme-aware light/dark. Sober by design — this page states who
   the company is; the products speak on their own pages. */

:root {
  /* Semantic surfaces (iOS light) */
  --bg: #FFFFFF;
  --surface-2: #F2F2F7;
  --ink: #000000;
  --ink-2: rgba(60, 60, 67, 0.6);
  --ink-3: rgba(60, 60, 67, 0.3);
  --hairline: rgba(60, 60, 67, 0.18);
  --btn-fill: #000000;
  --btn-text: #FFFFFF;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000000;
    --surface-2: #1C1C1E;
    --ink: #FFFFFF;
    --ink-2: rgba(235, 235, 245, 0.6);
    --ink-3: rgba(235, 235, 245, 0.3);
    --hairline: rgba(84, 84, 88, 0.6);
    --btn-fill: #FFFFFF;
    --btn-text: #000000;
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body { background: var(--bg); }
.page {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.35;
  min-height: 100vh;
  display: flex; flex-direction: column;
  overflow-x: hidden;
}
.wrap { width: 100%; max-width: 760px; margin: 0 auto; padding: 0 26px; flex: 1; display: flex; flex-direction: column; }

/* ---------- HERO ---------- */
.hero { padding: 120px 0 72px; }
.brand { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; color: var(--ink-2); }
.tagline { font-size: 46px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.06; margin-top: 18px; }
.subhead { font-size: 18px; color: var(--ink-2); margin-top: 20px; max-width: 46ch; }

/* ---------- SECTIONS ---------- */
.section { padding: 0 0 56px; }
.section-title { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 18px; }

/* Work — horizontal snap row, carousel-ready (one card today, more later) */
.work-row {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(340px, 86%);
  gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 6px; scrollbar-width: none;
}
.work-row::-webkit-scrollbar { display: none; }
.work-card {
  scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 8px;
  background: var(--surface-2); border-radius: 18px; padding: 22px;
  text-decoration: none; color: var(--ink);
  transition: opacity 0.15s ease;
}
.work-card:hover { opacity: 0.85; }
.work-name { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.work-desc { font-size: 15px; color: var(--ink-2); }
.work-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600; margin-top: 8px;
}
.work-link svg { width: 14px; height: 14px; }

/* Contact — same primary-button language as the products */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  height: 50px; border: none; border-radius: 14px; cursor: pointer;
  background: var(--btn-fill); color: var(--btn-text); text-decoration: none;
  font-size: 16px; font-weight: 600; font-family: inherit;
  padding: 0 22px; white-space: nowrap; transition: opacity 0.15s ease;
}
.btn-primary:hover { opacity: 0.85; }
.btn-primary:active { opacity: 0.7; }

/* ---------- FOOTER / LEGAL ---------- */
.footer {
  margin-top: auto;
  border-top: 1px solid var(--hairline); padding: 26px 0 40px;
  font-size: 12.5px; color: var(--ink-3); line-height: 1.6;
}
.legal-title { font-weight: 700; color: var(--ink-2); margin-bottom: 6px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 720px) {
  .hero { padding: 84px 0 56px; }
  .tagline { font-size: 36px; }
  .btn-primary { width: 100%; }
}
