/* ============================================================
   The Prestigious Cut® — Marketing Site
   Site-specific styles (layered on top of tokens.css)
   ============================================================ */

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

html, body { margin: 0; padding: 0; }

body {
  overflow-x: hidden;
}

/* Skip link */
.skip {
  position: absolute; left: -9999px; top: 0;
  background: #000; color: #fff; padding: 12px 18px;
  font-family: var(--font-sans); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- LAYOUT ---------- */
.wrap { max-width: var(--page-max); margin: 0 auto; padding: 0 48px; }
.wrap--narrow { max-width: 900px; }
.wrap--wide { max-width: var(--page-max-wide); }

.section { padding: 128px 0; }
.section--ivory { background: var(--ivory); }
.section--white { background: #FFFFFF; }
.section--black { background: var(--black); color: var(--ivory); }
.section--tight { padding: 96px 0; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247, 245, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.nav--dark {
  background: rgba(0, 0, 0, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.10);
}
.nav__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 22px 48px;
  display: flex; align-items: center; gap: 40px;
  min-height: var(--nav-h);
}
.nav__brand {
  display: flex; align-items: baseline; gap: 6px;
  text-decoration: none; border: 0;
}
.nav__brand-mark {
  font-family: var(--font-display);
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fg-strong);
}
.nav--dark .nav__brand-mark { color: var(--ivory); }
.nav__brand-r {
  font-family: var(--font-serif);
  font-style: italic; font-size: 13px;
  color: var(--gold-deep);
}
.nav--dark .nav__brand-r { color: var(--gold); }

.nav__links {
  margin-left: auto;
  display: flex; align-items: center; gap: 36px;
}
.nav__link {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--charcoal);
  cursor: pointer;
  position: relative;
  padding: 8px 0;
  border: 0 !important;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav--dark .nav__link { color: var(--silver); }
.nav__link:hover { color: var(--fg-strong); }
.nav--dark .nav__link:hover { color: var(--ivory); }
.nav__link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--fg-strong); }
.nav--dark .nav__link[aria-current="page"] { color: var(--ivory); }

.nav__cta {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 12px 22px;
  background: var(--black); color: var(--ivory);
  border: 0; cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-med) var(--ease-out);
}
.nav--dark .nav__cta { background: var(--gold); color: var(--black); }
.nav__cta:hover { background: #1a1a1a; }
.nav--dark .nav__cta:hover { background: var(--gold-soft); }

/* Mobile nav toggle */
.nav__menu-btn {
  display: none;
  margin-left: auto;
  background: transparent; border: 0;
  padding: 8px; cursor: pointer;
  color: var(--fg-strong);
}
.nav--dark .nav__menu-btn { color: var(--ivory); }

/* ---------- BUTTONS ---------- */
.btn {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 26px;
  border: 0;
  cursor: pointer;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  text-decoration: none;
  transition: all var(--dur-med) var(--ease-out);
}
.btn--lg { padding: 18px 34px; font-size: 13px; }
.btn--sm { padding: 10px 20px; font-size: 11px; }

.btn--primary {
  background: var(--black);
  color: var(--ivory);
}
.btn--primary:hover { background: #1a1a1a; }
.btn--primary .btn__label {
  position: relative; padding-bottom: 4px;
}
.btn--primary .btn__label::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}
.btn--primary:hover .btn__label::after { transform: scaleX(1); }

.btn--outline {
  background: transparent;
  color: var(--fg-strong);
  border: 1px solid rgba(0, 0, 0, 0.24);
}
.btn--outline:hover {
  color: var(--gold-deep);
  border-color: var(--gold);
}
.btn--outline-light {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.btn--outline-light:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.btn--text {
  padding: 10px 0;
  background: transparent;
  color: var(--fg-strong);
  border-bottom: 1px solid var(--gold);
}
.btn--text:hover { color: var(--gold-deep); }
.btn--text .arrow {
  transition: transform var(--dur-med) var(--ease-out);
}
.btn--text:hover .arrow { transform: translateX(4px); }

/* ---------- EYEBROW + RULE MOTIF ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-block;
}
.eyebrow--light { color: var(--gold-soft); }
.eyebrow--muted { color: var(--charcoal-mute); }

.rule-gold {
  height: 1px; background: var(--gold);
  width: 48px; border: 0; margin: 16px 0 24px;
}
.rule-gold--wide { width: 96px; }
.rule-gold--center { margin-left: auto; margin-right: auto; }

/* ---------- SECTION HEADER ---------- */
.sh {
  max-width: 780px;
}
.sh--center { margin: 0 auto; text-align: center; }
.sh__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fg-strong);
  margin: 0 0 20px;
  max-width: 20ch;
  text-wrap: balance;
}
.sh--center .sh__title { margin-left: auto; margin-right: auto; }
.sh--dark .sh__title { color: var(--ivory); }
.sh__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.55;
  color: var(--charcoal);
  margin: 0;
  max-width: 52ch;
}
.sh--center .sh__lead { margin-left: auto; margin-right: auto; }
.sh--dark .sh__lead { color: var(--silver); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  background: var(--black);
  overflow: hidden;
  color: var(--ivory);
  display: flex;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: contrast(1.02) saturate(0.92);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.15) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.60) 100%);
}
.hero__content {
  position: relative;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 160px 48px 96px;
  width: 100%;
  display: flex; flex-direction: column;
  justify-content: flex-end;
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 32px 0 0;
  max-width: 18ch;
  color: var(--ivory);
}
.hero__title em {
  font-style: italic;
  color: var(--gold-soft);
}
.hero__lead {
  margin-top: 32px;
  max-width: 52ch;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.55;
  color: #D9D6CE;
}
.hero__actions {
  margin-top: 40px;
  display: flex; gap: 16px; align-items: center;
  flex-wrap: wrap;
}
.hero__credit {
  position: absolute; right: 32px; bottom: 24px;
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(247,245,242,0.55);
}

