:root {
  --forest: #0E2A20;
  --forest-2: #14392C;
  --forest-3: #1D4939;
  --cream: #F4F1EA;
  --cream-2: #E9E4DA;
  --ink: #14201B;
  --muted: #68736D;
  --white: #FFFFFF;
  --gold: #B89A63;
  --gold-light: #D4C29E;
  --line: rgba(14, 42, 32, 0.14);
  --shadow: 0 30px 80px rgba(14, 42, 32, 0.14);
  --radius: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button, input, textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  transform: translateY(-150%);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 250ms ease, box-shadow 250ms ease, backdrop-filter 250ms ease;
}

.site-header.scrolled {
  background: rgba(244, 241, 234, 0.88);
  box-shadow: 0 1px 0 rgba(14, 42, 32, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--forest);
  border-radius: 50%;
  font-family: "Instrument Serif", serif;
  font-size: 21px;
}

.brand-name {
  font-size: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #36443D;
  font-size: 14px;
  font-weight: 500;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--forest);
  transition: right 200ms ease;
}

.site-nav > a:not(.nav-cta):hover::after {
  right: 0;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--cream);
  background: var(--forest);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: var(--forest);
  transition: transform 200ms ease;
}

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 90px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.5), transparent 30%),
    var(--cream);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  width: 560px;
  height: 560px;
  right: -180px;
  top: 80px;
  background: radial-gradient(circle, rgba(184,154,99,.24), rgba(184,154,99,0) 68%);
}

.hero-glow-two {
  width: 460px;
  height: 460px;
  left: -280px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(14,42,32,.12), rgba(14,42,32,0) 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--forest);
  font-size: clamp(64px, 7.2vw, 104px);
  line-height: 0.92;
}

h1 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 34px;
  color: #51605A;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--cream);
  background: var(--forest);
  box-shadow: 0 16px 40px rgba(14,42,32,.2);
}

.button-primary:hover {
  background: var(--forest-2);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,.5);
}

.button-secondary:hover {
  background: var(--white);
}

.button-full {
  width: 100%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  color: #68736D;
  font-size: 13px;
}

.hero-proof span {
  position: relative;
  padding-left: 16px;
}

.hero-proof span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-panel {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  color: var(--cream);
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), transparent 45%),
    var(--forest);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 27px;
  pointer-events: none;
}

.panel-top,
.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-label,
.panel-footer {
  color: rgba(244,241,234,.62);
  font-size: 10px;
  letter-spacing: .14em;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold-light);
  font-size: 11px;
}

.status-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9CC0A7;
  box-shadow: 0 0 0 5px rgba(156,192,167,.12);
}

.growth-card {
  margin: 32px 0 22px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}

.metric-label {
  margin-bottom: 4px;
  color: rgba(244,241,234,.55);
  font-size: 12px;
}

.metric-value {
  margin-bottom: 26px;
  font-family: "Instrument Serif", serif;
  font-size: 30px;
  line-height: 1.2;
}

.growth-line {
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.growth-line span {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--gold-light), rgba(184,154,99,.35));
}

.growth-line span:nth-child(1) { height: 24%; }
.growth-line span:nth-child(2) { height: 40%; }
.growth-line span:nth-child(3) { height: 54%; }
.growth-line span:nth-child(4) { height: 71%; }
.growth-line span:nth-child(5) { height: 94%; }

.panel-steps {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.mini-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 17px;
  border-radius: 15px;
  background: rgba(255,255,255,.035);
}

.mini-step > span {
  color: var(--gold);
  font-size: 12px;
}

.mini-step strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.mini-step p {
  margin: 0;
  color: rgba(244,241,234,.56);
  font-size: 12px;
}

.panel-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  letter-spacing: .04em;
}

.logo-strip {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.25);
}

.logo-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  color: #35433D;
  font-size: 13px;
  font-weight: 600;
}

.section {
  padding: 120px 0;
}

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

.section-dark {
  color: var(--cream);
  background: var(--forest);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 64px;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--forest);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.02;
}

.section-heading > p {
  max-width: 480px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 16px;
}

.section-heading-dark h2 {
  color: var(--cream);
}

.section-heading-dark > p {
  color: rgba(244,241,234,.58);
}

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

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.34);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.7);
  box-shadow: 0 24px 60px rgba(14,42,32,.08);
}

.service-number {
  margin-bottom: auto;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
}

.service-card h3 {
  margin-bottom: 14px;
  font-family: "Instrument Serif", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.08;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-card-accent {
  justify-content: flex-end;
  color: var(--cream);
  border-color: transparent;
  background: var(--forest);
}

.service-card-accent:hover {
  background: var(--forest-2);
}

.service-card-accent .eyebrow {
  margin-bottom: auto;
}

.service-card-accent h3 {
  color: var(--cream);
}

.service-card-accent a {
  margin-top: 20px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
}

.process-list {
  border-top: 1px solid rgba(255,255,255,.14);
}

.process-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.process-index {
  color: var(--gold);
  font-size: 13px;
}

.process-item h3 {
  margin-bottom: 6px;
  font-family: "Instrument Serif", serif;
  font-size: 30px;
  font-weight: 400;
}

.process-item p {
  margin-bottom: 0;
  color: rgba(244,241,234,.55);
  font-size: 14px;
}

.process-tag {
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: rgba(244,241,234,.7);
  font-size: 11px;
}

.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: stretch;
}

.about-visual {
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px;
  border-radius: 26px;
  color: var(--cream);
  background:
    radial-gradient(circle at 80% 20%, rgba(184,154,99,.22), transparent 30%),
    var(--forest);
}

.monogram {
  font-family: "Instrument Serif", serif;
  font-size: 180px;
  line-height: 1;
  color: var(--gold-light);
}

.about-visual p {
  max-width: 360px;
  margin: 0;
  color: rgba(244,241,234,.68);
  font-family: "Instrument Serif", serif;
  font-size: 28px;
  line-height: 1.25;
}

.about-copy {
  align-self: center;
}

