/* ─────────────────────────────────────────────────────────────
   Azaro Holdings — production stylesheet
   Locked design tokens. Do not introduce additional colors,
   weights, or motion. See BRAND.md for the rules of restraint.
   ───────────────────────────────────────────────────────────── */

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url("/fonts/cormorant-garamond-regular.woff2") format("woff2");
}

:root {
  /* Palette — three colors total. Nothing else. */
  --bg:        #FAFAF7;          /* off-white */
  --ink:       #0A1929;          /* deep navy, near-black */
  --ink-soft:  rgba(10,25,41,.62);
  --ink-faint: rgba(10,25,41,.62);
  --rule:      rgba(10,25,41,.14);

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Layout */
  --measure: 720px;
  --pad-y:   clamp(96px, 14vh, 168px);
  --pad-x:   clamp(24px, 6vw, 72px);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

html { background: var(--bg); color: var(--ink); }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}

::selection { background: rgba(10,25,41,.10); color: var(--ink); }

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}
a:hover  { border-bottom-color: var(--ink); }
a:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
  border-bottom-color: transparent;
}

/* ── Page shell ──────────────────────────────────────────── */
.page {
  min-height: 100vh;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
}
.container {
  width: 100%;
  max-width: var(--measure);
  margin-inline: auto;
}

/* ── Hero / Identity ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .container { text-align: center; }

.wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 76px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
  margin: 0;
  line-height: 1.04;
}

.tagline {
  margin: 36px 0 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ── Sections ────────────────────────────────────────────── */
section + section { border-top: 1px solid var(--rule); }
.section          { padding: var(--pad-y) 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--rule);
}

.prose {
  font-size: 18px;
  line-height: 1.62;
  color: var(--ink);
  max-width: 56ch;
  margin: 0 auto;
}

/* ── Companies (when enabled) ────────────────────────────── */
.portfolio-list { list-style: none; margin: 0; padding: 0; }
.portfolio-list li {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}
.portfolio-list li:first-child { border-top: 1px solid var(--rule); }

/* ── Correspondence ──────────────────────────────────────── */
.contact-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.contact-email {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 400;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  display: inline-block;
  width: fit-content;
}
.contact-email:hover { border-bottom-color: var(--ink); }
.contact-meta {
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin: 0;
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  margin-top: auto;
  padding: 48px 0 56px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
footer .legal { font-weight: 500; }
footer .conf {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.04em;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 640px) {
  :root { --pad-y: 88px; --pad-x: 24px; }
  .wordmark         { font-size: 36px; letter-spacing: 0.14em; }
  .portfolio-list li{ font-size: 22px; padding: 18px 0; }
  .prose            { font-size: 16px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
