/* HeyDoc.com — privately held brand asset (draft) */

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url("fonts/cormorant.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url("fonts/cormorant.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: block;
  src: url("fonts/cormorant-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url("fonts/outfit.woff2") format("woff2");
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("fonts/outfit.woff2") format("woff2");
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url("fonts/outfit.woff2") format("woff2");
}


:root {
  --navy: #0b1220;
  --navy-mid: #121a2b;
  --charcoal: #161e2e;
  --ink: #070b14;
  --cream: #f4efe6;
  --cream-soft: #e7e0d4;
  --muted: #b7b0a3;
  --muted-2: #8e877c;
  --gold: #c9a96a;
  --gold-bright: #d4b87a;
  --gold-dim: rgba(201, 169, 106, 0.28);
  --line: rgba(244, 239, 230, 0.12);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --sans: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  --wrap: min(1120px, calc(100% - 80px));
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.28) 0%, rgba(11, 18, 32, 0.08) 24%, rgba(11, 18, 32, 0.00) 52%, rgba(11, 18, 32, 0.28) 82%, rgba(11, 18, 32, 0.48) 100%),
    linear-gradient(90deg, rgba(11, 18, 32, 0.64) 0%, rgba(11, 18, 32, 0.40) 18%, rgba(11, 18, 32, 0.16) 32%, rgba(11, 18, 32, 0.03) 46%, rgba(11, 18, 32, 0.00) 100%),
    url("hero-atrium-glow.png") 62% 42% / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
  opacity: 0.055;
  mix-blend-mode: overlay;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--wrap);
  margin: 0 auto;
  padding: 32px 0 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-icon {
  height: 30px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand-mark {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--cream);
}

.draft-pill {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 8px 3px;
  border-radius: 1px;
}

.top-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-soft);
}

.top-meta a {
  text-decoration: none;
  color: var(--gold);
  letter-spacing: 0.16em;
}

.top-meta a:hover { color: var(--gold-bright); }

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 140px 0 92px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.wordmark {
  text-shadow: 0 2px 28px rgba(7, 11, 20, 0.45);
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(72px, 9.4vw, 118px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.88;
  color: var(--cream);
}

.url-lockup {
  margin: 18px 0 0;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: lowercase;
  color: var(--gold);
}

.hero-line {
  text-shadow: 0 2px 22px rgba(7, 11, 20, 0.4);
  margin: 36px 0 0;
  max-width: 14em;
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.15;
  color: var(--cream);
}

.hero-support {
  margin: 22px 0 0;
  max-width: 42ch;
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--cream-soft);
}

.hero-who {
  margin: 18px 0 0;
  max-width: 46ch;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.55;
  color: var(--gold);
}

.kpi-word {
  font-size: 34px;
  letter-spacing: -0.02em;
}

.kpi-note {
  margin: 12px 0 0;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--cream-soft);
  letter-spacing: 0;
  text-transform: none;
}

html[data-bg="office"] .hero {
  background-image:
    linear-gradient(180deg, rgba(11, 18, 32, 0.55) 0%, rgba(11, 18, 32, 0.18) 22%, rgba(11, 18, 32, 0.08) 48%, rgba(11, 18, 32, 0.72) 78%, rgba(11, 18, 32, 0.96) 100%),
    linear-gradient(95deg, rgba(11, 18, 32, 0.88) 0%, rgba(11, 18, 32, 0.62) 34%, rgba(11, 18, 32, 0.18) 58%, rgba(11, 18, 32, 0.42) 100%),
    url("hero-office.png");
}
html[data-bg="atrium-night"] .hero {
  background-image:
    linear-gradient(180deg, rgba(11, 18, 32, 0.55) 0%, rgba(11, 18, 32, 0.18) 22%, rgba(11, 18, 32, 0.08) 48%, rgba(11, 18, 32, 0.72) 78%, rgba(11, 18, 32, 0.96) 100%),
    linear-gradient(95deg, rgba(11, 18, 32, 0.88) 0%, rgba(11, 18, 32, 0.62) 34%, rgba(11, 18, 32, 0.18) 58%, rgba(11, 18, 32, 0.42) 100%),
    url("hero-atrium.png");
}
html[data-bg="consult"] .hero {
  background-image:
    linear-gradient(180deg, rgba(11, 18, 32, 0.22) 0%, rgba(11, 18, 32, 0.05) 26%, rgba(11, 18, 32, 0.00) 50%, rgba(11, 18, 32, 0.30) 80%, rgba(11, 18, 32, 0.50) 100%),
    linear-gradient(90deg, rgba(11, 18, 32, 0.62) 0%, rgba(11, 18, 32, 0.38) 16%, rgba(11, 18, 32, 0.14) 30%, rgba(11, 18, 32, 0.02) 48%, rgba(11, 18, 32, 0.00) 100%),
    url("hero-consult.png");
}
html[data-bg="atrium"] .hero {
  background-image:
    linear-gradient(180deg, rgba(11, 18, 32, 0.22) 0%, rgba(11, 18, 32, 0.05) 26%, rgba(11, 18, 32, 0.00) 50%, rgba(11, 18, 32, 0.30) 80%, rgba(11, 18, 32, 0.50) 100%),
    linear-gradient(90deg, rgba(11, 18, 32, 0.62) 0%, rgba(11, 18, 32, 0.38) 16%, rgba(11, 18, 32, 0.14) 30%, rgba(11, 18, 32, 0.02) 48%, rgba(11, 18, 32, 0.00) 100%),
    url("hero-atrium-human.png");
}
html[data-bg="atrium-human"] .hero {
  background-image:
    linear-gradient(180deg, rgba(11, 18, 32, 0.22) 0%, rgba(11, 18, 32, 0.05) 26%, rgba(11, 18, 32, 0.00) 50%, rgba(11, 18, 32, 0.30) 80%, rgba(11, 18, 32, 0.50) 100%),
    linear-gradient(90deg, rgba(11, 18, 32, 0.62) 0%, rgba(11, 18, 32, 0.38) 16%, rgba(11, 18, 32, 0.14) 30%, rgba(11, 18, 32, 0.02) 48%, rgba(11, 18, 32, 0.00) 100%),
    url("hero-atrium-human.png");
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding: 15px 26px 14px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.cta:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.cta span.em {
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: 13px;
}

/* ——— KPI ——— */
.kpis {
  background: var(--ink);
  padding: 36px 0 12px;
  position: relative;
  z-index: 2;
}

.kpi-grid {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.kpi {
  background: linear-gradient(180deg, rgba(22, 30, 46, 0.96), rgba(11, 18, 32, 0.96));
  border: 1px solid var(--gold-dim);
  padding: 36px 36px 34px;
  min-height: 168px;
}

.kpi-figure {
  margin: 0;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--cream);
}

.kpi-label {
  margin: 14px 0 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ——— Texture band ——— */
.band {
  position: relative;
  height: 168px;
  margin-top: 72px;
  background:
    linear-gradient(90deg, rgba(11, 18, 32, 0.55) 0%, rgba(11, 18, 32, 0.12) 40%, rgba(11, 18, 32, 0.35) 100%),
    url("band.png") center / cover no-repeat;
}

.band::before,
.band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-dim);
}