.about-copy h2 {
  margin-bottom: 28px;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.values {
  display: grid;
  gap: 18px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.values div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
}

.values strong {
  color: var(--forest);
}

.values span {
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  color: var(--cream);
  background:
    radial-gradient(circle at 15% 20%, rgba(184,154,99,.18), transparent 28%),
    var(--forest-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 28px;
  color: var(--cream);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 480px;
  color: rgba(244,241,234,.62);
  font-size: 17px;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 40px;
  color: var(--gold-light);
  font-size: 14px;
}

.contact-form {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(18px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  color: rgba(244,241,234,.72);
  font-size: 12px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  outline: none;
  color: var(--cream);
  background: rgba(255,255,255,.06);
  transition: border 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(212,194,158,.7);
  background: rgba(255,255,255,.09);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 13px 0 0;
  text-align: center;
  color: rgba(244,241,234,.42);
  font-size: 11px;
}

.site-footer {
  padding: 44px 0;
  color: var(--cream);
  background: #081B15;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr auto;
  gap: 40px;
  align-items: end;
}

.brand-footer .brand-mark {
  color: var(--forest);
  background: var(--gold-light);
}

.footer-inner > div:first-child > p {
  margin: 12px 0 0;
  color: rgba(244,241,234,.45);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(244,241,234,.66);
  font-size: 12px;
}

.footer-meta {
  text-align: right;
  color: rgba(244,241,234,.42);
  font-size: 11px;
}

.footer-meta p {
  margin-bottom: 5px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }

@media (max-width: 980px) {
  .hero-grid,
  .section-heading,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 54px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .section-heading {
    gap: 22px;
  }

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

  .about-grid,
  .contact-grid {
    gap: 50px;
  }

  .about-visual {
    min-height: 470px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    height: 74px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    color: var(--cream);
    background: var(--forest);
    font-size: 28px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-cta {
    margin-top: 10px;
    color: var(--forest);
    background: var(--cream);
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding: 122px 0 74px;
  }

  h1 {
    font-size: clamp(58px, 17vw, 82px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-proof {
    display: grid;
  }

  .hero-panel {
    padding: 20px;
  }

  .logo-strip .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .industry-list {
    justify-content: flex-start;
  }

  .section {
    padding: 88px 0;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .process-item {
    grid-template-columns: 46px 1fr;
    gap: 18px;
  }

  .process-tag {
    display: none;
  }

  .process-item h3 {
    font-size: 26px;
  }

  .about-visual {
    min-height: 420px;
    padding: 30px;
  }

  .monogram {
    font-size: 130px;
  }

  .about-visual p {
    font-size: 24px;
  }

  .values div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .contact-form {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-meta {
    grid-column: auto;
  }
}

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

  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* AUCTARIS FINAL BRAND DIRECTION */
:root {
  --forest: #0E2A20;
  --forest-2: #15382C;
  --forest-3: #21483A;
  --cream: #F2EEE4;
  --cream-2: #E5DED0;
  --ink: #12241D;
  --muted: #66746D;
  --gold: #C7A66A;
  --gold-light: #E2C990;
}

body {
  background:
    radial-gradient(circle at 15% 12%, rgba(199,166,106,.08), transparent 26%),
    var(--cream);
}

.brand-logo {
  display: inline-flex;
  width: 278px;
  max-width: 48vw;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header {
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(242,238,228,.93);
  border-bottom-color: rgba(14,42,32,.1);
}

.hero {
  color: var(--cream);
  background:
    linear-gradient(120deg, rgba(255,255,255,.025), transparent 40%),
    repeating-linear-gradient(100deg, rgba(255,255,255,.012) 0 1px, transparent 1px 8px),
    var(--forest);
}

.hero::after {
  background: rgba(226,201,144,.24);
}

.hero h1 {
  color: var(--cream);
}

.hero h1 em {
  color: var(--gold-light);
}

.hero-text {
  color: rgba(242,238,228,.69);
}

.hero .button-primary {
  color: var(--forest);
  background: var(--gold-light);
  box-shadow: 0 16px 42px rgba(0,0,0,.22);
}

.hero .button-primary:hover {
  background: #EAD7AA;
}

.hero .button-secondary {
  color: var(--cream);
  border-color: rgba(242,238,228,.22);
  background: rgba(255,255,255,.04);
}

.hero .button-secondary:hover {
  background: rgba(255,255,255,.09);
}

.hero-proof {
  color: rgba(242,238,228,.58);
}

.hero-glow-one {
  background: radial-gradient(circle, rgba(199,166,106,.25), rgba(199,166,106,0) 68%);
}

.hero-glow-two {
  background: radial-gradient(circle, rgba(226,201,144,.08), rgba(226,201,144,0) 70%);
}

.hero-panel {
  overflow: hidden;
  border-color: rgba(226,201,144,.22);
  background:
    linear-gradient(145deg, rgba(226,201,144,.08), transparent 45%),
    #091F18;
  box-shadow: 0 35px 90px rgba(0,0,0,.34);
}

.panel-watermark {
  position: absolute;
  top: -55px;
  right: -35px;
  width: 230px;
  opacity: .06;
  transform: rotate(7deg);
  pointer-events: none;
}

.logo-strip {
  border-color: rgba(226,201,144,.2);
  color: var(--cream);
  background: #0A2119;
}

.logo-strip p {
  color: rgba(242,238,228,.48);
}

.industry-list {
  color: rgba(242,238,228,.76);
}

.section-light {
  background:
    repeating-linear-gradient(92deg, rgba(14,42,32,.012) 0 1px, transparent 1px 10px),
    var(--cream);
}

.service-card {
  background: rgba(255,255,255,.38);
}

.service-card-accent {
  background:
    linear-gradient(145deg, rgba(226,201,144,.10), transparent 45%),
    var(--forest);
}

.section-dark,
.contact-section {
  background:
    radial-gradient(circle at 80% 14%, rgba(199,166,106,.13), transparent 24%),
    repeating-linear-gradient(100deg, rgba(255,255,255,.012) 0 1px, transparent 1px 9px),
    var(--forest);
}

.about-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(226,201,144,.16), transparent 31%),
    repeating-linear-gradient(100deg, rgba(255,255,255,.012) 0 1px, transparent 1px 9px),
    var(--forest);
}

.about-mark {
  width: min(220px, 55%);
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.25));
}

.contact-form {
  border-color: rgba(226,201,144,.2);
  background: rgba(5,24,18,.48);
}

.site-footer {
  border-top: 1px solid rgba(226,201,144,.16);
  background:
    repeating-linear-gradient(100deg, rgba(255,255,255,.01) 0 1px, transparent 1px 9px),
    #071A14;
}

.brand-footer {
  width: 275px;
}

@media (max-width: 760px) {
  .brand-logo {
    width: 220px;
    max-width: 68vw;
  }

  .site-header:not(.scrolled) .brand-logo img {
    /* dark wordmark remains visible because mobile header sits over green hero */
    content: url("assets/auctaris-logo.svg");
  }

  .site-header.scrolled .brand-logo img {
    content: url("assets/auctaris-logo-dark.svg");
  }

  .hero {
    padding-top: 118px;
  }

  .panel-watermark {
    width: 180px;
  }
}

@media (min-width: 761px) {
  .site-header:not(.scrolled) .brand-logo img {
    content: url("assets/auctaris-logo.svg");
  }

  .site-header:not(.scrolled) .site-nav {
    color: rgba(242,238,228,.75);
  }

  .site-header:not(.scrolled) .site-nav > a:not(.nav-cta)::after {
    background: var(--gold-light);
  }

  .site-header:not(.scrolled) .nav-cta {
    color: var(--forest);
    background: var(--gold-light);
  }

  .site-header:not(.scrolled) .menu-toggle span {
    background: var(--cream);
  }
}


/* VERSION 4 — EXACT USER-SELECTED AUCTARIS BRAND */
:root {
  --forest: #0E2A20;
  --forest-2: #123127;
  --forest-3: #173A2E;
  --cream: #F2EBDD;
  --cream-2: #ECE2D1;
  --ink: #10221C;
  --muted: #5F6C66;
  --gold: #D4AF7A;
  --gold-light: #D4AF7A;
  --line: rgba(14, 42, 32, 0.14);
}

body {
  background: var(--cream);
}

.brand-logo-exact {
  width: 330px;
  max-width: 56vw;
}

.brand-logo-exact img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header {
  background: rgba(14, 42, 32, 0.92);
  box-shadow: 0 1px 0 rgba(212, 175, 122, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  background: rgba(14, 42, 32, 0.96);
  box-shadow: 0 1px 0 rgba(212, 175, 122, 0.18);
  border-bottom-color: rgba(212, 175, 122, 0.1);
}

.site-nav {
  color: rgba(242, 235, 221, 0.80);
}

.site-nav > a:not(.nav-cta)::after {
  background: var(--gold);
}

.nav-cta {
  color: var(--forest);
  background: var(--gold);
}

.menu-toggle span {
  background: var(--cream);
}

.hero {
  padding-top: 150px;
  background:
    radial-gradient(circle at 82% 18%, rgba(212,175,122,.10), transparent 22%),
    linear-gradient(135deg, rgba(255,255,255,.03), transparent 36%),
    var(--forest);
}

.hero::after {
  background: rgba(212,175,122,.18);
}

.hero h1 {
  color: var(--cream);
}

.hero h1 em {
  color: var(--gold);
}

.hero-text,
.hero-proof {
  color: rgba(242,235,221,.66);
}

.hero .button-primary {
  color: var(--forest);
  background: var(--gold);
}

.hero .button-primary:hover {
  background: #DEBB88;
}

.hero .button-secondary {
  color: var(--cream);
  border-color: rgba(242,235,221,.20);
  background: rgba(255,255,255,.04);
}

.hero .button-secondary:hover {
  background: rgba(255,255,255,.08);
}

.hero-panel {
  border-color: rgba(212,175,122,.18);
  background:
    linear-gradient(145deg, rgba(212,175,122,.06), transparent 45%),
    #0A211A;
}

.panel-watermark.exact-watermark {
  width: 190px;
  top: -28px;
  right: -12px;
  opacity: 0.13;
  border-radius: 50%;
}

.logo-strip {
  color: var(--cream);
  border-color: rgba(212,175,122,.18);
  background: #0A221A;
}

.logo-strip p {
  color: rgba(242,235,221,.48);
}

.industry-list {
  color: rgba(242,235,221,.75);
}

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

.section-heading h2,
.about-copy h2 {
  color: var(--forest);
}

.eyebrow {
  color: var(--gold);
}

.service-card {
  background: rgba(255,255,255,.45);
  border-color: rgba(14,42,32,.10);
}

.service-card:hover {
  box-shadow: 0 24px 60px rgba(14,42,32,.08);
}

.service-number,
.process-index,
.status-dot,
.service-card-accent a,
.contact-details {
  color: var(--gold);
}

.service-card-accent {
  color: var(--cream);
  background:
    linear-gradient(145deg, rgba(212,175,122,.08), transparent 45%),
    var(--forest);
}

.section-dark {
  background:
    radial-gradient(circle at 82% 16%, rgba(212,175,122,.10), transparent 24%),
    var(--forest);
}

.process-list {
  border-top-color: rgba(242,235,221,.14);
}

.process-item {
  border-bottom-color: rgba(242,235,221,.14);
}

.process-item p,
.section-heading-dark > p,
.contact-copy > p:not(.eyebrow),
.about-visual p,
.mini-step p,
.metric-label,
.panel-label,
.panel-footer {
  color: rgba(242,235,221,.58);
}

.about-visual {
  background:
    radial-gradient(circle at 78% 20%, rgba(212,175,122,.14), transparent 32%),
    var(--forest);
}

.about-mark.exact-monogram {
  width: min(240px, 62%);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

.contact-section {
  background:
    radial-gradient(circle at 18% 14%, rgba(212,175,122,.10), transparent 24%),
    var(--forest-2);
}

.contact-copy h2 {
  color: var(--cream);
}

.contact-form {
  border-color: rgba(212,175,122,.20);
  background: rgba(255,255,255,.05);
}

.contact-form input,
.contact-form textarea {
  border-color: rgba(242,235,221,.12);
  color: var(--cream);
  background: rgba(255,255,255,.05);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(212,175,122,.70);
  background: rgba(255,255,255,.08);
}

.site-footer {
  border-top: 1px solid rgba(212,175,122,.16);
  background: #081B15;
}

.brand-footer {
  width: 300px;
  max-width: 65vw;
}

.footer-links {
  color: rgba(242,235,221,.66);
}

.footer-meta,
.footer-inner > div:first-child > p {
  color: rgba(242,235,221,.42);
}

@media (max-width: 760px) {
  .brand-logo-exact {
    width: 245px;
    max-width: 72vw;
  }

  .brand-footer {
    width: 245px;
  }

  .site-nav {
    background: rgba(14, 42, 32, 0.98);
  }
}


/* VERSION 5 — USE PRIMARY AUCTARIS LOGO AS THE ACTUAL MAIN LOGO */
.brand-logo-primary {
  width: 195px;
  max-width: 38vw;
}

.brand-logo-primary img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-primary-logo {
  width: 210px;
  max-width: 48vw;
}

.site-header .header-inner {
  height: 112px;
}

.hero {
  padding-top: 180px;
}

.site-header,
.site-header.scrolled {
  background: rgba(14, 42, 32, 0.98);
}

@media (max-width: 980px) {
  .brand-logo-primary {
    width: 170px;
    max-width: 42vw;
  }

  .site-header .header-inner {
    height: 102px;
  }

  .hero {
    padding-top: 168px;
  }
}

@media (max-width: 760px) {
  .brand-logo-primary {
    width: 145px;
    max-width: 48vw;
  }

  .footer-primary-logo {
    width: 175px;
  }

  .site-header .header-inner {
    height: 90px;
  }

  .hero {
    padding-top: 148px;
  }
}


/* VERSION 7 — STRONGER BRAND-STYLE BACKGROUND CONTRAST */
body {
  background:
    radial-gradient(circle at 12% 10%, rgba(212,175,122,.10), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(14,42,32,.10), transparent 28%),
    linear-gradient(180deg, #F5EEDF 0%, #F2EBDD 42%, #EFE5D3 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 14%, rgba(242,235,221,.10), transparent 18%),
    radial-gradient(circle at 22% 76%, rgba(212,175,122,.14), transparent 22%),
    linear-gradient(110deg, rgba(255,255,255,.05), transparent 32%),
    linear-gradient(180deg, #103227 0%, #0E2A20 45%, #0A221A 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.035) 26%, transparent 42%),
    linear-gradient(0deg, rgba(0,0,0,.14), transparent 36%);
}

.hero-panel {
  background:
    radial-gradient(circle at 72% 20%, rgba(212,175,122,.14), transparent 26%),
    linear-gradient(145deg, rgba(242,235,221,.05), transparent 34%),
    linear-gradient(180deg, #123428 0%, #0B241C 100%);
  box-shadow: 0 35px 90px rgba(0,0,0,.34);
}

.logo-strip {
  background:
    linear-gradient(180deg, #0B241C 0%, #0A2119 100%);
}

.section-light {
  position: relative;
  background:
    radial-gradient(circle at 14% 10%, rgba(212,175,122,.07), transparent 20%),
    radial-gradient(circle at 86% 18%, rgba(14,42,32,.05), transparent 22%),
    linear-gradient(180deg, #F5EEDF 0%, #F2EBDD 60%, #EEE3D1 100%);
}

.section-light::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255,255,255,.08), transparent 18%),
    linear-gradient(180deg, transparent 0%, rgba(14,42,32,.02) 100%);
}

.section-dark {
  position: relative;
  background:
    radial-gradient(circle at 82% 18%, rgba(212,175,122,.12), transparent 22%),
    radial-gradient(circle at 18% 80%, rgba(242,235,221,.04), transparent 18%),
    linear-gradient(180deg, #133529 0%, #0E2A20 56%, #0A221A 100%);
}

.section-dark::before,
.contact-section::before,
.about-visual::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(255,255,255,.035), transparent 24%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.10) 100%);
}

.about-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(212,175,122,.16), transparent 28%),
    radial-gradient(circle at 24% 86%, rgba(242,235,221,.05), transparent 18%),
    linear-gradient(180deg, #133529 0%, #0E2A20 55%, #0A231B 100%);
}

.contact-section {
  position: relative;
  background:
    radial-gradient(circle at 18% 14%, rgba(212,175,122,.14), transparent 20%),
    radial-gradient(circle at 82% 20%, rgba(242,235,221,.05), transparent 18%),
    linear-gradient(180deg, #15382C 0%, #102F25 100%);
}

.site-footer {
  position: relative;
  background:
    radial-gradient(circle at 18% 18%, rgba(212,175,122,.10), transparent 20%),
    linear-gradient(180deg, #0B2119 0%, #071A14 100%);
}

.service-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.60) 0%, rgba(255,255,255,.40) 100%);
  border-color: rgba(14,42,32,.12);
}

.service-card-accent {
  background:
    radial-gradient(circle at 78% 18%, rgba(212,175,122,.14), transparent 24%),
    linear-gradient(180deg, #14362A 0%, #0E2A20 100%);
}

.contact-form {
  background:
    linear-gradient(180deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.04) 100%);
  box-shadow: 0 25px 70px rgba(0,0,0,.18);
}

@media (max-width: 760px) {
  .hero,
  .section-light,
  .section-dark,
  .contact-section,
  .about-visual,
  .site-footer {
    background-attachment: scroll;
  }
}


/* VERSION 8 — FORCE TRUE MAIN PRIMARY LOGO IN HEADER */
.brand-logo-main-v2 {
  width: 235px !important;
  max-width: 46vw !important;
  display: inline-flex;
  align-items: center;
}

.brand-logo-main-v2 img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-logo-main-v2 {
  width: 245px !important;
  max-width: 52vw !important;
}

.site-header .header-inner {
  height: 120px !important;
}

.hero {
  padding-top: 188px !important;
}

@media (max-width: 980px) {
  .brand-logo-main-v2 {
    width: 205px !important;
    max-width: 52vw !important;
  }

  .site-header .header-inner {
    height: 108px !important;
  }

  .hero {
    padding-top: 176px !important;
  }
}

@media (max-width: 760px) {
  .brand-logo-main-v2 {
    width: 180px !important;
    max-width: 58vw !important;
  }

  .footer-logo-main-v2 {
    width: 190px !important;
  }

  .site-header .header-inner {
    height: 96px !important;
  }

  .hero {
    padding-top: 154px !important;
  }
}


/* VERSION 9 — DARKER BRAND-BOARD MOOD + PHONE REMOVED */
:root {
  --forest: #0E2A20;
  --forest-2: #0B241C;
  --forest-3: #081B15;
  --forest-4: #061610;
  --cream: #F2EBDD;
  --cream-2: #E8DDCA;
  --ink: #10221C;
  --muted: #CFC4B3;
  --gold: #D4AF7A;
  --gold-light: #E1BE8B;
}

body {
  background:
    radial-gradient(circle at 82% 12%, rgba(212,175,122,.07), transparent 18%),
    radial-gradient(circle at 16% 84%, rgba(255,255,255,.02), transparent 18%),
    linear-gradient(180deg, #0A1F18 0%, #081B15 100%);
  color: var(--cream);
}

.site-header,
.site-header.scrolled {
  background:
    linear-gradient(180deg, rgba(6,22,16,.98) 0%, rgba(11,36,28,.98) 100%);
  box-shadow: 0 1px 0 rgba(212, 175, 122, 0.12);
  border-bottom-color: rgba(212,175,122,.08);
}

.hero {
  background:
    radial-gradient(circle at 78% 14%, rgba(255,255,255,.04), transparent 16%),
    radial-gradient(circle at 22% 78%, rgba(212,175,122,.12), transparent 18%),
    linear-gradient(135deg, rgba(255,255,255,.025), transparent 30%),
    linear-gradient(180deg, #0C271E 0%, #081B15 52%, #061610 100%);
}

.hero::before {
  background:
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.03) 22%, transparent 40%),
    linear-gradient(180deg, rgba(0,0,0,.12), transparent 28%);
}

.hero::after {
  background: rgba(212,175,122,.16);
}

.logo-strip {
  background:
    linear-gradient(180deg, #081B15 0%, #061610 100%);
  border-color: rgba(212,175,122,.16);
}

.section-light,
.section-dark,
.contact-section,
.site-footer {
  position: relative;
}

.section-light {
  color: var(--cream);
  background:
    radial-gradient(circle at 16% 10%, rgba(212,175,122,.08), transparent 18%),
    radial-gradient(circle at 86% 22%, rgba(255,255,255,.03), transparent 18%),
    linear-gradient(180deg, #0D271F 0%, #091E18 100%);
}

.section-light::before,
.section-dark::before,
.contact-section::before,
.about-visual::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(255,255,255,.02), transparent 24%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.12) 100%);
}

.section-dark {
  background:
    radial-gradient(circle at 82% 18%, rgba(212,175,122,.10), transparent 22%),
    linear-gradient(180deg, #0B241C 0%, #061610 100%);
}

.contact-section {
  background:
    radial-gradient(circle at 18% 14%, rgba(212,175,122,.12), transparent 20%),
    radial-gradient(circle at 82% 20%, rgba(255,255,255,.03), transparent 16%),
    linear-gradient(180deg, #0B241C 0%, #061610 100%);
}

.site-footer {
  background:
    radial-gradient(circle at 18% 18%, rgba(212,175,122,.08), transparent 20%),
    linear-gradient(180deg, #061610 0%, #04100C 100%);
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  color: var(--cream);
}

.section-heading > p,
.about-copy > p:not(.eyebrow),
.values span,
.service-card p {
  color: rgba(242,235,221,.70);
}

.section-heading-dark > p,
.contact-copy > p:not(.eyebrow),
.process-item p,
.about-visual p,
.mini-step p,
.metric-label,
.panel-label,
.panel-footer,
.footer-meta,
.footer-inner > div:first-child > p,
.logo-strip p {
  color: rgba(242,235,221,.58);
}

.industry-list,
.hero-proof,
.footer-links,
.site-nav {
  color: rgba(242,235,221,.78);
}

.service-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.03) 100%);
  border-color: rgba(212,175,122,.12);
  box-shadow: 0 20px 48px rgba(0,0,0,.10);
}

.service-card:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.05) 100%);
  box-shadow: 0 24px 58px rgba(0,0,0,.18);
}

.service-card h3,
.values strong {
  color: var(--cream);
}

.service-card-accent {
  background:
    radial-gradient(circle at 78% 18%, rgba(212,175,122,.12), transparent 22%),
    linear-gradient(180deg, #103227 0%, #081B15 100%);
}

.hero-panel,
.about-visual {
  background:
    radial-gradient(circle at 76% 18%, rgba(212,175,122,.14), transparent 24%),
    linear-gradient(180deg, #103126 0%, #081B15 100%);
}

.contact-form {
  background:
    linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.03) 100%);
  border-color: rgba(212,175,122,.18);
  box-shadow: 0 25px 70px rgba(0,0,0,.24);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,.04);
  border-color: rgba(242,235,221,.10);
  color: var(--cream);
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255,255,255,.06);
  border-color: rgba(212,175,122,.65);
}

