/* Helloi. editorial system — shared styles for subpages */
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 400 800; font-display: swap;
  src: url("../fonts/playfair-latin.woff2") format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 400 800; font-display: swap;
  src: url("../fonts/playfair-italic-latin.woff2") format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 300 700; font-display: swap;
  src: url("../fonts/montserrat-latin.woff2") format('woff2'); }

:root {
  --ink: #0A1A0D;
  --pine: #142917;
  --cream: #ECE3D0;
  --paper: #F2EBDB;
  --gold: #C6A15B;
  --gold-2: #D9BE86;
  --sage: #A8BE9A;
  --mute: #9FA893;
  --line: rgba(236, 227, 208, .16);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Montserrat', system-ui, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --pad: clamp(20px, 4vw, 56px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--ink); color: var(--cream);
  font-family: var(--sans); line-height: 1.65; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold); color: var(--ink); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; margin: 0; }

.micro { font-size: .62rem; letter-spacing: .34em; text-transform: uppercase; color: var(--mute); font-weight: 600; }
.micro b { color: var(--gold); font-weight: 600; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 var(--pad); }

/* cursor */
.cursor, .cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 200; display: none; }
.cursor { width: 6px; height: 6px; background: var(--gold-2); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(217, 190, 134, .65);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s; }
.cursor-ring.big { width: 74px; height: 74px; background: rgba(217, 190, 134, .12); }
@media (hover: hover) and (pointer: fine) { .cursor, .cursor-ring { display: block; } }

/* header */
header.top {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad); mix-blend-mode: difference;
}
.logo { font-family: var(--serif); font-weight: 700; font-size: 1.35rem; color: #fff; }
header.top nav { display: flex; gap: 30px; }
header.top nav a { color: #fff; font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; font-weight: 600; position: relative; }
header.top nav a::after { content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0; background: #fff; transition: width .3s var(--ease); }
header.top nav a:hover::after, header.top nav a[aria-current="page"]::after { width: 100%; }

/* page head */
.page-head { padding: 22vh 0 8vh; }
.page-head .micro { display: block; margin-bottom: 22px; }
.display-lg {
  font-family: var(--serif); font-weight: 500; line-height: 1.02; letter-spacing: -.015em;
  font-size: clamp(2.8rem, 8vw, 7rem); margin: 0;
}
.display-lg em { font-style: italic; color: var(--sage); }
.display-lg .dot { color: var(--gold); }
.lede { color: var(--mute); font-size: 1.02rem; max-width: 34rem; margin: 30px 0 0; }
.lede b, .lede strong { color: var(--cream); font-weight: 500; }

section.blk { padding: 9vh 0; }
.blk-label { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 36px; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* index rows (services hub) */
.index-list { border-top: 1px solid var(--line); }
.irow {
  display: grid; grid-template-columns: 90px 1fr auto; align-items: baseline; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid var(--line); transition: background .3s var(--ease);
}
.irow:hover { background: rgba(198, 161, 91, .05); }
.irow .idx { font-family: var(--serif); font-style: italic; color: var(--mute); transition: color .3s; }
.irow:hover .idx { color: var(--gold); }
.irow h3 { font-size: clamp(1.7rem, 4vw, 3rem); line-height: 1.05; transition: transform .35s var(--ease), color .35s; }
.irow:hover h3 { transform: translateX(16px); color: var(--gold-2); }
.irow .tag { color: var(--mute); font-size: .8rem; max-width: 240px; text-align: right; }

/* tag pills */
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.tags span {
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-2); border: 1px solid rgba(198, 161, 91, .45); border-radius: 100px; padding: 8px 16px;
}

/* content columns (what's included) */
.cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 34px; }
.cols h4 { font-size: .66rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
  font-family: var(--sans); font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.cols ul { margin: 0; padding: 0; list-style: none; }
.cols li { padding: 5px 0 5px 18px; position: relative; color: var(--mute); font-size: .9rem; }
.cols li::before { content: ""; position: absolute; left: 0; top: .78em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* media grids */
.media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.media-grid figure { margin: 0; }
.media-grid .ph { overflow: hidden; border-radius: 3px; aspect-ratio: 1; }
.media-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); filter: saturate(.94); }
.media-grid figure:hover img { transform: scale(1.06); }
.media-grid figcaption { margin-top: 10px; color: var(--mute); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; }

/* checklist */
.checks { display: grid; gap: 12px; margin-top: 8px; }
.checks div { display: flex; gap: 14px; align-items: baseline; font-size: .95rem; }
.checks span { color: var(--gold); }

/* quote */
.quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  line-height: 1.35; border-left: 2px solid var(--gold); padding-left: 26px; margin: 0; color: var(--cream); }

/* team */
.people { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.member { position: relative; overflow: hidden; border-radius: 3px; aspect-ratio: 3 / 4; margin: 0; }
.member img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.04); transition: filter .5s var(--ease), transform .5s var(--ease); }
.member:hover img { filter: grayscale(0); transform: scale(1.05); }
.member figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 16px 14px;
  background: linear-gradient(transparent, rgba(10, 26, 13, .9)); transform: translateY(30%); opacity: 0; transition: all .4s var(--ease); }
