/* ==========================================================================
   Halden & Co. — isolated demo site
   No Tailwind, no shared CSS. All class names prefixed with `h-`.
   ========================================================================== */

/* ---------- fonts ---------- */
@font-face {
  font-family: "Umbara";
  src: url("fonts/Umbara.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mozilla Text";
  src: url("fonts/MozillaText.ttf") format("truetype-variations"),
       url("fonts/MozillaText.ttf") format("truetype");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  --h-cream:        #ece4d4;   /* page background — warm parchment */
  --h-cream-soft:   #f3ede0;   /* lighter card / panel */
  --h-cream-deep:   #ddd2bd;   /* divider / muted */
  --h-ink:          #1b1814;   /* primary text */
  --h-ink-soft:     #4a4239;   /* secondary text */
  --h-ink-mute:     #7a6f60;   /* tertiary text / eyebrow */
  --h-line:         #c8bca4;   /* hairline */
  --h-accent:       #8a3a23;   /* brick red (restrained) */
  --h-accent-warm:  #b87545;   /* warmer terracotta */
  --h-dark:         #1b1814;
  --h-dark-soft:    #2b2620;

  --h-radius:       2px;
  --h-shadow:       0 24px 60px -28px rgba(27, 24, 20, 0.35);

  --h-serif:  "Umbara", "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --h-text:   "Mozilla Text", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- reset (scoped enough for an isolated page) ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--h-cream);
  color: var(--h-ink);
  font-family: var(--h-text);
  font-weight: 380;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

/* page grain texture (used by background of body via overlay) */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.07;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.10 0 0 0 0 0.09 0 0 0 0 0.07 0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* shared building blocks --------------------------------------------------- */
.h-eyebrow {
  font-family: var(--h-text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--h-ink-mute);
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.h-eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--h-ink-mute);
  display: inline-block;
}
.h-eyebrow--light, .h-eyebrow--light::before { color: rgba(243, 237, 224, 0.72); background-color: rgba(243, 237, 224, 0.5); }

.h-h2 {
  font-family: var(--h-serif);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--h-ink);
  margin: 0 0 28px;
}
.h-h2 em { font-style: italic; color: var(--h-accent); font-weight: 400; }

.h-section-head {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
  padding: 0 24px;
}
.h-section-head--left { text-align: left; margin-left: 0; }
.h-section-head .h-eyebrow { justify-content: center; }
.h-section-head--left .h-eyebrow { justify-content: flex-start; }
.h-section-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--h-ink-soft);
  margin: 0;
  max-width: 56ch;
}
.h-section-head:not(.h-section-head--left) .h-section-lede { margin-left: auto; margin-right: auto; }

/* buttons ----------------------------------------------------------------- */
.h-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 26px;
  font-family: var(--h-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--h-radius);
  border: 1px solid transparent;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.h-btn--solid {
  background: var(--h-ink);
  color: var(--h-cream-soft);
}
.h-btn--solid:hover { background: var(--h-accent); transform: translateY(-1px); }

.h-btn--ghost {
  background: transparent;
  color: var(--h-ink);
  border-color: var(--h-ink);
}
.h-btn--ghost:hover { background: var(--h-ink); color: var(--h-cream-soft); }

.h-btn--light.h-btn--solid {
  background: var(--h-cream-soft); color: var(--h-ink);
}
.h-btn--light.h-btn--solid:hover { background: var(--h-accent-warm); color: var(--h-cream-soft); }
.h-btn--light.h-btn--ghost {
  border-color: var(--h-cream-soft); color: var(--h-cream-soft);
}
.h-btn--light.h-btn--ghost:hover { background: var(--h-cream-soft); color: var(--h-ink); }

/* arrow-style link */
.h-link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--h-text); font-weight: 500;
  font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
  border-bottom: 1px solid currentColor; padding-bottom: 4px;
  transition: color 220ms ease, gap 220ms ease;
}
.h-link-arrow:hover { color: var(--h-accent); gap: 16px; }
.h-link-arrow--sm { font-size: 12px; letter-spacing: 0.18em; }

/* ==========================================================================
   NAV
   ========================================================================== */