.button-secondary {
  border-color: rgba(242,235,221,.18);
  background: rgba(255,255,255,.03);
}

.button-secondary:hover {
  background: rgba(255,255,255,.06);
}

.about-mark.exact-monogram {
  box-shadow: 0 22px 46px rgba(0,0,0,.32);
}

.process-list {
  border-top-color: rgba(242,235,221,.12);
}

.process-item {
  border-bottom-color: rgba(242,235,221,.12);
}

.process-tag {
  color: rgba(242,235,221,.68);
  border-color: rgba(242,235,221,.12);
}

.footer-meta a,
.contact-details a,
.site-footer a {
  color: var(--cream);
}

@media (max-width: 760px) {
  .section-light,
  .section-dark,
  .contact-section,
  .site-footer,
  .hero {
    background-attachment: scroll;
  }
}


/* VERSION 10 — FIX HEADER LOGO SWAP + DARKER GREEN + TRUER GOLD */

/* Use a deeper overall palette closer to the original brand board */
:root {
  --forest: #081B15;
  --forest-2: #0A2119;
  --forest-3: #0E2A20;
  --forest-4: #133529;
  --cream: #F2EBDD;
  --cream-2: #E8DDCA;
  --gold: #D4AF7A;
  --gold-light: #E2BF8B;
  --gold-deep: #C59C63;
  --muted: rgba(242, 235, 221, 0.74);
}