.member:hover figcaption { transform: none; opacity: 1; }
.member b { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; display: block; }
.member span { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--sage); }

/* prose (legal, long text) */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin: 44px 0 14px; }
.prose h3 { font-size: 1.05rem; margin: 28px 0 8px; font-family: var(--sans); font-weight: 600; color: var(--gold-2);
  font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; }
.prose p { color: var(--mute); font-size: .95rem; margin: 0 0 14px; }
.prose p strong { color: var(--cream); font-weight: 500; }
.prose ul { color: var(--mute); font-size: .95rem; padding-left: 20px; margin: 0 0 14px; }
.prose li { margin: 4px 0; }
.prose a { color: var(--gold-2); }
.prose a:hover { color: var(--cream); }

/* form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 26px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--mute); font-weight: 600; }
.field input, .field select, .field textarea {
  background: none; border: 0; border-bottom: 1px solid var(--line); border-radius: 0;
  color: var(--cream); font-family: var(--sans); font-size: 1rem; padding: 8px 0;
  transition: border-color .3s;
}
.field select { appearance: none; }
.field select option { background: var(--pine); color: var(--cream); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.field textarea { resize: vertical; min-height: 96px; }
.form-status { font-size: .85rem; margin-top: 16px; display: none; }
.form-status.ok { display: block; color: var(--sage); }
.form-status.err { display: block; color: #E58A7B; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* buttons */
.btn { display: inline-block; border: none; cursor: pointer; border-radius: 100px;
  font-family: var(--sans); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600; padding: 15px 32px;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .18s, color .18s, border-color .18s; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 18px 34px -16px rgba(198, 161, 91, .5); }
.btn-ghost { background: none; color: var(--cream); border: 1px solid rgba(236, 227, 208, .35); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }

/* videos */
.video-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.video-strip video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 3px; background: #050B06; }

/* footer */
footer.foot { border-top: 1px solid var(--line); margin-top: 10vh; padding: 9vh var(--pad) 0; }
.foot-say { font-family: var(--serif); font-weight: 500; line-height: .95; letter-spacing: -.02em;
  font-size: clamp(3rem, 9vw, 8rem); }
.foot-say a { color: var(--cream); transition: color .4s var(--ease); }
.foot-say i { font-style: italic; color: var(--gold); }
.foot-say a:hover { color: var(--gold-2); }
.foot-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: flex-end;
  padding: 6vh 0 4vh; border-bottom: 1px solid var(--line); }
.foot-contact { display: flex; flex-direction: column; gap: 8px; font-size: .95rem; color: var(--mute); }
.foot-contact a:hover { color: var(--gold-2); }
.foot-legal { display: flex; flex-wrap: wrap; gap: 24px; padding: 24px 0 32px; color: var(--mute);
  font-size: .72rem; letter-spacing: .1em; }
.foot-legal a:hover { color: var(--cream); }

/* responsive */
@media (max-width: 900px) {
  .people { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr !important; }
  .irow { grid-template-columns: 50px 1fr; }
  .irow .tag { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .page-head { padding-top: 17vh; }
}
@media (max-width: 620px) {
  header.top nav a:not(:last-child) { display: none; }
}