.h-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(236, 228, 212, 0.78);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease;
}
.h-nav.is-scrolled {
  background: rgba(236, 228, 212, 0.92);
  border-bottom-color: var(--h-line);
}
.h-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px;
  max-width: 1440px; margin: 0 auto;
}
.h-nav__logo {
  display: inline-flex; align-items: center; gap: 12px;
}
.h-nav__mark {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px;
  font-family: var(--h-serif);
  font-size: 19px;
  background: var(--h-ink);
  color: var(--h-cream-soft);
  border-radius: var(--h-radius);
}
.h-nav__name {
  font-family: var(--h-serif);
  font-size: 22px;
  letter-spacing: 0.005em;
}
.h-nav__links {
  display: flex; gap: 36px;
}
.h-nav__links a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--h-ink);
  position: relative;
  padding: 6px 0;
}
.h-nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--h-accent);
  transition: right 280ms ease;
}
.h-nav__links a:hover::after { right: 0; }

.h-nav__menu {
  display: none;
  align-items: center; gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.h-nav__menu-icon { display: inline-flex; flex-direction: column; gap: 5px; }
.h-nav__menu-icon i { display: block; width: 22px; height: 1px; background: var(--h-ink); }

/* drawer ------------------------------------------------------------------ */
.h-drawer {
  position: fixed; inset: 0;
  background: var(--h-cream);
  z-index: 49;
  transform: translateY(-100%);
  transition: transform 420ms cubic-bezier(0.6, 0, 0.05, 1);
  display: flex; align-items: center; justify-content: center;
  padding: 80px 24px;
}
.h-drawer.is-open { transform: translateY(0); }
.h-drawer__inner {
  display: flex; flex-direction: column; gap: 22px;
  text-align: center;
}
.h-drawer__inner a {
  font-family: var(--h-serif);
  font-size: 36px;
  color: var(--h-ink);
}
.h-drawer__inner a:hover { color: var(--h-accent); }
.h-drawer__meta {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--h-ink-mute);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.h-hero {
  position: relative;
  min-height: 92vh;
  padding: 0 40px 120px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.h-hero__media {
  position: absolute; inset: 0; z-index: -1;
  overflow: hidden;
}
.h-hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.78) contrast(1.02);
  transform: scale(1.04);
  animation: h-hero-zoom 14s ease-out forwards;
}
@keyframes h-hero-zoom {
  to { transform: scale(1); }
}
.h-hero__grain {
  position: absolute; inset: 0;
  opacity: 0.16; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.10 0 0 0 0 0.09 0 0 0 0 0.07 0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.h-hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(27,24,20,0.10) 0%, rgba(27,24,20,0.55) 60%, rgba(27,24,20,0.78) 100%),
    linear-gradient(90deg, rgba(27,24,20,0.45) 0%, rgba(27,24,20,0.10) 60%);
}

