/* ==========================================================================
   Greystone Recruitment — styles.css
   Quiet-luxury dark editorial system. Hand-written, no framework.
   ========================================================================== */

/* --------------------------------------------------------------- tokens */
:root {
  --black:        #0B0C0E;
  --charcoal:     #15171B;
  --charcoal-2:   #1B1E23;
  --navy:         #131A28;
  --navy-2:       #0F1522;
  --off-white:    #F2F1ED;
  --grey:         #9A9DA3;
  --grey-dim:     #6E7177;
  --accent:       #C3A97F;
  --accent-soft:  #A8916B;
  --hair:         rgba(255, 255, 255, 0.08);
  --hair-strong:  rgba(255, 255, 255, 0.16);

  --serif: "Playfair Display", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --pad-x: clamp(1.5rem, 5vw, 6rem);
  --sec-y: clamp(4.5rem, 11vw, 10rem);
  --maxw: 1320px;
  --measure: 34rem;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--off-white);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.005em;
  color: var(--off-white);
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: var(--black); }

:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--accent);
  color: var(--black);
  padding: 0.85rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* --------------------------------------------------------------- layout */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

section { position: relative; }

.section { padding-block: var(--sec-y); }
.section--tight { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--charcoal { background: var(--charcoal); }
.section--navy { background: var(--navy); }
.section--navy-deep { background: var(--navy-2); }

.rule {
  height: 1px;
  background: var(--hair);
  border: 0;
  margin: 0;
}
.rule--short { width: 4rem; background: var(--accent); opacity: 0.75; }

/* --------------------------------------------------------------- type */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.6rem;
  display: block;
}
.eyebrow--grey { color: var(--grey-dim); }
.eyebrow__num {
  color: var(--grey-dim);
  margin-right: 0.9rem;
}

.display {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6.6vw, 5rem);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.h2 {
  font-size: clamp(1.9rem, 4vw, 3.15rem);
  line-height: 1.2;
}

.h3 {
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  line-height: 1.3;
}

.h4 {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.35;
}

.lead {
  font-size: clamp(1.02rem, 1.35vw, 1.175rem);
  line-height: 1.85;
  color: var(--grey);
  max-width: var(--measure);
  font-weight: 300;
}

.body {
  color: var(--grey);
  max-width: var(--measure);
  font-weight: 300;
}
.body + .body { margin-top: 1.35rem; }

.serif-italic {
  font-family: var(--serif);
  font-style: italic;
  color: var(--off-white);
}

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 54px;
  padding: 1.05rem 2.1rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0;
  background: none;
  cursor: pointer;
  transition: background-color 0.45s var(--ease), color 0.45s var(--ease),
              border-color 0.45s var(--ease), transform 0.45s var(--ease);
}

.btn--accent {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}
.btn--accent:hover,
.btn--accent:focus-visible {
  background: var(--off-white);
  border-color: var(--off-white);
  color: var(--black);
}

.btn--outline {
  border-color: var(--hair-strong);
  color: var(--off-white);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.75rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding-block: 0.35rem;
  transition: color 0.4s var(--ease), gap 0.4s var(--ease);
}
.link-arrow::after {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease);
}
.link-arrow:hover,
.link-arrow:focus-visible { color: var(--off-white); gap: 1rem; }
.link-arrow:hover::after { width: 2.2rem; }

