:root {
  --forest: #1a2e22;
  --forest-mid: #243b2d;
  --forest-light: #2f4d3a;
  --cream: #f5f0e8;
  --cream-warm: #ede6d8;
  --gold: #c9a84c;
  --gold-light: #e0c278;
  --gold-deep: #a8863a;
  --sage: #7a9e87;
  --text: #1a1a1a;
  --text-mid: #3a3a3a;
  --text-light: #5a5a5a;
  --white: #ffffff;
  --focus-ring: #c9a84c;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* PAGE IDENTITY — VSPs page uses gold hero, editorial feel, distinct from both homepage and clients */

/* ACCESSIBILITY */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--forest);
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}
*:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 46, 34, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
  text-decoration: none;
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(245, 240, 232, 0.72);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  background: var(--gold);
  color: var(--forest);
  padding: 0.55rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-light);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition:
    transform 0.3s,
    opacity 0.3s;
  border-radius: 2px;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-drawer {
  position: fixed;
  top: 0;
  left: unset;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--forest);
  z-index: 300;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}
.mobile-drawer.open {
  right: 0;
}
.drawer-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  z-index: 400;
}
.drawer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.drawer-nav li a {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.75);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: color 0.2s;
}
.drawer-nav li a:hover {
  color: var(--gold);
}
.drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
}
.drawer-cta-primary {
  background: var(--gold);
  color: var(--forest);
  padding: 0.9rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  text-align: center;
}
.drawer-cta-secondary {
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
  padding: 0.9rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  text-align: center;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* PAGE HERO — VSPs: gold background, forest text. Totally distinct identity */
#page-hero {
  min-height: 72vh;
  background: var(--gold);
  display: flex;
  align-items: center;
  padding: 9rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-lines {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: repeating-linear-gradient(
    0deg,
    var(--forest) 0,
    var(--forest) 1px,
    transparent 0,
    transparent 60px
  );
  pointer-events: none;
}
.hero-mark {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 28rem;
  font-weight: 700;
  color: rgba(26, 46, 34, 0.06);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}
.hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 46, 34, 0.55);
  margin-bottom: 1.5rem;
}
.hero-breadcrumb a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 600;
}
.hero-left h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--forest);
}
.hero-left h1 em {
  font-style: italic;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(26, 46, 34, 0.72);
  line-height: 1.8;
  max-width: 480px;
  margin-top: 1.2rem;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.btn-hero-primary {
  background: var(--forest);
  color: var(--cream);
  padding: 0.9rem 2.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition: background 0.2s;
}
.btn-hero-primary:hover {
  background: var(--forest-light);
}
.btn-hero-outline {
  border: 2px solid var(--forest);
  color: var(--forest);
  padding: 0.9rem 2.2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}
.btn-hero-outline:hover {
  background: var(--forest);
  color: var(--cream);
}
.hero-panel {
  background: var(--forest);
  padding: 2.5rem;
}
.hero-panel h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}
.hero-panel h2 em {
  font-style: italic;
  color: var(--gold);
}
.panel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.panel-list li {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.tick {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--gold);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  margin-top: 0.15rem;
  aria-hidden: true;
}

/* SECTION HELPERS */
section {
  padding: 6rem 4rem;
}
.section-label {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.section-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-label.dark {
  color: var(--forest);
}
.section-label.dark::before {
  background: var(--forest);
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--forest);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
}

/* QUOTE BAR */
.quote-bar {
  background: var(--forest);
  padding: 2.5rem 4rem;
}
.quote-bar blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.55;
}
.quote-bar blockquote strong {
  font-weight: 700;
  color: var(--gold);
}

/* OFFER — cream-warm */
#offer {
  background: var(--cream-warm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.offer-card {
  background: var(--white);
  padding: 1.8rem;
  border-bottom: 2px solid var(--gold);
}
.o-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--forest);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
  aria-hidden: true;
}
.offer-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.4rem;
}
.offer-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}
.placement-note {
  margin-top: 2rem;
  padding: 1.8rem 2rem;
  background: var(--forest);
}
.placement-note h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.7rem;
}
.placement-note p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.62);
  line-height: 1.75;
}
.placement-note strong {
  color: var(--gold);
}