/* NEW site-brand class so old .brand-logo swap rules never affect it */
.site-brand-main-v3 {
  width: 205px !important;
  max-width: 42vw !important;
  display: inline-flex;
  align-items: center;
}

.site-brand-main-v3 img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-logo-main-v3 {
  width: 220px !important;
  max-width: 52vw !important;
}

/* Force one consistent logo at all times */
.site-header .site-brand-main-v3 img,
.site-header.scrolled .site-brand-main-v3 img,
.site-header:not(.scrolled) .site-brand-main-v3 img {
  content: normal !important;
}

/* Header */
.site-header,
.site-header.scrolled {
  background:
    linear-gradient(180deg, rgba(6,18,14,.985) 0%, rgba(9,27,21,.985) 100%) !important;
  box-shadow: 0 1px 0 rgba(212,175,122,.12) !important;
  border-bottom-color: rgba(212,175,122,.10) !important;
}

.site-header .header-inner {
  height: 108px !important;
}

.site-nav {
  color: rgba(242,235,221,.82) !important;
}

.site-nav > a:not(.nav-cta)::after {
  background: var(--gold) !important;
}

.nav-cta {
  color: #081B15 !important;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%) !important;
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
}

.menu-toggle span {
  background: var(--cream) !important;
}

/* Hero section darker and richer */
.hero {
  padding-top: 168px !important;
  background:
    radial-gradient(circle at 83% 18%, rgba(226,191,139,.10), transparent 18%),
    radial-gradient(circle at 24% 80%, rgba(255,255,255,.025), transparent 18%),
    linear-gradient(140deg, rgba(255,255,255,.03), transparent 28%),
    linear-gradient(180deg, #0F3327 0%, #0A2119 38%, #081B15 74%, #06120E 100%) !important;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.022) 24%, transparent 42%),
    linear-gradient(180deg, rgba(0,0,0,.10), transparent 28%);
}

.hero::after {
  background: rgba(212,175,122,.18) !important;
}

.hero-glow-one {
  background: radial-gradient(circle, rgba(212,175,122,.18), rgba(212,175,122,0) 68%) !important;
}

.hero-glow-two {
  background: radial-gradient(circle, rgba(255,255,255,.06), rgba(255,255,255,0) 70%) !important;
}

/* Hero text */
.hero h1 {
  color: var(--cream) !important;
}

.hero h1 em {
  color: var(--gold) !important;
}

.hero-text {
  color: rgba(242,235,221,.72) !important;
}

.hero-proof {
  color: rgba(242,235,221,.66) !important;
}

.hero-proof span::before {
  background: var(--gold) !important;
}

/* Buttons */
.hero .button-primary,
.button-primary {
  color: #081B15 !important;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%) !important;
  box-shadow: 0 14px 36px rgba(0,0,0,.20) !important;
}

.hero .button-primary:hover,
.button-primary:hover {
  background: linear-gradient(180deg, #E7C897 0%, #DAB57E 100%) !important;
}

.hero .button-secondary,
.button-secondary {
  color: var(--cream) !important;
  border-color: rgba(242,235,221,.22) !important;
  background: rgba(255,255,255,.04) !important;
}

.hero .button-secondary:hover,
.button-secondary:hover {
  background: rgba(255,255,255,.07) !important;
}

/* Right-side hero panel darker and more refined */
.hero-panel {
  border-color: rgba(212,175,122,.20) !important;
  background:
    radial-gradient(circle at 78% 18%, rgba(212,175,122,.10), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.015) 100%),
    linear-gradient(180deg, #123428 0%, #0B241C 52%, #081B15 100%) !important;
  box-shadow: 0 34px 82px rgba(0,0,0,.28) !important;
}

.growth-card,
.mini-step {
  background: rgba(255,255,255,.035) !important;
  border-color: rgba(242,235,221,.07) !important;
}

.growth-line span {
  background: linear-gradient(180deg, var(--gold-light), rgba(197,156,99,.36)) !important;
}

/* Sections — darker and more cohesive */
.logo-strip {
  background: linear-gradient(180deg, #081B15 0%, #06120E 100%) !important;
  border-color: rgba(212,175,122,.16) !important;
}

.section-light {
  color: var(--cream) !important;
  background:
    radial-gradient(circle at 18% 12%, rgba(212,175,122,.08), transparent 18%),
    radial-gradient(circle at 86% 22%, rgba(255,255,255,.025), transparent 18%),
    linear-gradient(180deg, #0D271F 0%, #091E18 54%, #071913 100%) !important;
}

.section-dark,
.contact-section,
.site-footer {
  background:
    radial-gradient(circle at 82% 18%, rgba(212,175,122,.09), transparent 22%),
    linear-gradient(180deg, #0B241C 0%, #081B15 58%, #05110D 100%) !important;
}

.section-heading h2,
.section-heading-dark h2,
.about-copy h2,
.contact-copy h2,
.service-card h3,
.process-item h3,
.values strong {
  color: var(--cream) !important;
}

.section-heading > p,
.section-heading-dark > p,
.about-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow),
.process-item p,
.values span,
.service-card p,
.logo-strip p,
.footer-meta,
.footer-inner > div:first-child > p,
.footer-links {
  color: rgba(242,235,221,.68) !important;
}

.industry-list {
  color: rgba(242,235,221,.78) !important;
}

.eyebrow,
.service-number,
.process-index,
.service-card-accent a,
.contact-details,
.status-dot,
.status-dot::before {
  color: var(--gold) !important;
}

/* Cards */
.service-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.055) 0%, rgba(255,255,255,.028) 100%) !important;
  border-color: rgba(212,175,122,.14) !important;
  box-shadow: 0 18px 46px rgba(0,0,0,.12) !important;
}

.service-card:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,.075) 0%, rgba(255,255,255,.04) 100%) !important;
  box-shadow: 0 24px 56px rgba(0,0,0,.18) !important;
}