/* --------------------------------------------------------------- logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  color: var(--off-white);
  transition: opacity 0.4s var(--ease);
}
.logo:hover { opacity: 0.72; }

.logo__mark { flex: none; width: 40px; height: 40px; }
.logo__mark circle,
.logo__mark path { vector-effect: non-scaling-stroke; }

.logo__type { display: flex; flex-direction: column; gap: 0.24rem; }
.logo__name {
  font-family: var(--serif);
  font-size: 1.02rem;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}
.logo__sub {
  font-family: var(--sans);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--grey);
}

/* --------------------------------------------------------------- header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.5s var(--ease), border-color 0.5s var(--ease),
              backdrop-filter 0.5s var(--ease);
}
.site-header.is-stuck {
  background: rgba(11, 12, 14, 0.94);
  border-bottom-color: var(--hair);
  backdrop-filter: saturate(140%) blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 92px;
}

.nav { display: none; }

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.4vw, 2.6rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  position: relative;
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  padding-block: 0.6rem;
  transition: color 0.4s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.45s var(--ease);
}
.nav__link:hover,
.nav__link:focus-visible { color: var(--off-white); }
.nav__link:hover::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--off-white); }
.nav__link[aria-current="page"]::after { width: 100%; opacity: 0.6; }

.nav__cta { margin-left: 0.6rem; }
.nav__cta .btn { min-height: 44px; padding: 0.75rem 1.5rem; font-size: 0.6875rem; }

/* hamburger */
.nav-toggle {
  position: relative;
  z-index: 210;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--off-white);
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* slide-over panel */
.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(90vw, 420px);
  z-index: 200;
  background: var(--charcoal);
  border-left: 1px solid var(--hair);
  transform: translateX(100%);
  transition: transform 0.55s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--pad-x) 3rem;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav__list { list-style: none; margin: 0 0 2.5rem; padding: 0; }
.mobile-nav__list li { border-bottom: 1px solid var(--hair); }
.mobile-nav__link {
  display: block;
  padding: 1.15rem 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--off-white);
  transition: color 0.4s var(--ease), padding-left 0.4s var(--ease);
}
.mobile-nav__link:hover,
.mobile-nav__link:focus-visible { color: var(--accent); padding-left: 0.5rem; }
.mobile-nav__link[aria-current="page"] { color: var(--accent); }

.mobile-nav__meta {
  margin-top: auto;
  padding-top: 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--grey);
}
.mobile-nav__meta a { display: block; padding: 0.35rem 0; }
.mobile-nav__meta a:hover { color: var(--accent); }

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(11, 12, 14, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }

/* --------------------------------------------------------------- media */
.media {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.85);
  transition: transform 1.4s var(--ease), filter 1.4s var(--ease);
}
.media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,12,14,0.30) 0%, rgba(11,12,14,0.55) 55%, rgba(11,12,14,0.86) 100%);
  pointer-events: none;
}
.media--soft::after {
  background: linear-gradient(to bottom, rgba(11,12,14,0.20) 0%, rgba(11,12,14,0.38) 60%, rgba(11,12,14,0.62) 100%);
}

/* --------------------------------------------------------------- hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 9rem;
  padding-bottom: clamp(3.5rem, 8vw, 7rem);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.8);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,12,14,0.72) 0%, rgba(11,12,14,0.42) 34%, rgba(11,12,14,0.88) 88%, var(--black) 100%),
    linear-gradient(to right, rgba(11,12,14,0.78) 0%, rgba(11,12,14,0.22) 62%, rgba(11,12,14,0.5) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__title { max-width: 17ch; }
.hero__support {
  margin-top: 1.9rem;
  max-width: 40rem;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.85;
  color: rgba(242, 241, 237, 0.78);
  font-weight: 300;
}
.hero__scroll {
  margin-top: clamp(3rem, 7vw, 5.5rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey-dim);
}
.hero__scroll::after {
  content: "";
  width: 3.5rem;
  height: 1px;
  background: var(--hair-strong);
}

/* page hero (inner pages) */
.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(58vh, 62vw, 76vh);
  padding-top: 10rem;
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.66) saturate(0.78);
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,12,14,0.78) 0%, rgba(11,12,14,0.46) 40%, rgba(11,12,14,0.92) 92%, var(--black) 100%);
}
.page-hero__inner { position: relative; z-index: 2; width: 100%; }
.page-hero__title { max-width: 18ch; }
.page-hero__support {
  margin-top: 1.6rem;
  max-width: 38rem;
  color: rgba(242, 241, 237, 0.75);
  line-height: 1.85;
}