/* DNA — forest */
#dna {
  background: var(--forest);
  text-align: center;
}
#dna .section-label {
  justify-content: center;
}
.dna-intro {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.58);
  max-width: 520px;
  margin: 0 auto 3.5rem;
  line-height: 1.75;
}
.dna-expanded {
  display: flex;
  flex-direction: column;
  max-width: 820px;
  margin: 0 auto 3rem;
}
.dna-row {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: padding-left 0.3s;
}
.dna-row:first-child {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}
.dna-row:hover {
  padding-left: 0.5rem;
}
.dna-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  padding-top: 0.1rem;
  aria-hidden: true;
}
.dna-row h3 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.dna-row p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.58);
  line-height: 1.75;
}
.dna-disq {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
}
.dna-disq h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.5);
  text-align: center;
  margin-bottom: 1rem;
}
.disq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.disq-tag {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: rgba(245, 240, 232, 0.42);
  border-radius: 1px;
}

/* LOOKING — cream */
#looking {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  background: var(--cream-warm);
  border-left: 3px solid var(--gold);
}
.spec-icon {
  width: 42px;
  height: 36px;
  background: var(--gold);
  color: var(--forest);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  aria-hidden: true;
}
.spec-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.3rem;
}
.spec-item span {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* PROCESS — cream-warm */
#process {
  background: var(--cream-warm);
}
.process-header {
  max-width: 560px;
  margin-bottom: 4rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(26, 46, 34, 0.1);
}
.step {
  background: var(--cream);
  padding: 2.5rem 2rem;
  position: relative;
}
.step-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(26, 46, 34, 0.07);
  line-height: 1;
  margin-bottom: 0.5rem;
  aria-hidden: true;
}
.step h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.6rem;
}
.step p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}
.step-divider {
  position: absolute;
  top: 3rem;
  right: -1px;
  width: 2px;
  height: 32px;
  background: var(--gold);
  opacity: 0.4;
  aria-hidden: true;
}
.process-note {
  margin-top: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(201, 168, 76, 0.1);
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.review-note {
  margin-top: 1.5rem;
  padding: 2rem 2.5rem;
  background: var(--forest);
}
.review-note h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.review-note p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.58);
  line-height: 1.75;
}

/* APPLY — Tally embed, forest-mid */
#apply {
  background: var(--forest-mid);
  padding: 6rem 4rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.apply-inner {
  max-width: 820px;
  margin: 0 auto;
}
.apply-inner .section-label {
  justify-content: center;
}
.apply-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.apply-title em {
  font-style: italic;
  color: var(--gold);
}
.apply-sub {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.55);
  text-align: center;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.apply-caveat {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.45);
  text-align: center;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-style: italic;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding-top: 1.2rem;
}
.apply-details {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.apply-detail {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.35);
  letter-spacing: 0.05em;
}
.tally-wrap {
  background: rgba(245, 240, 232, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 2.5rem;
}
.tally-wrap iframe {
  width: 100%;
  border: none;
  display: block;
  min-height: 500px;
}

/* NEWSLETTER — cream */
#newsletter {
  background: var(--cream);
  padding: 5rem 4rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.newsletter-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner .section-label {
  justify-content: center;
}
.nl-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.nl-title em {
  font-style: italic;
  color: var(--gold);
}
.nl-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}
.nl-tally {
  background: var(--cream-warm);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 2rem;
}
.nl-tally iframe {
  width: 100%;
  border: none;
  display: block;
  min-height: 180px;
}

/* BOTTOM CTA */
#cta-bottom {
  background: var(--gold);
  text-align: center;
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
}
#cta-bottom::before {
  content: "VETTED";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 18rem;
  font-weight: 700;
  color: rgba(26, 46, 34, 0.05);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.05em;
  aria-hidden: true;
}
.cta-bottom-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.cta-bottom-title em {
  font-style: italic;
}
.cta-bottom-body {
  font-size: 1rem;
  color: rgba(26, 46, 34, 0.65);
  max-width: 460px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}