.service-card-accent {
  background:
    radial-gradient(circle at 78% 18%, rgba(212,175,122,.12), transparent 22%),
    linear-gradient(180deg, #14362A 0%, #0B241C 62%, #081B15 100%) !important;
}

.about-visual {
  background:
    radial-gradient(circle at 78% 20%, rgba(212,175,122,.12), transparent 24%),
    linear-gradient(180deg, #123428 0%, #0B241C 56%, #081B15 100%) !important;
}

/* Form */
.contact-form {
  background:
    linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.028) 100%) !important;
  border-color: rgba(212,175,122,.18) !important;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,.04) !important;
  border-color: rgba(242,235,221,.10) !important;
  color: var(--cream) !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(212,175,122,.60) !important;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(212,175,122,.14) !important;
}

/* Mobile */
@media (max-width: 980px) {
  .site-brand-main-v3 {
    width: 185px !important;
    max-width: 48vw !important;
  }

  .site-header .header-inner {
    height: 98px !important;
  }

  .hero {
    padding-top: 156px !important;
  }
}

@media (max-width: 760px) {
  .site-brand-main-v3 {
    width: 160px !important;
    max-width: 56vw !important;
  }

  .footer-logo-main-v3 {
    width: 175px !important;
  }

  .site-header .header-inner {
    height: 88px !important;
  }

  .hero {
    padding-top: 144px !important;
  }

  .site-nav {
    background: rgba(6,18,14,.985) !important;
  }
}


