/* ============================================================
   HR Force NY — Shared Stylesheet
   ============================================================ */

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

:root {
  /* Slate, dark red, gold & white palette */
  --slate:    #1e1f23;
  --red:      #4A1411;
  --red-deep: #2d0807;
  --blush:    #E0AE9F;
  --coral:    #d39485;
  --brand-gold:       #D9B866;
  --brand-gold-hover: #e5c683;

  /* Buttons are gold on every surface */
  --btn-bg:       var(--brand-gold);
  --btn-hover-bg: var(--brand-gold-hover);

  /* Legacy token names, remapped. White surfaces are the default:
     highlights there are coral. Dark surfaces re-scope them to gold below. */
  --navy:     var(--slate);
  --gold:     var(--coral);
  --gold-hover: #C47F6F;
  --btn-ink:       var(--slate);
  --btn-hover-ink: var(--slate);
  --cream:    #f5f5f7;
  --rose:     #9A5A4F;
  --page-bg:  #FFFFFF;
  --white:    #FFFFFF;
  --text-dark: #1F1B1A;
  --text-mid:  #4F4745;
  --text-light: #D9CCC8;
  --max-width: 1200px;
}

/* Dark surfaces: gold highlights */
.section-navy,
.site-header,
.site-footer,
.hero-billboard,
.minefield-card {
  --gold:       var(--brand-gold);
  --gold-hover: var(--brand-gold-hover);
  --btn-ink:       var(--slate);
  --btn-hover-ink: var(--slate);
  --rose:  var(--blush);
  --cream: #FFFFFF;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--page-bg);
  line-height: 1.7;
}

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

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

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-navy    { background: var(--navy); color: var(--cream); }
.section-cream   { background: var(--cream); color: var(--text-dark); }
.section-white   { background: var(--white); color: var(--text-dark); }
.section-page-bg { background: var(--page-bg); color: var(--text-dark); }

.section-pad   { padding: 5rem 0; }
.section-pad-lg { padding: 7rem 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.section-navy .eyebrow  { color: var(--rose); }
.section-cream .eyebrow { color: var(--gold); }
.section-white .eyebrow { color: var(--gold); }
.section-page-bg .eyebrow { color: var(--gold); }

.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy h4 { color: var(--cream); }

.section-navy p,
.section-navy li { color: rgba(255, 255, 255, 0.82); }

ul {
  list-style: none;
}

.bullet-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.6rem;
  color: var(--text-mid);
}

.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 2px;
  background: var(--gold);
}

.section-navy .bullet-list li { color: rgba(255, 255, 255, 0.82); }
.section-navy .bullet-list li::before { background: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-gold {
  display: inline-block;
  background: var(--btn-bg);
  color: var(--btn-ink);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 2px solid var(--btn-bg);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-gold:hover {
  background: var(--btn-hover-bg);
  border-color: var(--btn-hover-bg);
  color: var(--btn-hover-ink);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--red-deep);
  height: 72px;
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link img {
  height: 48px;
  width: auto;
}

/* Horizontal text wordmark for nav */
.logo-wordmark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  line-height: 1;
}
.logo-wordmark .logo-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo-wordmark .logo-monogram .mono-h { color: var(--cream); }
.logo-wordmark .logo-monogram .mono-r { color: var(--gold); }
.logo-wordmark .logo-divider {
  width: 1px;
  height: 32px;
  background: color-mix(in srgb, var(--gold) 40%, transparent);
}
.logo-wordmark .logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.logo-wordmark .logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-variant-caps: small-caps;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cream);
  line-height: 1;
}
.logo-wordmark .logo-tagline {
  font-family: 'Jost', sans-serif;
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--gold);
}

.main-nav .btn-gold {
  color: var(--btn-ink);
}

.main-nav .btn-gold:hover {
  color: var(--btn-hover-ink);
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-top: 1px;
  transition: transform 0.2s;
}
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after {
  transform: rotate(180deg);
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--red-deep);
  border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  border-top: 2px solid var(--gold);
  min-width: 260px;
  z-index: 200;
  padding: 0.5rem 0;
  padding-top: 0.75rem;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dropdown-menu a:last-child {
  border-bottom: none;
}
.dropdown-menu a:hover {
  background: color-mix(in srgb, var(--gold) 8%, transparent);
  color: var(--gold);
}

