:root {
  --black: #0a0a0a;
  --near-black: #111111;
  --white: #ffffff;
  --gray: #f4f4f2;
  --gray-2: #e9e9e5;
  --mid: #6f6f6f;
  --border: #deded9;
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.09);
  --header-height: 68px;
  --content-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--black);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-160%);
  border-radius: 4px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Shared header and navigation */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(10, 10, 10, 0.96);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.985);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(90%, var(--content-width));
  min-height: var(--header-height);
  margin-inline: auto;
}

.nav-logo,
.footer-logo {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-logo {
  position: relative;
  z-index: 1002;
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo span,
.footer-logo span {
  color: var(--gold);
}

.nav-panel {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 4vw, 52px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.73);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--gold);
  content: "";
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 4px;
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-cta {
  padding: 10px 22px;
  white-space: nowrap;
}

.nav-cta:hover,
.cta-button:hover {
  transform: translateY(-2px);
  background: var(--gold-light);
  box-shadow: 0 12px 26px rgba(201, 168, 76, 0.2);
}

.menu-toggle {
  position: relative;
  z-index: 1002;
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: opacity 0.2s ease, top 0.25s ease, transform 0.25s ease;
}

.menu-toggle span:nth-child(1) {
  top: 13px;
}

.menu-toggle span:nth-child(2) {
  top: 21px;
}

.menu-toggle span:nth-child(3) {
  top: 29px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* About page hero */
.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  align-items: center;
  padding: calc(var(--header-height) + 84px) 5% 84px;
  background:
    radial-gradient(circle at 78% 35%, rgba(201, 168, 76, 0.11), transparent 28%),
    linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
}

.page-hero::after {
  position: absolute;
  inset: auto 5% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.page-hero-watermark {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: max(-70px, -4vw);
  width: min(47vw, 620px);
  max-height: 82%;
  transform: translateY(-50%);
  object-fit: contain;
  opacity: 0.055;
  filter: brightness(7) grayscale(1);
  pointer-events: none;
  user-select: none;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.page-hero h1,
.about-section h2,
.values-section h2,
.process-section h2,
.cta-band h2,
.value-card h3,
.process-card h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 0.98;
}

.page-hero h1 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(58px, 9vw, 108px);
}

.hero-copy {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 300;
  line-height: 1.75;
}

/* Shared content sections */
.section-shell {
  width: min(90%, var(--content-width));
  margin-inline: auto;
}

.about-section {
  padding-block: clamp(74px, 9vw, 120px);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(44px, 8vw, 110px);
}

.about-section h2,
.process-section h2 {
  font-size: clamp(48px, 6vw, 78px);
}

.about-copy {
  max-width: 620px;
}

.about-copy p {
  margin: 0 0 24px;
  color: #4f4f4f;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.85;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-copy strong {
  color: var(--black);
  font-weight: 700;
}

.values-section {
  padding-block: clamp(76px, 9vw, 112px);
  background: var(--black);
  color: var(--white);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: end;
  gap: 50px;
  margin-bottom: clamp(42px, 6vw, 70px);
}

.section-heading-row h2 {
  font-size: clamp(52px, 7vw, 88px);
}

.section-heading-row > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.8;
}

.section-heading-row-dark > p {
  color: var(--mid);
}

.section-kicker-light {
  color: var(--gold-light);
}

.values-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
}

.values-grid {
  background: rgba(255, 255, 255, 0.12);
}

.value-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px);
  background: var(--near-black);
  transition: background 0.3s ease, transform 0.3s ease;
}

.value-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(201, 168, 76, 0.16);
  border-radius: 50%;
  content: "";
  transition: border-color 0.3s ease, transform 0.4s ease;
}

.value-card:hover {
  z-index: 1;
  transform: translateY(-4px);
  background: #151515;
}

.value-card:hover::after {
  transform: scale(1.12);
  border-color: rgba(201, 168, 76, 0.3);
}

.value-number {
  display: block;
  margin-bottom: 62px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.value-card h3,
.process-card h3 {
  margin-bottom: 18px;
  font-size: clamp(31px, 3vw, 42px);
}

.value-card p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  line-height: 1.8;
}

.process-section {
  padding-block: clamp(76px, 9vw, 120px);
}

.process-grid {
  margin: 0;
  padding: 0;
  background: var(--border);
  list-style: none;
}

.process-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 46px);
  background: var(--gray);
  transition: background 0.3s ease, transform 0.3s ease;
}