/* VERSION 11 — TRANSPARENT LOGOS + MORE IVORY / WHITE BLEND */

:root {
  --cream: #F5F0E6;
  --cream-2: #EEE6D8;
  --gold: #D4AF7A;
  --gold-light: #E5C795;
}

/* Transparent logo assets blend into the background */
.site-brand-main-v3 {
  width: 195px !important;
  max-width: 40vw !important;
}

.site-brand-main-v3 img,
.footer-logo-main-v3 img {
  background: transparent !important;
  mix-blend-mode: normal;
}

.footer-logo-main-v3 {
  width: 210px !important;
  max-width: 48vw !important;
}

/* Add a little more ivory / white depth similar to the brand-board look */
body {
  background:
    radial-gradient(circle at 78% 10%, rgba(245,240,230,.055), transparent 16%),
    radial-gradient(circle at 18% 86%, rgba(212,175,122,.07), transparent 18%),
    linear-gradient(180deg, #0B241C 0%, #081B15 100%) !important;
}

.hero {
  background:
    radial-gradient(circle at 78% 16%, rgba(245,240,230,.08), transparent 17%),
    radial-gradient(circle at 22% 78%, rgba(212,175,122,.12), transparent 18%),
    linear-gradient(145deg, rgba(255,255,255,.045), transparent 24%),
    linear-gradient(180deg, #11382B 0%, #0B241C 40%, #081B15 76%, #06120E 100%) !important;
}

.hero::before {
  background:
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.032) 24%, transparent 42%),
    linear-gradient(180deg, rgba(0,0,0,.08), transparent 28%) !important;
}

.logo-strip {
  background:
    linear-gradient(180deg, #091F18 0%, #06120E 100%) !important;
}

.section-light {
  background:
    radial-gradient(circle at 18% 12%, rgba(245,240,230,.06), transparent 15%),
    radial-gradient(circle at 86% 20%, rgba(212,175,122,.08), transparent 18%),
    linear-gradient(180deg, #102E24 0%, #0B241C 58%, #081B15 100%) !important;
}

.section-dark,
.contact-section,
.site-footer {
  background:
    radial-gradient(circle at 82% 18%, rgba(245,240,230,.045), transparent 14%),
    radial-gradient(circle at 16% 80%, rgba(212,175,122,.08), transparent 18%),
    linear-gradient(180deg, #0D281F 0%, #081B15 64%, #05110D 100%) !important;
}

.about-visual,
.hero-panel,
.service-card-accent {
  background:
    radial-gradient(circle at 78% 18%, rgba(245,240,230,.04), transparent 16%),
    radial-gradient(circle at 70% 20%, rgba(212,175,122,.11), transparent 22%),
    linear-gradient(180deg, #133A2C 0%, #0B241C 58%, #081B15 100%) !important;
}

.service-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.04) 100%) !important;
}

.contact-form {
  background:
    linear-gradient(180deg, rgba(255,255,255,.065) 0%, rgba(255,255,255,.032) 100%) !important;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,.05) !important;
}

.hero h1,
.section-heading h2,
.section-heading-dark h2,
.about-copy h2,
.contact-copy h2,
.service-card h3,
.process-item h3,
.values strong {
  color: #F7F2E9 !important;
}

.hero-text,
.section-heading > p,
.section-heading-dark > p,
.about-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow),
.process-item p,
.values span,
.service-card p,
.about-visual p,
.logo-strip p,
.footer-meta,
.footer-inner > div:first-child > p,
.footer-links,
.hero-proof,
.industry-list,
.site-nav {
  color: rgba(247,242,233,.74) !important;
}

.button-secondary {
  background: rgba(255,255,255,.055) !important;
}

.button-secondary:hover {
  background: rgba(255,255,255,.08) !important;
}

@media (max-width: 980px) {
  .site-brand-main-v3 {
    width: 178px !important;
  }
}

@media (max-width: 760px) {
  .site-brand-main-v3 {
    width: 154px !important;
  }
  .footer-logo-main-v3 {
    width: 172px !important;
  }
}