/* --------------------------------------------------------------- split */
.split {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.split__media { position: relative; aspect-ratio: 4 / 5; }
.split--reverse .split__text { order: 2; }
.split--reverse .split__media { order: 1; }

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-media { grid-template-columns: 0.85fr 1.15fr; }
  .split__media { aspect-ratio: 3 / 4; }
}

/* section head */
.sec-head { max-width: 46rem; margin-bottom: clamp(3rem, 6vw, 5rem); }
.sec-head .lead { margin-top: 1.6rem; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .lead { margin-inline: auto; }

/* --------------------------------------------------------------- cards */
.cards {
  display: grid;
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
@media (min-width: 700px) { .cards--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 700px) { .cards--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px) { .cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }

.cell {
  background: var(--black);
  padding: clamp(2rem, 3.4vw, 3rem);
  transition: background-color 0.6s var(--ease);
}
.section--charcoal .cell { background: var(--charcoal); }
.section--navy .cell { background: var(--navy); }
.cell:hover { background: var(--charcoal-2); }
.cell__num {
  font-family: var(--sans);
  font-size: 0.625rem;
  letter-spacing: 0.28em;
  color: var(--accent);
  display: block;
  margin-bottom: 1.6rem;
}
.cell h3 { margin-bottom: 0.9rem; }
.cell p { color: var(--grey); font-size: 0.9375rem; line-height: 1.8; }

/* image cards */
.tiles {
  display: grid;
  gap: clamp(1.25rem, 2.2vw, 2rem);
}
@media (min-width: 720px)  { .tiles--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px)  { .tiles--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .tiles--4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 720px)  { .tiles--3 { grid-template-columns: repeat(3, 1fr); } }

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hair);
  background: var(--charcoal);
  overflow: hidden;
  transition: border-color 0.6s var(--ease);
}
.tile:hover { border-color: var(--hair-strong); }
.tile__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.tile__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.82);
  transition: transform 1.5s var(--ease), filter 1.5s var(--ease);
}
.tile__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(11,12,14,0.18), rgba(11,12,14,0.72));
}
.tile:hover .tile__media img { transform: scale(1.055); filter: brightness(0.9) saturate(0.9); }
.tile__body { padding: clamp(1.6rem, 2.4vw, 2.2rem); flex: 1; }
.tile__body h3 { margin-bottom: 0.85rem; }
.tile__body p { color: var(--grey); font-size: 0.9375rem; line-height: 1.8; }
.tile__body .link-arrow { margin-top: 1.6rem; }

/* feature card (large) */
.feature {
  display: grid;
  border: 1px solid var(--hair);
  background: var(--charcoal);
  overflow: hidden;
  margin-bottom: clamp(1.25rem, 2.2vw, 2rem);
}
.feature__media { position: relative; min-height: 300px; aspect-ratio: 16/10; overflow: hidden; }
.feature__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.82);
  transition: transform 1.6s var(--ease);
}
.feature:hover .feature__media img { transform: scale(1.04); }
.feature__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(11,12,14,0.15), rgba(11,12,14,0.7));
}
.feature__body {
  padding: clamp(2.2rem, 4.5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature__body h3 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 1.2rem; }
.feature__body p { color: var(--grey); max-width: 32rem; }
.feature__body p + p { margin-top: 1.1rem; }
.feature__body .link-arrow { margin-top: 2rem; align-self: flex-start; }
@media (min-width: 900px) {
  .feature { grid-template-columns: 1.05fr 1fr; }
  .feature__media { aspect-ratio: auto; }
}

/* --------------------------------------------------------------- list grid */
.matrix {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hair);
}
.matrix__item {
  border-bottom: 1px solid var(--hair);
  padding: clamp(1.9rem, 3vw, 2.6rem) clamp(0rem, 2vw, 2rem) clamp(1.9rem, 3vw, 2.6rem) 0;
  transition: background-color 0.6s var(--ease), padding-left 0.6s var(--ease);
}
.matrix__item:hover { background: rgba(255,255,255,0.018); }
.matrix__item h3 { font-size: 1.28rem; margin-bottom: 0.65rem; }
.matrix__item p { color: var(--grey); font-size: 0.9375rem; line-height: 1.78; max-width: 30rem; }
.matrix__item .cell__num { margin-bottom: 1.1rem; }
@media (min-width: 760px) {
  .matrix--2 { grid-template-columns: repeat(2, 1fr); column-gap: clamp(2rem, 5vw, 5rem); }
}
@media (min-width: 1060px) {
  .matrix--3 { grid-template-columns: repeat(3, 1fr); column-gap: clamp(2rem, 4vw, 4rem); }
}

