:root {
  --gold: #e8ad22;
  --gold-bright: #f6c84c;
  --ink: #12110f;
  --ink-soft: #1c1a17;
  --cream: #f7f2e7;
  --paper: #fffdf8;
  --muted: #6d685f;
  --line: rgba(18, 17, 15, 0.15);
  --bar-height: 58px;
  --header-height: 76px;
  --radius: 20px;
  --shadow: 0 22px 60px rgba(18, 17, 15, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding-top: var(--bar-height);
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

.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;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 2000;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.payment-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--bar-height);
  color: #fff;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.payment-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(1280px, calc(100% - 28px));
  min-height: var(--bar-height);
  margin-inline: auto;
}

.payment-bar p {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
}

.payment-bar__actions {
  display: flex;
  gap: 8px;
}

.payment-bar__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 13px;
  color: var(--ink);
  background: var(--gold-bright);
  border: 1px solid var(--gold-bright);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 160ms ease, background 160ms ease;
}

.payment-bar__link:hover {
  background: #ffd568;
  transform: translateY(-1px);
}

.payment-bar__link--light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.payment-bar__link--light:hover {
  color: var(--ink);
  background: #fff;
}

.payment-bar__secure {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: var(--bar-height);
  z-index: 900;
  height: var(--header-height);
  background: rgba(18, 17, 15, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.brand__main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand__sub {
  margin-top: 7px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.38em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

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

.site-nav .nav-cta {
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold-bright);
  border-radius: 999px;
}

.site-nav .nav-cta:hover {
  color: var(--ink);
  background: #ffd568;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--bar-height) - var(--header-height));
  color: #fff;
  background: var(--ink) url("../images/hero.webp") center 42% / cover no-repeat;
  isolation: isolate;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(12, 11, 9, 0.92) 0%, rgba(12, 11, 9, 0.73) 48%, rgba(12, 11, 9, 0.2) 100%);
}

.hero__content {
  align-self: center;
  padding-block: 96px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.eyebrow--dark {
  color: #9a6d00;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.15rem, 7.4vw, 6.9rem);
}

h2 {
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
}

.hero__lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.06rem, 2vw, 1.3rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button-row--center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--gold {
  color: var(--ink);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.button--gold:hover {
  background: #ffd568;
  border-color: #ffd568;
}

.button--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
}

.button--outline:hover {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.button--light {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.button--full {
  width: 100%;
}

.hero__location {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.section {
  padding-block: 110px;
}

.section--light {
  background: var(--cream);
}

.section--dark {
  color: #fff;
  background: var(--ink);
}

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

.prose p {
  margin: 0 0 20px;
  color: #4f4a43;
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  color: #765400;
  font-weight: 900;
  text-underline-offset: 5px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading > p:last-child {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.section-heading--dark > p:last-child {
  color: var(--muted);
}

.services {
  position: relative;
  background-image: linear-gradient(rgba(14, 13, 11, 0.93), rgba(14, 13, 11, 0.97)), url("../images/services.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

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

.service-card {
  min-height: 260px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(7px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(246, 200, 76, 0.46);
}

.service-card__number {
  display: block;
  margin-bottom: 44px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.service-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-grid li {
  min-height: 250px;
  padding: 30px;
  background: var(--paper);
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 42px;
  color: var(--ink);
  background: var(--gold-bright);
  border-radius: 50%;
  font-weight: 900;
}

.process-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.process-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.ventures {
  background: var(--paper);
}

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

.venture-grid a {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 28px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #1d1a15 0%, #0c0b09 100%);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.venture-grid a::after {
  position: absolute;
  right: -25px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  content: "";
  background: radial-gradient(circle, rgba(246, 200, 76, 0.38), transparent 68%);
}

.venture-grid a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.venture-grid span {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.venture-grid strong {
  margin-top: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.venture-grid small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 700;
}

.payment-section {
  color: #fff;
  background: #9b6d00;
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}

.payment-layout > div:first-child > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.79);
}

.payment-layout .eyebrow {
  color: #fff2bd;
}

.stripe-note {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 13px;
}

.payment-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.payment-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: #fff;
  background: rgba(18, 17, 15, 0.89);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.payment-card__label {
  min-height: 32px;
  margin: 0 0 25px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.payment-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.payment-card > p:not(.payment-card__label) {
  margin: 14px 0 26px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
}

.payment-card .button {
  margin-top: auto;
}

.contact {
  position: relative;
  padding-block: 125px;
  color: #fff;
  text-align: center;
  background: var(--ink) url("../images/contact.webp") center / cover no-repeat;
  isolation: isolate;
}

.contact__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(12, 11, 9, 0.84);
}

.contact__content {
  max-width: 850px;
}

.contact p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding: 72px 0 24px;
  color: #fff;
  background: #0b0a09;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
}

.brand--footer {
  margin-bottom: 22px;
}

.site-footer__grid p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.site-footer h2 {
  margin: 0 0 18px;
  font-family: inherit;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.site-footer__grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__grid > div:not(:first-child) a {
  margin: 5px 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  text-underline-offset: 4px;
}

.site-footer__grid a:hover {
  color: var(--gold-bright);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  margin-top: 58px;
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.site-footer__bottom p {
  margin: 0;
}

.legal-page {
  min-height: 100vh;
  background: var(--cream);
}

.legal-header {
  padding: 28px 0;
  background: var(--ink);
}

.legal-content {
  width: min(780px, calc(100% - 40px));
  padding-block: 76px;
  margin-inline: auto;
}

.legal-content h1 {
  color: var(--ink);
  font-size: clamp(2.7rem, 7vw, 5rem);
}

.legal-content h2 {
  margin: 42px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
}

.legal-content p,
.legal-content li {
  color: #4f4a43;
}

.legal-content .updated {
  color: var(--muted);
  font-size: 14px;
}

.legal-back {
  display: inline-flex;
  margin-top: 46px;
  font-weight: 900;
  text-underline-offset: 5px;
}

@media (max-width: 980px) {
  .payment-bar__secure {
    display: none;
  }

  .site-nav {
    gap: 18px;
  }

  .card-grid,
  .venture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-layout {
    grid-template-columns: 1fr;
  }
}

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

  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .payment-bar__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 7px 10px;
    align-content: center;
    justify-content: stretch;
    width: min(100% - 20px, 700px);
  }

  .payment-bar p {
    max-width: 270px;
    font-size: 11px;
  }

  .payment-bar p strong {
    display: block;
  }

  .payment-bar__actions {
    justify-content: flex-end;
  }

  .payment-bar__link {
    min-height: 32px;
    padding: 6px 9px;
    font-size: 9px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--bar-height) + var(--header-height));
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 14px 20px 24px;
    visibility: hidden;
    background: rgba(18, 17, 15, 0.99);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

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

  .site-nav a {
    padding: 15px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .site-nav .nav-cta {
    margin-top: 14px;
    text-align: center;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 680px;
    background-position: 62% center;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(12, 11, 9, 0.91), rgba(12, 11, 9, 0.56));
  }

  .hero__content {
    padding-block: 76px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .section {
    padding-block: 78px;
  }

  .split,
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .services {
    background-attachment: scroll;
  }

  .payment-cards {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  :root {
    --bar-height: 108px;
  }

  .payment-bar__inner {
    grid-template-columns: 1fr;
  }

  .payment-bar p {
    max-width: none;
    text-align: center;
  }

  .payment-bar__actions {
    justify-content: center;
  }

  .payment-bar__link {
    min-height: 34px;
    font-size: 9px;
  }

  .brand__main {
    font-size: 21px;
  }

  .brand__sub {
    font-size: 8px;
  }

  .button-row .button {
    width: 100%;
  }

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

  .service-card {
    min-height: 230px;
  }

  .contact {
    padding-block: 92px;
  }
}

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

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