/* VERSION 12 — FIT PRIMARY LOGO CLEANLY INSIDE HEADER */
.site-brand-main-v3 {
  width: 150px !important;
  max-width: 30vw !important;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.site-brand-main-v3 img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-header .header-inner {
  height: 92px !important;
  display: flex;
  align-items: center;
}

.hero {
  padding-top: 150px !important;
}

@media (max-width: 980px) {
  .site-brand-main-v3 {
    width: 138px !important;
    max-width: 34vw !important;
  }

  .site-header .header-inner {
    height: 88px !important;
  }

  .hero {
    padding-top: 144px !important;
  }
}

@media (max-width: 760px) {
  .site-brand-main-v3 {
    width: 122px !important;
    max-width: 40vw !important;
  }

  .site-header .header-inner {
    height: 78px !important;
  }

  .hero {
    padding-top: 132px !important;
  }
}


/* VERSION 13 — LARGER HEADER LOGO BUT STILL FITS CLEANLY */
.site-brand-main-v3 {
  width: 178px !important;
  max-width: 36vw !important;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.site-brand-main-v3 img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-header .header-inner {
  height: 98px !important;
  display: flex;
  align-items: center;
}

.hero {
  padding-top: 156px !important;
}

@media (max-width: 980px) {
  .site-brand-main-v3 {
    width: 162px !important;
    max-width: 40vw !important;
  }

  .site-header .header-inner {
    height: 92px !important;
  }

  .hero {
    padding-top: 148px !important;
  }
}

@media (max-width: 760px) {
  .site-brand-main-v3 {
    width: 138px !important;
    max-width: 46vw !important;
  }

  .site-header .header-inner {
    height: 82px !important;
  }

  .hero {
    padding-top: 136px !important;
  }
}


/* VERSION 16 — KEEP FULL LOGO INSIDE DARK HEADER AREA */
.site-brand-main-v3 {
  width: 188px !important;
  max-width: 38vw !important;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.site-brand-main-v3 img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 82px !important;
  object-fit: contain;
}

.site-header .header-inner {
  height: 118px !important;
  display: flex;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
}

.site-header,
.site-header.scrolled {
  overflow: hidden;
}

.hero {
  padding-top: 176px !important;
}

@media (max-width: 980px) {
  .site-brand-main-v3 {
    width: 172px !important;
    max-width: 42vw !important;
  }

  .site-brand-main-v3 img {
    max-height: 74px !important;
  }

  .site-header .header-inner {
    height: 108px !important;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .hero {
    padding-top: 164px !important;
  }
}

@media (max-width: 760px) {
  .site-brand-main-v3 {
    width: 150px !important;
    max-width: 48vw !important;
  }

  .site-brand-main-v3 img {
    max-height: 66px !important;
  }

  .site-header .header-inner {
    height: 96px !important;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 148px !important;
  }
}


/* VERSION 17 — REPLACE HEADER LOGO WITH READABLE HORIZONTAL BRAND LOCKUP */
.site-brand-main-v3 {
  width: 245px !important;
  max-width: 44vw !important;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.site-brand-main-v3 img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 58px !important;
  object-fit: contain;
  background: transparent !important;
}

.footer-logo-main-v3 {
  width: 250px !important;
  max-width: 52vw !important;
}

.footer-logo-main-v3 img {
  max-height: 62px !important;
  background: transparent !important;
}

.site-header .header-inner {
  height: 92px !important;
  display: flex;
  align-items: center;
  padding-top: 2px;
  padding-bottom: 2px;
}

.site-header,
.site-header.scrolled {
  overflow: hidden;
}

.hero {
  padding-top: 150px !important;
}

@media (max-width: 980px) {
  .site-brand-main-v3 {
    width: 220px !important;
    max-width: 50vw !important;
  }

  .site-brand-main-v3 img {
    max-height: 52px !important;
  }

  .footer-logo-main-v3 {
    width: 225px !important;
  }

  .site-header .header-inner {
    height: 88px !important;
  }

  .hero {
    padding-top: 144px !important;
  }
}

@media (max-width: 760px) {
  .site-brand-main-v3 {
    width: 190px !important;
    max-width: 58vw !important;
  }

  .site-brand-main-v3 img {
    max-height: 46px !important;
  }

  .footer-logo-main-v3 {
    width: 195px !important;
  }

  .footer-logo-main-v3 img {
    max-height: 48px !important;
  }

  .site-header .header-inner {
    height: 82px !important;
  }

  .hero {
    padding-top: 136px !important;
  }
}


/* VERSION 18 — BIGGER HORIZONTAL HEADER LOGO, STILL FITTING INSIDE HEADER */
.site-brand-main-v3 {
  width: 320px !important;
  max-width: 48vw !important;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.site-brand-main-v3 img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72px !important;
  object-fit: contain;
  background: transparent !important;
}

.footer-logo-main-v3 {
  width: 255px !important;
  max-width: 52vw !important;
}

.footer-logo-main-v3 img {
  max-height: 62px !important;
}

.site-header .header-inner {
  height: 100px !important;
  display: flex;
  align-items: center;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.site-header,
.site-header.scrolled {
  overflow: hidden;
}

.hero {
  padding-top: 158px !important;
}

@media (max-width: 980px) {
  .site-brand-main-v3 {
    width: 275px !important;
    max-width: 56vw !important;
  }

  .site-brand-main-v3 img {
    max-height: 64px !important;
  }

  .site-header .header-inner {
    height: 94px !important;
  }

  .hero {
    padding-top: 150px !important;
  }
}

@media (max-width: 760px) {
  .site-brand-main-v3 {
    width: 220px !important;
    max-width: 62vw !important;
  }

  .site-brand-main-v3 img {
    max-height: 52px !important;
  }

  .site-header .header-inner {
    height: 84px !important;
  }

  .hero {
    padding-top: 138px !important;
  }
}


/* VERSION 19 — TIGHT-CROPPED BIG HEADER LOGO */
.site-brand-main-v3 {
  width: 380px !important;
  max-width: 52vw !important;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 0;
}

.site-brand-main-v3 img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78px !important;
  object-fit: contain;
  background: transparent !important;
}

.footer-logo-main-v3 {
  width: 265px !important;
  max-width: 54vw !important;
}

.footer-logo-main-v3 img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 64px !important;
  object-fit: contain;
  background: transparent !important;
}

.site-header .header-inner {
  height: 104px !important;
  display: flex;
  align-items: center;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.site-header,
.site-header.scrolled {
  overflow: hidden;
}

.hero {
  padding-top: 162px !important;
}

@media (max-width: 980px) {
  .site-brand-main-v3 {
    width: 320px !important;
    max-width: 62vw !important;
  }

  .site-brand-main-v3 img {
    max-height: 68px !important;
  }

  .site-header .header-inner {
    height: 96px !important;
  }

  .hero {
    padding-top: 152px !important;
  }
}

@media (max-width: 760px) {
  .site-brand-main-v3 {
    width: 250px !important;
    max-width: 70vw !important;
  }

  .site-brand-main-v3 img {
    max-height: 56px !important;
  }

  .footer-logo-main-v3 {
    width: 210px !important;
  }

  .footer-logo-main-v3 img {
    max-height: 52px !important;
  }

  .site-header .header-inner {
    height: 86px !important;
  }

  .hero {
    padding-top: 140px !important;
  }
}


/* VERSION 20 — HEADER LOGO SCALED TO FILL MOST OF THE HEADER */
.site-brand-main-v3 {
  width: 430px !important;
  max-width: 58vw !important;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 0;
}

.site-brand-main-v3 img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 88px !important;
  object-fit: contain;
  background: transparent !important;
}

.site-header .header-inner {
  height: 112px !important;
  display: flex;
  align-items: center;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.site-header,
.site-header.scrolled {
  overflow: hidden;
}

.hero {
  padding-top: 170px !important;
}

@media (max-width: 980px) {
  .site-brand-main-v3 {
    width: 360px !important;
    max-width: 66vw !important;
  }

  .site-brand-main-v3 img {
    max-height: 76px !important;
  }

  .site-header .header-inner {
    height: 102px !important;
  }

  .hero {
    padding-top: 160px !important;
  }
}

@media (max-width: 760px) {
  .site-brand-main-v3 {
    width: 270px !important;
    max-width: 74vw !important;
  }

  .site-brand-main-v3 img {
    max-height: 60px !important;
  }

  .site-header .header-inner {
    height: 88px !important;
  }

  .hero {
    padding-top: 142px !important;
  }
}


/* VERSION 21 — CACHE-BUSTED FINAL HEADER LOGO SIZE FIX */
.site-brand-main-v3 {
  width: 440px !important;
  max-width: 60vw !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  line-height: 0 !important;
}

.site-brand-main-v3 img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: 90px !important;
  object-fit: contain !important;
  background: transparent !important;
}

.site-header .header-inner {
  height: 114px !important;
  display: flex !important;
  align-items: center !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.site-header,
.site-header.scrolled {
  overflow: hidden !important;
}

.hero {
  padding-top: 172px !important;
}

@media (max-width: 980px) {
  .site-brand-main-v3 {
    width: 360px !important;
    max-width: 68vw !important;
  }

  .site-brand-main-v3 img {
    max-height: 78px !important;
  }

  .site-header .header-inner {
    height: 102px !important;
  }

  .hero {
    padding-top: 158px !important;
  }
}

@media (max-width: 760px) {
  .site-brand-main-v3 {
    width: 270px !important;
    max-width: 74vw !important;
  }

  .site-brand-main-v3 img {
    max-height: 60px !important;
  }

  .site-header .header-inner {
    height: 88px !important;
  }

  .hero {
    padding-top: 142px !important;
  }
}


/* VERSION 22 — MOVE HEADER LOGO LEFT + MAKE WORDMARK MORE PROMINENT */
.header-inner {
  width: min(calc(100% - 24px), 1240px) !important;
}

.site-brand-main-v3 {
  width: 500px !important;
  max-width: 64vw !important;
  margin-left: -18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  line-height: 0 !important;
}

.site-brand-main-v3 img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: 90px !important;
  object-fit: contain !important;
  object-position: left center !important;
  background: transparent !important;
}

.site-header .header-inner {
  height: 114px !important;
}

@media (max-width: 980px) {
  .header-inner {
    width: min(calc(100% - 20px), 1240px) !important;
  }

  .site-brand-main-v3 {
    width: 410px !important;
    max-width: 70vw !important;
    margin-left: -12px !important;
  }

  .site-brand-main-v3 img {
    max-height: 78px !important;
  }
}

@media (max-width: 760px) {
  .header-inner {
    width: min(calc(100% - 16px), 1240px) !important;
  }

  .site-brand-main-v3 {
    width: 300px !important;
    max-width: 76vw !important;
    margin-left: -8px !important;
  }

  .site-brand-main-v3 img {
    max-height: 60px !important;
  }
}


/* VERSION 22 — MOVE HEADER LOGO LEFT + MAKE IT LARGER */
.site-header .container.header-inner {
  width: min(calc(100% - 24px), var(--container)) !important;
}

.site-brand-main-v3 {
  width: 500px !important;
  max-width: 64vw !important;
  margin-left: -8px !important;
}

.site-brand-main-v3 img {
  width: 100% !important;
  max-height: 94px !important;
}

.site-header .header-inner {
  height: 118px !important;
}

.hero {
  padding-top: 176px !important;
}

@media (max-width: 980px) {
  .site-brand-main-v3 {
    width: 410px !important;
    max-width: 70vw !important;
    margin-left: -4px !important;
  }

  .site-brand-main-v3 img {
    max-height: 80px !important;
  }

  .site-header .header-inner {
    height: 104px !important;
  }

  .hero {
    padding-top: 160px !important;
  }
}

@media (max-width: 760px) {
  .site-brand-main-v3 {
    width: 290px !important;
    max-width: 76vw !important;
    margin-left: 0 !important;
  }

  .site-brand-main-v3 img {
    max-height: 62px !important;
  }

  .site-header .header-inner {
    height: 90px !important;
  }

  .hero {
    padding-top: 144px !important;
  }
}


/* VERSION 23 — MAKE HEADER LOGO WORDING CLEARLY BIGGER */
.site-header .container.header-inner {
  width: min(calc(100% - 20px), var(--container)) !important;
}

.site-brand-main-v3 {
  width: 620px !important;
  max-width: 72vw !important;
  margin-left: -8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  line-height: 0 !important;
}

.site-brand-main-v3 img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: 100px !important;
  object-fit: contain !important;
  background: transparent !important;
}

.site-header .header-inner {
  height: 120px !important;
  display: flex !important;
  align-items: center !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.site-header,
.site-header.scrolled {
  overflow: hidden !important;
}

.hero {
  padding-top: 178px !important;
}

@media (max-width: 980px) {
  .site-brand-main-v3 {
    width: 470px !important;
    max-width: 78vw !important;
    margin-left: -4px !important;
  }

  .site-brand-main-v3 img {
    max-height: 84px !important;
  }

  .site-header .header-inner {
    height: 106px !important;
  }

  .hero {
    padding-top: 162px !important;
  }
}

@media (max-width: 760px) {
  .site-brand-main-v3 {
    width: 320px !important;
    max-width: 78vw !important;
    margin-left: 0 !important;
  }

  .site-brand-main-v3 img {
    max-height: 64px !important;
  }

  .site-header .header-inner {
    height: 92px !important;
  }

  .hero {
    padding-top: 146px !important;
  }
}


/* VERSION 24 — REMOVE HEADER LOGO */
.site-brand-main-v3,
.site-header .brand.site-brand.site-brand-main-v3 {
  display: none !important;
  width: 0 !important;
  max-width: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-header .header-inner {
  justify-content: flex-end !important;
}

@media (max-width: 760px) {
  .site-header .header-inner {
    justify-content: space-between !important;
  }
}


/* VERSION 25 — RESTORE HEADER LOGO WITH NEW USER-SUPPLIED LOGO */
.site-brand-main-v25 {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 320px !important;
  max-width: 42vw !important;
  line-height: 0 !important;
  margin-right: 18px !important;
}

.site-brand-main-v25 img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: 58px !important;
  object-fit: contain !important;
  background: transparent !important;
}

.site-header .header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 92px !important;
}

.site-header .header-inner > nav,
.site-header .header-inner > .site-nav {
  margin-left: auto !important;
}

.hero {
  padding-top: 150px !important;
}

@media (max-width: 980px) {
  .site-brand-main-v25 {
    width: 270px !important;
    max-width: 48vw !important;
  }

  .site-brand-main-v25 img {
    max-height: 50px !important;
  }

  .site-header .header-inner {
    height: 86px !important;
  }

  .hero {
    padding-top: 144px !important;
  }
}

@media (max-width: 760px) {
  .site-brand-main-v25 {
    width: 210px !important;
    max-width: 60vw !important;
    margin-right: 8px !important;
  }

  .site-brand-main-v25 img {
    max-height: 40px !important;
  }

  .site-header .header-inner {
    height: 78px !important;
  }

  .hero {
    padding-top: 132px !important;
  }
}

/* FINAL LAUNCH CLEAN-UP */
.form-privacy {
  margin: 10px 0 0;
  text-align: center;
  color: rgba(242,235,221,.58);
  font-size: 11px;
  line-height: 1.5;
}
.form-privacy a {
  color: #E5C795;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* VERSION 27 — MOBILE FULL-SCREEN NAVIGATION FIX */
@media (max-width: 760px) {
  .site-header,
  .site-header.scrolled {
    overflow: visible !important;
  }

  body.menu-open {
    overflow: hidden !important;
    touch-action: none;
  }

  .site-header .header-inner {
    position: relative;
    justify-content: space-between !important;
  }

  .menu-toggle {
    display: block !important;
    position: relative !important;
    z-index: 1002 !important;
    flex: 0 0 48px;
    width: 48px !important;
    height: 48px !important;
    margin-left: auto !important;
    border-radius: 50%;
  }

  .menu-toggle span {
    width: 26px !important;
    height: 2px !important;
    background: #F7F2E9 !important;
  }

  .site-nav {
    position: fixed !important;
    inset: 0 !important;
    z-index: 1001 !important;
    width: 100vw !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    max-height: 100dvh !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 12px !important;
    padding:
      calc(env(safe-area-inset-top, 0px) + 94px)
      28px
      calc(env(safe-area-inset-bottom, 0px) + 36px) !important;
    color: #F7F2E9 !important;
    background:
      radial-gradient(circle at 78% 18%, rgba(212,175,122,.10), transparent 24%),
      linear-gradient(180deg, #071913 0%, #04100C 100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: none !important;
    transition: opacity 180ms ease, visibility 180ms ease !important;
  }

  .site-nav.open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .site-nav a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    min-height: 64px !important;
    padding: 12px 6px !important;
    border-bottom: 1px solid rgba(212,175,122,.22) !important;
    color: #F7F2E9 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(34px, 10vw, 48px) !important;
    font-weight: 400 !important;
    line-height: 1.05 !important;
  }

  .site-nav a::after {
    display: none !important;
  }

  .site-nav .nav-cta {
    justify-content: center !important;
    min-height: 58px !important;
    margin-top: 22px !important;
    padding: 0 22px !important;
    border: 0 !important;
    border-radius: 999px !important;
    color: #071913 !important;
    background: linear-gradient(180deg, #E5C795 0%, #D4AF7A 100%) !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
  }

  body.menu-open .site-brand-main-v25 {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}