.cta-bottom-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.btn-forest {
  background: var(--forest);
  color: var(--cream);
  padding: 0.9rem 2.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition: background 0.2s;
}
.btn-forest:hover {
  background: var(--forest-light);
}
.btn-forest-outline {
  border: 2px solid var(--forest);
  color: var(--forest);
  padding: 0.9rem 2.4rem;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-forest-outline:hover {
  background: var(--forest);
  color: var(--cream);
}

/* FOOTER */
footer {
  background: #111d15;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.f-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.25rem;
}
.f-logo span {
  color: var(--gold);
}
.f-full {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.3);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.footer-tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  display: block;
}
.social-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  border-radius: 2px;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}
footer h6 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245, 240, 232, 0.35);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
footer ul a {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
footer ul a:hover {
  color: var(--gold);
}
.footer-bottom {
  background: #0d1710;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.25);
  letter-spacing: 0.04em;
}

/* ANIMATIONS */
/* fade-up: content visible by default; animation only applies once JS marks html.js-ready */
.fade-up {
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
html.js-ready .fade-up {
  opacity: 0;
  transform: translateY(28px);
}
html.js-ready .fade-up.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.js-ready .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* MOBILE */
@media (max-width: 960px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  #page-hero {
    padding: 7rem 1.5rem 4rem;
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-mark {
    display: none;
  }
  section {
    padding: 4rem 1.5rem;
  }
  #offer,
  #looking {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dna-expanded {
    padding: 0;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  #apply {
    padding: 4rem 1.5rem;
  }
  .tally-wrap {
    padding: 1.5rem 1rem;
  }
  #newsletter {
    padding: 4rem 1.5rem;
  }
  #cta-bottom {
    padding: 4rem 1.5rem;
  }
  .quote-bar {
    padding: 2rem 1.5rem;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    padding: 3rem 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .hero-cta-row {
    flex-direction: column;
  }
  .dna-row {
    grid-template-columns: 3rem 1fr;
    gap: 1.2rem;
  }
}

/* JOBS PAGE SPECIFIC */
#page-hero {
  min-height: 58vh;
  background: var(--forest-mid);
  padding: 9rem 4rem 5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 3px solid var(--gold);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 240, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 232, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-mark-bg {
  position: absolute;
  right: -40px;
  bottom: -20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.04);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-breadcrumb {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-breadcrumb a {
  color: rgba(245, 240, 232, 0.65);
  text-decoration: none;
}
.hero-breadcrumb a:hover {
  color: var(--gold);
}
.page-hero-inner h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.08;
}
.page-hero-inner h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.62);
  line-height: 1.8;
  max-width: 560px;
  margin-top: 1.2rem;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.btn-gold {
  background: var(--gold);
  color: var(--forest);
  padding: 0.9rem 2.2rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition: background 0.2s;
}
.btn-gold:hover {
  background: var(--gold-light);
}
.btn-outline-light {
  border: 2px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  padding: 0.9rem 2.2rem;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline-light:hover {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}

/* NOTICE */
#notice {
  background: var(--cream-warm);
  padding: 3rem 4rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}
.notice-inner {
  max-width: 820px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.8rem;
  align-items: start;
}
.notice-icon {
  font-size: 1.6rem;
  padding-top: 0.15rem;
}
.notice-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.notice-inner p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.notice-inner a {
  color: var(--forest);
  font-weight: 600;
  text-underline-offset: 3px;
}
.notice-inner a:hover {
  color: var(--gold);
}

/* ROLES */
#roles {
  background: var(--white);
}
.roles-intro {
  max-width: 620px;
  margin-bottom: 4rem;
}