.h-hero__content {
  position: relative;
  max-width: 880px;
  margin-top: auto;
  color: var(--h-cream-soft);
}
.h-hero__eyebrow {
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(243, 237, 224, 0.74);
  margin: 0 0 28px;
}
.h-hero__title {
  font-family: var(--h-serif);
  font-weight: 400;
  font-size: clamp(56px, 7.5vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.018em;
  margin: 0 0 28px;
}
.h-hero__title em {
  font-style: italic;
  color: var(--h-accent-warm);
  font-weight: 400;
}
.h-hero__lede {
  font-size: 19px;
  line-height: 1.55;
  max-width: 56ch;
  color: rgba(243, 237, 224, 0.86);
  margin: 0 0 40px;
}
.h-hero__cta { display: inline-flex; gap: 16px; flex-wrap: wrap; }
.h-hero__cta .h-btn--solid { background: var(--h-cream-soft); color: var(--h-ink); }
.h-hero__cta .h-btn--solid:hover { background: var(--h-accent-warm); color: var(--h-cream-soft); }
.h-hero__cta .h-btn--ghost { color: var(--h-cream-soft); border-color: rgba(243,237,224,0.55); }
.h-hero__cta .h-btn--ghost:hover { background: var(--h-cream-soft); color: var(--h-ink); border-color: var(--h-cream-soft); }

.h-hero__foot {
  position: absolute; left: 40px; right: 40px; bottom: 32px;
  display: flex; gap: 40px; flex-wrap: wrap;
  color: rgba(243, 237, 224, 0.7);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.h-marquee {
  background: var(--h-dark);
  color: var(--h-cream-soft);
  border-top: 1px solid var(--h-dark-soft);
  border-bottom: 1px solid var(--h-dark-soft);
  overflow: hidden;
  padding: 22px 0;
}
.h-marquee__track {
  display: flex; gap: 36px;
  white-space: nowrap;
  font-family: var(--h-serif);
  font-style: italic;
  font-size: clamp(20px, 1.6vw, 28px);
  letter-spacing: 0.01em;
  animation: h-marquee 38s linear infinite;
}
.h-marquee__track span:nth-child(even) { color: var(--h-accent-warm); }
@keyframes h-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.h-services {
  padding: 140px 40px 120px;
  max-width: 1440px;
  margin: 0 auto;
}
.h-svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--h-line);
  border-left: 1px solid var(--h-line);
}
.h-svc {
  padding: 56px 48px 64px;
  border-right: 1px solid var(--h-line);
  border-bottom: 1px solid var(--h-line);
  background: var(--h-cream);
  position: relative;
  transition: background 280ms ease;
}
.h-svc:hover { background: var(--h-cream-soft); }
.h-svc__num {
  font-family: var(--h-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--h-accent);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 24px;
}
.h-svc__title {
  font-family: var(--h-serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.h-svc__copy {
  font-size: 16px;
  line-height: 1.6;
  color: var(--h-ink-soft);
  margin: 0 0 28px;
  max-width: 38ch;
}
.h-svc__link {
  display: inline-flex; gap: 10px;
  font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--h-ink);
  border-bottom: 1px solid var(--h-line);
  padding-bottom: 6px;
  transition: color 220ms ease, gap 220ms ease, border-color 220ms ease;
}
.h-svc__link:hover { color: var(--h-accent); gap: 16px; border-color: var(--h-accent); }

/* ==========================================================================
   ABOUT STRIP
   ========================================================================== */
.h-about {
  padding: 120px 40px;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.h-about__media {
  position: relative; aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--h-radius);
  box-shadow: var(--h-shadow);
  isolation: isolate;
}
.h-about__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8); }
.h-about__grain {
  position: absolute; inset: 0; opacity: 0.18; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.10 0 0 0 0 0.09 0 0 0 0 0.07 0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.h-about__text p {
  font-size: 17px; line-height: 1.65;
  color: var(--h-ink-soft);
  margin: 0 0 20px;
  max-width: 52ch;
}
.h-about__list {
  margin-top: 40px;
  border-top: 1px solid var(--h-line);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}
.h-about__list > div {
  padding: 20px 0;
  border-bottom: 1px solid var(--h-line);
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: baseline;
}
.h-about__list dt {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--h-ink-mute);
}
.h-about__list dd {
  margin: 0;
  font-family: var(--h-serif);
  font-size: 18px;
  color: var(--h-ink);
}

/* ==========================================================================
   STATS
   ========================================================================== */