.band::before { top: 0; }
.band::after { bottom: 0; }

.band-caption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: var(--wrap);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 12px rgba(11, 18, 32, 0.65);
}

/* ——— Sections ——— */
.section {
  padding: 108px 0 24px;
}

.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  width: var(--wrap);
  margin: 0 auto;
}

.kicker {
  margin: 8px 0 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 52px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--cream);
}

.lede {
  margin: 22px 0 0;
  max-width: 46ch;
  font-size: 18.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream-soft);
}

.asset-rule {
  width: var(--wrap);
  margin: 48px auto 0;
  border: 0;
  border-top: 1px solid var(--line);
}

/* ——— Why ——— */
.why {
  padding: 88px 0 40px;
}

.why-grid {
  width: var(--wrap);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--navy-mid);
  border: 1px solid var(--line);
  border-top: 1px solid var(--gold);
  padding: 36px 32px 40px;
  min-height: 320px;
}

.card-index {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.card h3 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.card p {
  margin: 16px 0 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

.card .source {
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ——— Partner ——— */
.partner {
  padding: 96px 0 120px;
}

.partner-panel {
  width: var(--wrap);
  margin: 0 auto;
  padding: 64px 72px;
  background:
    linear-gradient(180deg, rgba(18, 26, 43, 0.65), rgba(11, 18, 32, 0.85)),
    url("band.png") 50% 62% / cover no-repeat;
  border: 1px solid var(--gold-dim);
  position: relative;
}

.partner-panel .kicker { margin-top: 0; }

.partner-copy {
  margin: 18px 0 0;
  max-width: 52ch;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream-soft);
}

.partner-panel .cta { margin-top: 32px; }

/* ——— Footer ——— */
footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
  background: var(--ink);
}

.foot {
  width: var(--wrap);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: baseline;
}

.foot p {
  margin: 0;
  max-width: 62ch;
  font-size: 12px;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: var(--muted-2);
}

.foot-mark {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--cream-soft);
  white-space: nowrap;
}

/* ——— Mobile ——— */
@media (max-width: 900px) {
  :root { --wrap: min(1120px, calc(100% - 40px)); }

  .topbar { padding-top: 22px; }
  .top-meta { display: none; }
  .hero-inner { padding: 120px 0 64px; }
  .wordmark { font-size: 72px; }
  .hero-line { max-width: none; font-size: 30px; }

  .kpi-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .kpi { min-height: 0; padding: 28px 28px 26px; }
  .kpi-figure { font-size: 40px; }

  .band { height: 110px; margin-top: 48px; }
  .band-caption { flex-direction: column; gap: 10px; text-align: center; }

  .section { padding-top: 72px; }
  .section-head { grid-template-columns: 1fr; gap: 12px; }
  .card { min-height: 0; }

  .partner { padding: 56px 0 80px; }
  .partner-panel { padding: 40px 28px; }

  .foot { flex-direction: column; gap: 14px; }
}

@media (max-width: 480px) {
  .wordmark { font-size: 58px; }
  .url-lockup { letter-spacing: 0.22em; }
  .cta { width: 100%; justify-content: center; }
}

/* Mid-page screenshot helper: index.html?shot=mid */
html.shot-mid .hero {
  min-height: 0;
  height: 0;
  overflow: hidden;
}
html.shot-mid .hero-inner,
html.shot-mid .topbar {
  display: none;
}
html.shot-mid .kpis { padding-top: 48px; }