/* ROLE CARD BASE */
.role-card {
  padding: 3rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(26, 46, 34, 0.1);
}
.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 2rem;
}
.rtag {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: 1px;
  font-weight: 500;
}
.rtag.rt-type {
  background: var(--forest);
  color: var(--cream);
}
.rtag.rt-loc {
  background: transparent;
  border: 1px solid rgba(26, 46, 34, 0.22);
  color: var(--text-mid);
}
.rtag.rt-exp {
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold);
  background: transparent;
}
.rtag.rt-ind {
  background: rgba(201, 168, 76, 0.1);
  color: var(--forest);
  border: 1px solid rgba(201, 168, 76, 0.28);
}
.role-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: 1rem;
}
.role-card h2 em {
  font-style: italic;
  color: var(--gold);
}
.role-note {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.8rem;
}
.role-note strong {
  color: var(--forest);
}
.note-scope {
  background: rgba(201, 168, 76, 0.07);
  border-left: 3px solid var(--gold);
}
.note-hybrid {
  background: rgba(26, 46, 34, 0.04);
  border-left: 3px solid rgba(26, 46, 34, 0.2);
}
.role-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 680px;
  margin-bottom: 2rem;
}
.role-section-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.9rem;
}
.req-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.req-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.65;
}
.req-list li::before {
  content: "—";
  color: var(--gold);
  flex-shrink: 0;
}
.tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 2rem;
}
.tool-chip {
  font-size: 0.82rem;
  padding: 0.3rem 0.85rem;
  background: var(--cream-warm);
  color: var(--text-mid);
  border-radius: 1px;
  letter-spacing: 0.03em;
}
.tool-chip.plus {
  border: 1px dashed rgba(201, 168, 76, 0.4);
  background: transparent;
  color: var(--gold);
}
.disq-box {
  padding: 1.4rem 1.8rem;
  margin-bottom: 2rem;
  border-left: 3px solid rgba(180, 50, 50, 0.28);
  background: rgba(180, 50, 50, 0.03);
}
.disq-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(150, 40, 40, 0.65);
  margin-bottom: 0.75rem;
}
.disq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.disq-list li {
  font-size: 0.875rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.6;
}
.disq-list li::before {
  content: "✕";
  color: rgba(180, 50, 50, 0.45);
  flex-shrink: 0;
  font-size: 0.82rem;
  margin-top: 0.18rem;
}
.comp-bar {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 1rem 1.8rem;
  margin-bottom: 1.5rem;
  background: var(--forest);
}
.comp-label {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}
.comp-fig {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.comp-per {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.4);
}
.role-deadline {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.role-deadline strong {
  color: var(--text-mid);
}
.apply-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--forest);
  padding: 0.9rem 2.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.apply-btn:hover {
  background: var(--gold-light);
}

/* ROLE CARD VARIANTS */
.role-fashion {
  background: var(--cream-warm);
  border-color: rgba(201, 168, 76, 0.22);
}
.role-arch {
  background: var(--white);
  border-color: rgba(26, 46, 34, 0.1);
  border-left: 4px solid var(--forest-mid);
}

/* GENERAL CTA NOTE */
.general-note {
  margin-top: 1.5rem;
  padding: 1.8rem 2.2rem;
  background: var(--forest);
}
.general-note p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.8;
}
.general-note a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

/* BOTTOM CTA */
#cta-bottom {
  background: var(--cream-warm);
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
}
.cta-b-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-b-title em {
  font-style: italic;
  color: var(--gold);
}
.cta-b-body {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 460px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.cta-b-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.btn-dark {
  background: var(--forest);
  color: var(--cream);
  padding: 0.9rem 2.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition: background 0.2s;
}
.btn-dark:hover {
  background: var(--forest-light);
}
.btn-dark-out {
  border: 2px solid var(--forest);
  color: var(--forest);
  padding: 0.9rem 2.4rem;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition: all 0.2s;
}
.btn-dark-out:hover {
  background: var(--forest);
  color: var(--cream);
}

@media (max-width: 960px) {
  #page-hero {
    padding: 7rem 1.5rem 4rem;
    min-height: auto;
  }
  .hero-mark-bg {
    display: none;
  }
  #notice {
    padding: 2.5rem 1.5rem;
  }
  .notice-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .role-card {
    padding: 2rem 1.5rem;
  }
}