/* Mobile menu toggle (shown at 900px and below) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  margin-right: -10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  height: 2px;
  background: var(--cream);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--red-deep);
  border-top: 2px solid var(--gold);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo img {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-wordmark {
  margin-bottom: 0.5rem;
}

.footer-wordmark .logo-monogram {
  font-size: 3.6rem;
}

.footer-wordmark .logo-name {
  font-size: 1.875rem;
}

.footer-logo p {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
  text-align: center;
}

.footer-legal p {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: 7rem 0 6rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
  max-width: 820px;
}

.hero .subhead {
  font-family: 'Jost', sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin-bottom: 0;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */

.service-card {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(30, 31, 35, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card h2,
.service-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--navy);
}

.service-card .card-meta {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.service-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.service-card .card-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  align-self: flex-start;
  margin-top: auto;
  transition: color 0.2s;
}

.service-card .card-link:hover { color: var(--gold); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

/* ============================================================
   PULLQUOTE
   ============================================================ */

.intro-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
  max-width: 700px;
  text-wrap: balance;
}

.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 2rem 0;
}

.intro-body-prose .gold-rule {
  margin: 0.75rem 0;
}

.intro-body-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.intro-body-prose p:not(.intro-statement) {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text-mid);
}

.intro-body-prose p + p {
  margin-top: 1.1rem;
}

.intro-body-prose strong {
  color: var(--text-dark);
  font-weight: 500;
}

.minefield-card {
  background: var(--navy);
  padding: 2rem 1.75rem;
}

.card-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.pressure-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pressure-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.pressure-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 2px;
  background: var(--gold);
  margin-top: 0.6em;
}

.card-divider {
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, var(--gold) 20%, transparent);
  margin: 1.5rem 0;
}

.card-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 0.925rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.pullquote {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0 0;
  background: color-mix(in srgb, var(--gold) 6%, transparent);
}

.pullquote blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.pullquote cite {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  font-style: normal;
}

/* ============================================================
   DIVIDER RULE
   ============================================================ */

.gold-rule {
  border: none;
  border-top: 2px solid var(--gold);
  margin: 3rem 0;
  opacity: 0.4;
}

/* ============================================================
   WHO WE SERVE — AUDIENCE SECTIONS
   ============================================================ */

.audience-section {
  padding: 4.5rem 0;
}

.audience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 1.5rem;
}

.audience-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.audience-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  align-self: flex-start;
  transition: border-color 0.2s;
}

.audience-links a:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* ============================================================
   HOW IT WORKS — 3 COLUMN
   ============================================================ */

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.how-block h4 {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.how-block p,
.how-block li {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.78);
}

/* ============================================================
   PRINCIPLES / BELIEFS CARDS
   ============================================================ */

.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.principle-card {
  border-left: 3px solid var(--gold);
  padding: 1.5rem;
  background: color-mix(in srgb, var(--gold) 6%, transparent);
}

.principle-card h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.principle-card p {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  padding: 5rem 0;
  text-align: center;
}

.cta-band h2 {
  margin-bottom: 1rem;
}

.cta-band p {
  max-width: 680px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .btn-row {
  justify-content: center;
}

/* ============================================================
   WHAT'S INCLUDED — SUBSECTIONS
   ============================================================ */

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.included-item h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold);
}

.included-item p,
.included-item li {
  font-size: 0.93rem;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact-intro h2 {
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.contact-intro p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

.contact-intro .raul-bullets {
  margin-top: 1.5rem;
}

.contact-form-wrap {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 2.5rem;
  box-shadow: 0 2px 20px rgba(30, 31, 35, 0.15);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--page-bg);
  border: 1px solid #DDDCDA;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4A4A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--gold) 20%, transparent);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  margin-top: 1.5rem;
}

.form-submit .btn-gold {
  width: 100%;
  text-align: center;
  border: none;
  font-size: 0.875rem;
  padding: 1rem 2rem;
  cursor: pointer;
}

.prefer-email {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
}

.prefer-email h3 {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.prefer-email p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin: 0;
}

.prefer-email a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.prefer-email a:hover {
  color: var(--gold-hover);
}

/* ============================================================
   HERO BILLBOARD (homepage — two-column, photo bleeds right edge)
   ============================================================ */

.hero-billboard {
  position: relative;
  background: var(--navy);
  display: flex;
  align-items: center;
  min-height: 640px;
  overflow: hidden;
}

/* Background extends the studio backdrop (sampled from the photo's edges) so the
   portrait can sit centered in the open space without cropping or a hard edge.
   The hard stop at ~91.4% is where the tabletop begins. */
.hero-billboard__photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(to bottom,
    #49606b 0%, #4e6370 10%, #556c7a 20%, #5a7380 30%, #5f7786 40%,
    #607988 50%, #5c7585 60%, #5b7281 70%, #566e7b 80%, #546a77 91.2%,
    #232628 91.6%, #1d1e1c 100%);
}

/* Gradient: 100% navy on left, linear fade to transparent at ~62% */
.hero-billboard__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, var(--navy) 48%, transparent 82%);
  z-index: 1;
  pointer-events: none;
}