/* Page hero (smaller than home hero) */
.page-hero {
  background: var(--ivory);
  padding: 160px 0 96px;
  border-bottom: 1px solid var(--border);
}
.page-hero__eyebrow { color: var(--gold-deep); }
.page-hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--fg-strong);
  margin: 24px 0 24px;
  max-width: 20ch;
  text-wrap: balance;
}
.page-hero__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--charcoal);
  max-width: 56ch;
  margin: 0;
}

/* ---------- CARDS ---------- */
.card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 36px;
  transition: box-shadow var(--dur-med) var(--ease-out),
              transform var(--dur-med) var(--ease-out);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card--featured {
  background: var(--black);
  color: var(--ivory);
  border: 0;
  box-shadow: 0 0 0 1px var(--gold), 0 20px 48px rgba(0,0,0,0.18);
}
.card--featured:hover {
  box-shadow: 0 0 0 1px var(--gold), 0 24px 56px rgba(0,0,0,0.24);
}
.card__eyebrow {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-deep);
  margin: 8px 0 0;
}
.card--featured .card__eyebrow { color: var(--gold-soft); }
.card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  color: var(--fg-strong);
  margin: 0;
}
.card--featured .card__title { color: var(--ivory); }
.card__body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0;
  flex: 1;
}
.card--featured .card__body { color: var(--silver); }
.card__more {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-strong);
  border-bottom: 1px solid var(--fg-strong);
  align-self: flex-start;
  padding-bottom: 4px;
  cursor: pointer;
  text-decoration: none;
  margin-top: 12px;
}
.card--featured .card__more { color: var(--gold); border-bottom-color: var(--gold); }

/* ---------- GRID HELPERS ---------- */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--gap-lg { gap: 56px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--black);
  color: var(--silver);
  padding: 96px 0 48px;
}
.footer__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 48px;
}
.footer__top {
  text-align: center;
  margin-bottom: 72px;
}
.footer__wordmark {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ivory);
}
.footer__wordmark-r {
  color: var(--gold); font-size: 14px; margin-left: 4px;
}
.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-soft);
  margin-top: 10px;
}
.footer__cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 72px;
}
.footer__intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--silver);
  margin: 0;
  max-width: 32ch;
}
.footer__contact {
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--charcoal-mute);
  line-height: 1.75;
}
.footer__col-title {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__list {
  margin: 0; padding: 0; list-style: none;
  font-family: var(--font-sans);
}
.footer__list li { line-height: 2; }
.footer__list a {
  color: var(--silver);
  font-size: 14px;
  text-decoration: none;
  border: 0;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer__list a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--charcoal-mute);
  letter-spacing: 0.06em;
  flex-wrap: wrap; gap: 16px;
}
.footer__bottom .links { display: flex; gap: 24px; }
.footer__bottom a { color: inherit; border: 0; }
.footer__bottom a:hover { color: var(--gold); }

/* ---------- FORMS ---------- */
.form {
  background: #FFFFFF;
  padding: 48px 44px;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}