/* --------------------------------------------------------------- steps */
.steps {
  display: grid;
  border-top: 1px solid var(--hair);
}
.step {
  display: grid;
  gap: 0.5rem 2rem;
  padding: clamp(2rem, 3.5vw, 2.9rem) 0;
  border-bottom: 1px solid var(--hair);
  align-items: baseline;
  transition: background-color 0.6s var(--ease);
}
.step:hover { background: rgba(255,255,255,0.018); }
.step__num {
  font-family: var(--sans);
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  color: var(--accent);
}
.step__title { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }
.step__desc { color: var(--grey); font-size: 0.9375rem; line-height: 1.8; max-width: 34rem; }
@media (min-width: 860px) {
  .step { grid-template-columns: 7rem 1fr 1.25fr; align-items: center; }
}

/* --------------------------------------------------------------- band */
.band {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(24rem, 52vw, 34rem);
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.band__bg { position: absolute; inset: 0; }
.band__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.75);
}
.band__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(11,12,14,0.9) 0%, rgba(11,12,14,0.66) 50%, rgba(11,12,14,0.86) 100%);
}
.band__inner { position: relative; z-index: 2; width: 100%; }

.geo {
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(1.5rem, 4vw, 3.5rem);
  margin-top: 2.75rem;
  list-style: none;
  padding: 0;
}
.geo li {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  color: var(--off-white);
  padding: 0.6rem 0;
  position: relative;
}
.geo li + li { padding-left: clamp(1.5rem, 4vw, 3.5rem); }
.geo li + li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 1.1em;
  background: var(--accent);
  opacity: 0.5;
}

/* --------------------------------------------------------------- stats / quote */
.quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 1.45;
  font-style: italic;
  color: var(--off-white);
  max-width: 30ch;
  font-weight: 400;
}

/* --------------------------------------------------------------- CTA */
.cta { text-align: center; }
.cta__title { max-width: 20ch; margin-inline: auto; }
.cta .lead { margin: 1.6rem auto 0; }
.cta .btn-row { justify-content: center; }

/* --------------------------------------------------------------- forms */
.form-layout {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (min-width: 980px) {
  .form-layout { grid-template-columns: 0.8fr 1.2fr; }
}

.form-aside .body { max-width: 26rem; }
.form-aside__block { margin-top: 2.75rem; }
.form-aside__label {
  font-size: 0.625rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--grey-dim);
  margin-bottom: 0.7rem;
}
.form-aside__value {
  font-family: var(--serif);
  font-size: 1.22rem;
  color: var(--off-white);
  transition: color 0.4s var(--ease);
  display: inline-block;
  padding-block: 0.2rem;
}
a.form-aside__value:hover,
a.form-aside__value:focus-visible { color: var(--accent); }

.form {
  border: 1px solid var(--hair);
  background: var(--charcoal);
  padding: clamp(1.75rem, 4vw, 3.25rem);
}