/* Full-height portrait, Raul centered in the open space right of the text */
.hero-billboard__photo img {
  position: absolute;
  top: 0;
  left: 72.5%;
  height: 100%;
  width: auto;
  max-width: none;
  transform: translateX(-50%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.hero-billboard__text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 2rem 5rem max(2rem, calc((100vw - 1200px) / 2 + 2rem));
  max-width: 920px;
  color: var(--cream);
}

.hero-billboard__text .eyebrow { color: var(--rose); }

.hero-billboard__text h1 {
  color: var(--cream);
  font-size: 2.8rem;
  max-width: 700px;
  margin-bottom: 1.25rem;
}

.hero-billboard__text .subhead {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 500px;
  margin-bottom: 0;
}

.hero-billboard__text .subhead + .subhead {
  margin-top: 1.1rem;
}

/* ============================================================
   PHOTO / PORTRAIT TREATMENTS
   ============================================================ */

/* About leadership bio */
.leader-bio {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}

.leader-photo {
  position: sticky;
  top: 96px;
}

.leader-photo img {
  width: 100%;
  display: block;
  border-left: 4px solid var(--gold);
}

/* Contact portrait */
.contact-portrait {
  margin-bottom: 1.5rem;
}

.contact-portrait img {
  width: 100%;
  max-width: 300px;
  border-left: 3px solid var(--gold);
}

/* ============================================================
   PAGE HEADER (non-hero interior pages)
   ============================================================ */

.page-header {
  padding: 5rem 0 4rem;
}

.page-header h1 {
  margin-bottom: 1.25rem;
}

.page-header .lead {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  max-width: 680px;
}

/* About: page header with the B&W Broadway photo on the right */
.page-header--photo {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 468px;
  overflow: hidden;
}

.page-header--photo .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Full-bleed street photo, so no studio backdrop. Sized in px against the fixed
   468px header; the right offset tracks the viewport so Raul stays ~74% across
   and the photo always bleeds off the right edge. */
.page-header--photo .hero-billboard__photo {
  background: var(--navy);
}

.page-header--photo .hero-billboard__photo img {
  top: -234px; /* top of Raul's hair lands 40px below the nav */
  left: auto;
  right: min(0px, calc(26vw - 518px));
  height: 832px;
  transform: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 15%);
  mask-image: linear-gradient(to right, transparent 0%, #000 15%);
}

/* ============================================================
   INLINE LINK STYLE
   ============================================================ */

.text-link {
  color: var(--gold);
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 40%, transparent);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}

.text-link:hover { border-color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */


@media (max-width: 900px) {
  /* Header nav collapses into a dropdown panel */
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 2rem 1.75rem;
    background: var(--red-deep);
    border-bottom: 2px solid var(--gold);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .nav-open .main-nav {
    display: flex;
  }

  .main-nav > a:not(.btn-gold),
  .nav-dropdown > a {
    padding: 1rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-dropdown > a::after {
    display: none;
  }

  .dropdown-menu,
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    display: block;
    position: static;
    min-width: 0;
    background: none;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0 0.5rem 1rem;
  }

  .dropdown-menu a {
    padding: 0.6rem 0;
    font-size: 0.9rem;
    white-space: normal;
    color: rgba(255, 255, 255, 0.78);
    border-bottom: none;
  }

  .dropdown-menu a:hover {
    background: none;
  }

  .main-nav .btn-gold {
    margin-top: 1.5rem;
    text-align: center;
  }

  .grid-2,
  .grid-3,
  .how-grid,
  .principles-grid,
  .included-grid,
  .audience-inner,
  .footer-inner,
  .contact-layout,
  .hero-split,
  .leader-bio {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-billboard {
    min-height: auto;
    align-items: center;
  }

  .hero-billboard__photo {
    display: none;
  }

  .page-header--photo {
    min-height: auto;
  }

  .hero-billboard__text {
    padding: 4rem 2rem;
    max-width: 100%;
  }

  .hero-billboard__text h1 {
    font-size: clamp(1.75rem, 5vw, 2.8rem);
  }

  .leader-photo {
    position: static;
    max-width: 320px;
  }

  .footer-inner {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .intro-body-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }

  .hero { padding: 4rem 0; }
  .section-pad { padding: 3.5rem 0; }
  .section-pad-lg { padding: 4.5rem 0; }

  .contact-form-wrap { padding: 1.5rem; }
}