.field-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--charcoal-mute);
  margin: 14px 0 6px;
}
.field {
  width: 100%; box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.15);
  border-bottom-color: var(--charcoal);
  padding: 13px 14px;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 15px; color: var(--fg-strong);
  outline: none;
  transition: all var(--dur-fast) var(--ease-out);
}
.field:focus {
  border-color: var(--gold);
  border-bottom-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(207,181,59,0.16);
}
textarea.field { resize: vertical; min-height: 120px; font-family: var(--font-sans); }
select.field { appearance: none; background: #FFFFFF url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%234A4A4A' d='M6 8L0 0h12z'/></svg>") no-repeat right 16px center; padding-right: 40px; }

/* ---------- STANDARD LIST (twelve touchpoints) ---------- */
.standard-list {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px; row-gap: 56px;
}
.standard-item {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.standard-item__num {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.24em;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.standard-item__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--fg-strong);
}
.standard-item__body {
  font-family: var(--font-sans);
  font-size: 14px; line-height: 1.7;
  color: var(--charcoal);
  margin: 0;
}

/* ---------- IMAGE PLACEHOLDER ---------- */
.img-placeholder {
  background:
    repeating-linear-gradient(
      135deg,
      #EFEBE4 0px, #EFEBE4 12px,
      #E5E0D7 12px, #E5E0D7 24px
    );
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  color: var(--charcoal-soft);
}
.img-placeholder__label {
  /* Labels hidden for launch — the striped block stays as a subtle
     editorial slot until real imagery is dropped in. */
  display: none;
}
.img-placeholder--dark {
  background:
    repeating-linear-gradient(
      135deg,
      #0F0F0F 0px, #0F0F0F 12px,
      #151515 12px, #151515 24px
    );
  color: var(--silver);
  border-color: rgba(255,255,255,0.10);
}
.img-placeholder--dark .img-placeholder__label {
  background: rgba(0,0,0,0.7);
  color: var(--silver);
  border-color: rgba(255,255,255,0.12);
}

/* ---------- PULLQUOTE ---------- */
.pullquote {
  padding: 128px 0;
  background: var(--black);
  color: var(--ivory);
  text-align: center;
}
.pullquote__mark {
  font-family: var(--font-display);
  font-size: 60px;
  letter-spacing: 0.08em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.pullquote__body {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.35;
  color: var(--ivory);
  margin: 0 auto;
  max-width: 24ch;
}
.pullquote__attr {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 24px;
}
.pullquote__source {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--silver);
  margin-top: 8px;
}

/* ---------- CHIPS / TAGS ---------- */
.chip {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--ivory-tint);
  color: var(--charcoal);
  border: 1px solid var(--border);
}
.chip--gold {
  background: transparent;
  color: var(--gold-deep);
  border-color: var(--gold);
}
.chip--dark {
  background: rgba(255,255,255,0.06);
  color: var(--gold-soft);
  border-color: rgba(207,181,59,0.35);
}

/* ---------- PLACEHOLDER BADGE ---------- */
.placeholder-note {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-mute);
  border: 1px dashed var(--silver-light);
  padding: 6px 10px;
  background: rgba(247,245,242,0.5);
}
.placeholder-note::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--warning);
}

/* ---------- TWO-COL PROSE ---------- */
.prose {
  max-width: 62ch;
}
.prose h2 {
  font-size: 36px; margin-top: 64px; margin-bottom: 16px;
}
.prose h3 {
  font-size: 26px; margin-top: 40px; margin-bottom: 12px;
}
.prose p, .prose li {
  font-family: var(--font-sans);
  font-size: 17px; line-height: 1.75;
  color: var(--charcoal);
}
.prose .lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 32px;
}
.prose blockquote {
  border-top: 1px solid var(--gold);
  padding-top: 20px;
  margin: 40px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  line-height: 1.4;
  color: var(--fg-strong);
}

/* ---------- APPEAR-ON-SCROLL ----------
   Applied via `.js-appear` on <html> after JS confirms observer support.
   Uses visibility rather than opacity to avoid renderer quirks; the
   effect is a soft slide-up rather than a fade. Falls back to visible
   if JS never runs. */
.js-appear .appear {
  transform: translateY(12px);
  transition: transform 500ms var(--ease-out);
  will-change: transform;
}
.js-appear .appear.is-visible {
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-appear .appear {
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- FOCUS STYLES (accessibility) ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .wrap { padding: 0 24px; }
  .nav__inner { padding: 18px 24px; }
  .nav__links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--ivory); padding: 24px; flex-direction: column; align-items: flex-start; gap: 20px; border-bottom: 1px solid var(--border); }
  .nav--dark .nav__links { background: var(--black); }
  .nav__links.is-open { display: flex; }
  .nav__menu-btn { display: inline-flex; margin-left: auto; }
  .nav__cta { align-self: stretch; text-align: center; justify-content: center; }
  .section { padding: 80px 0; }
  .hero__content { padding: 120px 24px 64px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__inner { padding: 0 24px; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .standard-list { grid-template-columns: 1fr; }
  .pullquote { padding: 80px 0; }
  .page-hero { padding: 100px 0 64px; }
}
@media (min-width: 901px) and (max-width: 1200px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
}

/* ---------- PRINT ---------- */
@media print {
  .nav, .footer { display: none; }
}