.process-card:hover {
  z-index: 1;
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.process-card > span {
  display: block;
  margin-bottom: 56px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.process-card p {
  max-width: 330px;
  margin: 0;
  color: var(--mid);
  line-height: 1.8;
}

/* Shared call to action */
.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: clamp(62px, 8vw, 100px) max(5%, calc((100% - var(--content-width)) / 2));
  background: var(--black);
  color: var(--white);
}

.cta-band h2 {
  font-size: clamp(48px, 7vw, 88px);
}

.cta-band h2 span {
  color: var(--gold);
}

.cta-button {
  min-width: 180px;
  padding: 15px 26px;
}

/* Shared footer */
.site-footer {
  padding: clamp(62px, 8vw, 94px) 5% 26px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  background: var(--near-black);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(2, minmax(170px, 0.6fr));
  gap: clamp(42px, 8vw, 100px);
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding-bottom: 62px;
}

.footer-logo {
  display: inline-block;
  color: var(--white);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  text-decoration: none;
}

.footer-tagline {
  margin: 14px 0 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer-column h2 {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column a:hover,
.footer-column a[aria-current="page"] {
  color: var(--gold-light);
}

.footer-contact address {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
}

.footer-contact address a {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-mark {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Progressive animation enhancement
   Content remains visible even if JavaScript does not load. */
.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal.is-visible {
  animation: premium-reveal 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

@keyframes premium-reveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet and mobile navigation */
@media (max-width: 920px) {

  /* Safe fallback when JavaScript is unavailable. */
  html:not(.nav-enhanced) .site-header {
    position: relative;
  }

  html:not(.nav-enhanced) .page-hero {
    padding-top: 68px;
  }
  .site-nav {
    flex-wrap: wrap;
    padding-block: 12px;
  }

  .nav-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    flex-basis: 100%;
    width: 100%;
    gap: 8px;
    justify-content: stretch;
    justify-items: stretch;
    align-content: start;
    align-items: stretch;
    padding-top: 12px;
    border-top: 1px solid rgba(201, 168, 76, 0.18);
  }

  .nav-links {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 0;
    justify-self: stretch;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links a {
    display: flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    padding: 16px 2px;
    font-size: 14px;
    text-align: left;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    margin-top: 18px;
    justify-self: stretch;
  }

  .nav-enhanced .site-nav {
    flex-wrap: nowrap;
    padding-block: 0;
  }

  .nav-enhanced .menu-toggle {
    display: block;
  }

  .nav-enhanced .nav-panel {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 1001;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    flex-basis: auto;
    width: 100%;
    min-height: calc(100dvh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    justify-content: stretch;
    justify-items: stretch;
    align-content: start;
    align-items: stretch;
    padding: 24px max(24px, 5vw) 34px;
    transform: translateY(-115%);
    visibility: hidden;
    opacity: 0;
    border-top: 1px solid rgba(201, 168, 76, 0.18);
    background: rgba(10, 10, 10, 0.99);
    transition: opacity 0.25s ease, transform 0.3s ease, visibility 0.3s;
  }

  .nav-enhanced .nav-panel.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .values-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .process-card {
    min-height: 0;
  }

  .value-number,
  .process-card > span {
    margin-bottom: 30px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .page-hero {
    min-height: 520px;
    padding-top: calc(var(--header-height) + 68px);
  }

  .page-hero-watermark {
    right: -120px;
    width: 520px;
    max-width: none;
    opacity: 0.045;
  }

  .page-hero h1 {
    font-size: clamp(56px, 18vw, 82px);
  }

  .about-grid,
  .section-heading-row,
  .cta-band,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    align-items: start;
    gap: 22px;
  }

  .section-heading-row > p {
    max-width: 520px;
  }

  .cta-band {
    justify-items: start;
  }

  .footer-top {
    gap: 42px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .site-nav,
  .section-shell {
    width: min(92%, var(--content-width));
  }

  .nav-logo {
    font-size: 21px;
    letter-spacing: 2.4px;
  }

  .page-hero {
    min-height: 500px;
    padding-inline: 4%;
  }

  .hero-copy {
    line-height: 1.65;
  }

  .value-card,
  .process-card {
    padding: 30px 24px;
  }

  .cta-band,
  .site-footer {
    padding-inline: 4%;
  }
}

/* Motion and interaction preferences */
@media (hover: none) {
  .value-card:hover,
  .process-card:hover,
  .nav-cta:hover,
  .cta-button:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal,
  .motion-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