.field-grid {
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 640px) {
  .field-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

.field { display: flex; flex-direction: column; gap: 0.65rem; }
.field--full { grid-column: 1 / -1; }

.field label,
.fieldset legend {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 0;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--off-white);
  background: rgba(255, 255, 255, 0.022);
  border: 1px solid var(--hair);
  border-radius: 0;
  padding: 1.05rem 1.15rem;
  min-height: 54px;
  transition: border-color 0.4s var(--ease), background-color 0.4s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { min-height: 9.5rem; resize: vertical; line-height: 1.7; }

.field input::placeholder,
.field textarea::placeholder { color: var(--grey-dim); font-weight: 300; }

.field input:hover,
.field select:hover,
.field textarea:hover { border-color: rgba(255,255,255,0.14); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
}

.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--grey) 50%),
    linear-gradient(135deg, var(--grey) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% + 1px),
    calc(100% - 14px) calc(50% + 1px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 3rem;
  cursor: pointer;
}
.field select option { background: var(--charcoal); color: var(--off-white); }

/* file input */
.file-field input[type="file"] {
  padding: 0;
  min-height: 0;
  border: 0;
  background: none;
  font-size: 0.8125rem;
  color: var(--grey);
  cursor: pointer;
}
.file-field input[type="file"]::file-selector-button {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white);
  background: transparent;
  border: 1px solid var(--hair-strong);
  border-radius: 0;
  padding: 1rem 1.6rem;
  margin-right: 1.1rem;
  cursor: pointer;
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.file-field input[type="file"]::file-selector-button:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.field__hint { font-size: 0.75rem; color: var(--grey-dim); line-height: 1.6; }

/* radios */
.fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  grid-column: 1 / -1;
}
.radio-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.radio {
  position: relative;
  display: inline-flex;
}
.radio input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.radio span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--hair);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease), background-color 0.4s var(--ease);
}
.radio input:hover + span { border-color: rgba(255,255,255,0.16); color: var(--off-white); }
.radio input:focus-visible + span { border-color: var(--accent); color: var(--off-white); }
.radio input:checked + span {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(195, 169, 127, 0.07);
}

.form__actions {
  margin-top: 2.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--hair);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
.form__note { font-size: 0.75rem; color: var(--grey-dim); max-width: 24rem; line-height: 1.65; }

.form-success {
  display: none;
  border: 1px solid var(--hair);
  background: var(--charcoal);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: left;
}
.form-success.is-visible { display: block; animation: fade-up 0.8s var(--ease) both; }
.form-success h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 1.4rem; }
.form-success p { color: var(--grey); max-width: 32rem; }
.form-success .rule--short { margin-bottom: 2rem; }

/* --------------------------------------------------------------- prose */
.prose { max-width: 42rem; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 3.25rem 0 1.1rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--grey); margin-bottom: 1.2rem; line-height: 1.85; }
.prose ul { color: var(--grey); padding-left: 1.15rem; margin: 0 0 1.5rem; }
.prose li { margin-bottom: 0.6rem; line-height: 1.8; }
.prose a { color: var(--accent); border-bottom: 1px solid rgba(195,169,127,0.35); }
.prose a:hover { color: var(--off-white); border-color: var(--off-white); }

/* --------------------------------------------------------------- footer */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--hair);
  padding-block: clamp(3.5rem, 7vw, 6rem) 2.5rem;
}
.footer-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
@media (min-width: 780px)  { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1080px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }

.footer-brand .body {
  margin-top: 1.75rem;
  max-width: 22rem;
  font-size: 0.875rem;
  line-height: 1.8;
}
.footer-col__title {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--grey-dim);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li + li { margin-top: 0.15rem; }
.footer-col a {
  display: inline-block;
  padding: 0.4rem 0;
  font-size: 0.875rem;
  color: var(--grey);
  transition: color 0.4s var(--ease);
}
.footer-col a:hover,
.footer-col a:focus-visible { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--hair);
  padding-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--grey-dim);
  letter-spacing: 0.04em;
}
.footer-bottom a { transition: color 0.4s var(--ease); padding: 0.3rem 0; }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom__links { display: flex; flex-wrap: wrap; gap: 1.75rem; }

/* --------------------------------------------------------------- reveal */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------- desktop nav */
@media (min-width: 1024px) {
  .nav { display: block; }
  .nav-toggle { display: none; }
}

/* --------------------------------------------------------------- motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