.h-stats {
  background: var(--h-dark);
  color: var(--h-cream-soft);
  padding: 80px 40px;
}
.h-stats__inner {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.h-stat {
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(243, 237, 224, 0.18);
}
.h-stat__num {
  font-family: var(--h-serif);
  font-size: clamp(48px, 5vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--h-cream-soft);
}
.h-stat__num i {
  font-style: italic;
  font-size: 0.42em;
  color: var(--h-accent-warm);
  margin-left: 6px;
  vertical-align: super;
}
.h-stat__label {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(243, 237, 224, 0.7);
  max-width: 28ch;
}

/* ==========================================================================
   WORK / CARDS
   ========================================================================== */
.h-work {
  padding: 140px 40px 120px;
  max-width: 1440px;
  margin: 0 auto;
}
.h-work .h-section-head { margin-bottom: 64px; }
.h-work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px 56px;
}
.h-card {
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform 360ms ease;
}
.h-card:hover { transform: translateY(-4px); }
.h-card__img {
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: var(--h-radius);
  aspect-ratio: 4 / 3;
}
.h-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.82);
  transition: transform 1200ms cubic-bezier(0.2, 0, 0.1, 1);
}
.h-card:hover .h-card__img img { transform: scale(1.04); }
.h-card__meta {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--h-ink-mute);
  margin: 0 0 14px;
}
.h-card__title {
  font-family: var(--h-serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.h-card__copy {
  font-size: 16px;
  line-height: 1.6;
  color: var(--h-ink-soft);
  margin: 0;
  max-width: 50ch;
}

/* ==========================================================================
   TESTIMONIAL
   ========================================================================== */
.h-quote {
  background: var(--h-cream-soft);
  padding: 140px 40px;
  border-top: 1px solid var(--h-line);
  border-bottom: 1px solid var(--h-line);
}
.h-quote__inner {
  max-width: 880px; margin: 0 auto;
  text-align: center;
}
.h-quote .h-eyebrow { justify-content: center; }
.h-quote blockquote {
  font-family: var(--h-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.25;
  color: var(--h-ink);
  margin: 0 0 40px;
  letter-spacing: -0.005em;
}
.h-quote__attr {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14px;
  margin: 0;
}
.h-quote__attr strong {
  font-family: var(--h-serif);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.005em;
}
.h-quote__attr span {
  color: var(--h-ink-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

/* ==========================================================================
   JOURNAL
   ========================================================================== */
.h-journal {
  padding: 140px 40px 120px;
  max-width: 1440px;
  margin: 0 auto;
}
.h-journal__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.h-jcard { display: flex; flex-direction: column; cursor: pointer; }
.h-jcard__img {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: var(--h-radius);
}
.h-jcard__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85);
  transition: transform 900ms ease;
}
.h-jcard:hover .h-jcard__img img { transform: scale(1.04); }
.h-jcard__meta {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--h-ink-mute);
  margin: 0 0 12px;
}
.h-jcard__title {
  font-family: var(--h-serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.003em;
}
.h-jcard__copy {
  font-size: 15px; line-height: 1.6;
  color: var(--h-ink-soft);
  margin: 0 0 20px;
}

/* ==========================================================================
   CTA
   ========================================================================== */
.h-cta {
  position: relative;
  padding: 160px 40px 180px;
  color: var(--h-cream-soft);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.h-cta__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.h-cta__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.55) contrast(1.05);
}
.h-cta__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,24,20,0.78), rgba(27,24,20,0.82));
}
.h-cta__inner {
  max-width: 880px; margin: 0 auto;
}
.h-cta__inner .h-eyebrow { justify-content: center; }
.h-cta__title {
  font-family: var(--h-serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
  color: var(--h-cream-soft);
}
.h-cta__lede {
  font-size: 18px; line-height: 1.6;
  color: rgba(243, 237, 224, 0.78);
  max-width: 56ch; margin: 0 auto 40px;
}
.h-cta__actions {
  display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.h-foot {
  background: var(--h-dark);
  color: rgba(243, 237, 224, 0.78);
  padding: 96px 40px 40px;
}
.h-foot__top {
  max-width: 1440px; margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  border-bottom: 1px solid rgba(243, 237, 224, 0.14);
  padding-bottom: 56px;
}
.h-foot__brand { display: flex; flex-direction: column; gap: 18px; }
.h-foot__mark {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  font-family: var(--h-serif);
  font-size: 26px;
  background: var(--h-cream-soft);
  color: var(--h-ink);
  border-radius: var(--h-radius);
}
.h-foot__name {
  font-family: var(--h-serif);
  font-size: 26px;
  color: var(--h-cream-soft);
  margin: 0;
}
.h-foot__tag {
  font-size: 14px;
  max-width: 36ch;
  color: rgba(243, 237, 224, 0.6);
  margin: 0;
}
.h-foot__cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.h-foot__h {
  font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--h-cream-soft);
  margin: 0 0 22px;
}
.h-foot__cols ul { display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.h-foot__cols a:hover { color: var(--h-accent-warm); }
.h-foot__bottom {
  max-width: 1440px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 237, 224, 0.42);
}
.h-foot__bottom p { margin: 0; }

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
[data-h-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.2, 0, 0.1, 1);
}
[data-h-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .h-nav__links { display: none; }
  .h-nav__menu  { display: inline-flex; }
  .h-svc-grid,
  .h-work__grid,
  .h-journal__grid,
  .h-foot__cols { grid-template-columns: 1fr 1fr; }
  .h-stats__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .h-about { grid-template-columns: 1fr; gap: 56px; }
  .h-about__media { aspect-ratio: 16 / 11; }
  .h-foot__top { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 640px) {
  .h-nav__inner { padding: 18px 22px; }
  .h-nav__name { font-size: 18px; }
  .h-hero { padding: 0 22px 100px; min-height: 100vh; }
  .h-hero__foot { left: 22px; right: 22px; gap: 18px; }
  .h-hero__lede { font-size: 17px; }
  .h-services,
  .h-about,
  .h-work,
  .h-journal { padding-left: 22px; padding-right: 22px; }
  .h-svc-grid,
  .h-work__grid,
  .h-journal__grid { grid-template-columns: 1fr; }
  .h-svc { padding: 40px 28px 44px; }
  .h-stats { padding: 64px 22px; }
  .h-stats__inner { grid-template-columns: 1fr; gap: 32px; }
  .h-quote { padding: 96px 22px; }
  .h-cta { padding: 110px 22px 130px; }
  .h-foot { padding: 64px 22px 28px; }
  .h-foot__cols { grid-template-columns: 1fr; gap: 32px; }
  .h-foot__bottom { flex-direction: column; align-items: flex-start; }
  .h-about__list { grid-template-columns: 1fr; }
}
