:root {
  --black: #050302;
  --ink: #090604;
  --surface: #100b08;
  --surface-raised: #18100c;
  --red: #df1420;
  --red-hot: #ff3440;
  --red-deep: #7f0007;
  --gold: #c99a4d;
  --gold-bright: #f2cb7c;
  --gold-soft: #e5b967;
  --gold-deep: #68451f;
  --ivory: #fff8ee;
  --muted: #cfc5ba;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #020101;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(84, 43, 18, .27), transparent 34%),
    #020101;
  color: var(--ivory);
  font: 14px/1.5 var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image:
    repeating-radial-gradient(circle at 16% 21%, rgba(255,255,255,.8) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(115deg, transparent 0 6px, rgba(255,255,255,.3) 7px, transparent 8px 13px);
  background-size: 7px 7px, 31px 31px;
  mix-blend-mode: soft-light;
}

::selection {
  background: var(--red);
  color: white;
}

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

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

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

main,
footer,
.header {
  width: min(100%, 1500px);
  margin-inline: auto;
}

main {
  overflow: hidden;
  box-shadow: 0 0 100px rgba(0,0,0,.9);
}

.header {
  position: absolute;
  z-index: 40;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 104px;
  display: flex;
  align-items: center;
  gap: 27px;
  padding: 0 5.1%;
  background: linear-gradient(180deg, rgba(6,3,2,.84), rgba(6,3,2,.16) 72%, transparent);
}

.header::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 9px;
  left: 5%;
  height: 1px;
  opacity: .18;
  background: linear-gradient(90deg, transparent, rgba(242,203,124,.4) 48%, transparent);
}

.logo {
  width: 128px;
  height: 102px;
  flex: none;
  position: relative;
  z-index: 2;
}

.logo img,
footer > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: contrast(1.28) saturate(1.38) brightness(1.05) drop-shadow(0 0 12px rgba(223,20,32,.14));
}

.header nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.15vw, 32px);
  margin: auto;
}

.header nav a {
  position: relative;
  padding: 12px 0;
  color: #f6eee7;
  font-size: 12px;
  font-weight: 500;
  text-shadow: 0 2px 10px #000;
  transition: color .25s ease;
}

.header nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 3px;
  left: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-hot));
  box-shadow: 0 0 9px rgba(255,35,49,.65);
  transition: right .25s ease, left .25s ease;
}

.header nav a:hover,
.header nav a.active {
  color: #ff3741;
}

.header nav a:hover::after,
.header nav a.active::after {
  right: 0;
  left: 0;
}

.menu {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(213,164,82,.55);
  border-radius: 8px;
  background: rgba(8,5,4,.72);
  color: white;
}

.menu svg {
  width: 21px;
}

.button {
  position: relative;
  isolation: isolate;
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 7px;
  background:
    linear-gradient(180deg, #f3212d 0%, #bd000a 62%, #930006 100%) padding-box,
    linear-gradient(135deg, #ff7e84, #d7101d 43%, #6e0005 78%, #ff535d) border-box;
  box-shadow:
    0 10px 24px rgba(72,0,5,.46),
    0 0 22px rgba(223,20,32,.28),
    inset 0 1px 0 rgba(255,255,255,.42),
    inset 0 -10px 19px rgba(81,0,5,.2);
  color: white;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  text-shadow: 0 1px 5px rgba(55,0,3,.7);
  transform: translateZ(0);
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}

.button > * {
  position: relative;
  z-index: 2;
}

.button::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -70%;
  bottom: -70%;
  left: -45%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.36), transparent);
  transform: skewX(-22deg);
  transition: left .65s cubic-bezier(.2,.7,.2,1);
}

.button::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 2px;
  border-radius: 4px;
  border-top: 1px solid rgba(255,255,255,.22);
  pointer-events: none;
}

.button:hover {
  filter: brightness(1.08) saturate(1.08);
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(67,0,5,.55),
    0 0 32px rgba(238,22,37,.4),
    inset 0 1px 0 rgba(255,255,255,.5);
}

.button:hover::before {
  left: 118%;
}

.button:focus-visible,
.menu:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.button svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}

.button.outline {
  background:
    linear-gradient(145deg, rgba(22,15,11,.96), rgba(5,3,2,.98)) padding-box,
    linear-gradient(135deg, #ecc471, #755023 55%, #c99a4d) border-box;
  box-shadow:
    0 10px 24px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,233,188,.12),
    inset 0 0 24px rgba(0,0,0,.7);
  text-shadow: 0 1px 7px #000;
}

.button.outline:hover {
  box-shadow:
    0 13px 27px rgba(0,0,0,.58),
    0 0 20px rgba(211,161,78,.16),
    inset 0 1px 0 rgba(255,233,188,.18);
}

.button.small {
  min-height: 41px;
  padding-inline: 20px;
  font-size: 12px;
}

.hero {
  --pointer-x: 70%;
  --pointer-y: 35%;
  position: relative;
  isolation: isolate;
  height: min(55.1vw, 827px);
  min-height: 515px;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 40%, #422817 0, #1b100a 34%, #090503 68%, #050302 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  box-shadow:
    inset 0 -74px 80px rgba(3,2,1,.72),
    inset 0 0 90px rgba(0,0,0,.34);
}

.hero-image {
  position: absolute;
  z-index: 0;
  right: -1.5%;
  bottom: -5.5%;
  width: 77%;
  height: 106%;
  object-fit: contain;
  object-position: right bottom;
  filter: contrast(1.13) saturate(1.17) brightness(.96);
  transform: translate3d(var(--hero-shift-x, 0), var(--hero-shift-y, 0), 0) scale(1.002);
  transform-origin: 70% 55%;
  transition: transform .28s ease-out;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.38) 8%, #000 23%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.38) 8%, #000 23%, #000 100%);
}

.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #070403 0%, rgba(7,4,3,.99) 23%, rgba(7,4,3,.9) 36%, rgba(7,4,3,.39) 56%, rgba(7,4,3,.04) 73%, rgba(6,3,2,.18) 100%),
    linear-gradient(180deg, rgba(3,2,1,.1), transparent 59%, rgba(6,3,2,.82) 100%);
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px circle at var(--pointer-x) var(--pointer-y), rgba(246,191,94,.105), transparent 48%);
  mix-blend-mode: screen;
  transition: background .18s ease-out;
}

.hero-ambience {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: .76;
  background:
    radial-gradient(circle at 82% 22%, rgba(255,211,127,.18) 0 1px, rgba(225,151,49,.08) 2px, transparent 18px),
    radial-gradient(circle at 41% 8%, rgba(255,206,110,.25) 0 1px, rgba(209,138,38,.1) 2px, transparent 15px),
    radial-gradient(ellipse at 72% 70%, rgba(199,97,26,.13), transparent 31%),
    radial-gradient(ellipse at 30% 85%, rgba(163,0,15,.24), transparent 24%);
  mix-blend-mode: screen;
  animation: ambienceBreathe 7s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 6;
  width: 53%;
  padding: 13.3% 0 0 5.15%;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: calc(5.15% - 1px);
  top: 24%;
  width: 1px;
  height: 48%;
  opacity: .55;
  background: linear-gradient(transparent, rgba(220,18,31,.82), transparent);
  box-shadow: 0 0 20px rgba(230,19,34,.48);
}

.kicker {
  margin: 0;
  color: #ff3340;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4.2px;
  text-shadow: 0 0 11px rgba(220,20,34,.42);
}

.hero h1,
.section-heading h2,
.about h2,
.stories h2,
.cta h2 {
  font-family: var(--display);
}

.hero h1 {
  margin: 10px 0 14px;
  color: var(--ivory);
  font-size: clamp(48px, 4.75vw, 68px);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.045em;
  text-wrap: balance;
  text-shadow: 0 3px 20px rgba(0,0,0,.9), 0 0 1px rgba(255,255,255,.7);
}

.hero h1 em,
h2 em {
  color: var(--gold-bright);
  font-weight: 600;
}

.hero h1 em {
  white-space: nowrap;
  background: linear-gradient(106deg, #bb873b 0%, #f4d38f 36%, #d8a651 62%, #f1c979 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 7px rgba(0,0,0,.82));
}

.intro {
  margin: 0;
  color: #eee5dc;
  font-size: 14px;
  line-height: 1.55;
  text-shadow: 0 2px 8px #000;
}

.actions {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.trust {
  display: flex;
  gap: clamp(20px, 2.3vw, 33px);
  margin-top: 28px;
  color: var(--gold-soft);
}

.trust div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.55;
  filter: drop-shadow(0 0 7px rgba(230,173,76,.38));
}

.trust span {
  color: #eee5db;
  font-size: 8px;
  line-height: 1.48;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px #000;
}

.hero-note {
  position: absolute;
  z-index: 8;
  right: 2.5%;
  bottom: 11.2%;
  width: 19%;
  max-width: 216px;
  min-width: 168px;
  padding: 19px 14px 16px;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 9px;
  background:
    linear-gradient(145deg, rgba(22,14,9,.88), rgba(4,3,2,.96)) padding-box,
    linear-gradient(145deg, #f0c66d, #6c461f 50%, #c69545) border-box;
  box-shadow:
    0 20px 44px rgba(0,0,0,.75),
    0 0 24px rgba(205,151,68,.15),
    inset 0 1px 0 rgba(255,235,188,.16),
    inset 0 0 25px rgba(120,72,22,.16);
  color: #ecd2a1;
  transform: translateZ(0);
  animation: noteFloat 6s ease-in-out infinite;
}

.hero-note::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(241,197,111,.17);
  border-radius: 5px;
  pointer-events: none;
}

.hero-note::after {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  box-shadow: 0 0 13px rgba(231,180,88,.7);
}

.note-copy {
  display: block;
  font: italic 17px/1.24 var(--display);
}

.hero-note strong {
  display: block;
  margin-top: 7px;
  color: var(--gold-bright);
  font: italic 32px/1 var(--display);
  text-shadow: 0 0 13px rgba(213,159,69,.2);
}

.hero-note .note-title {
  display: block;
  margin-top: 7px;
  color: white;
  font: 7px/1 var(--sans);
  letter-spacing: 2.2px;
}

.hero-seam {
  position: absolute;
  z-index: 12;
  right: -3%;
  bottom: -2px;
  left: -3%;
  height: 58px;
  pointer-events: none;
}

.seam-beam {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff1724 0%, #ed1421 38%, #f2bf65 49%, #ad742e 62%, rgba(157,100,34,.1) 84%, transparent 100%);
  box-shadow: 0 0 7px rgba(241,31,41,.5), 0 0 16px rgba(233,178,77,.25);
  transform: rotate(1.15deg);
  transform-origin: 50% 50%;
}

.seam-flare {
  position: absolute;
  bottom: 6px;
  width: 72px;
  height: 18px;
  background: radial-gradient(ellipse, rgba(255,243,198,.98) 0 2%, rgba(246,190,82,.7) 4%, rgba(209,113,29,.22) 20%, transparent 67%);
  filter: blur(.2px);
  mix-blend-mode: screen;
  animation: flarePulse 3.8s ease-in-out infinite alternate;
}

.flare-one { left: 7%; }
.flare-two { left: 49%; animation-delay: -1.4s; }
.flare-three { right: 8%; animation-delay: -2.3s; }

.services,
.assessment,
.process {
  position: relative;
  isolation: isolate;
  padding: 31px 3.6% 35px;
  background:
    radial-gradient(ellipse at 54% -8%, rgba(164,105,40,.26), transparent 34%),
    linear-gradient(121deg, rgba(110,0,13,.2), transparent 28%),
    repeating-linear-gradient(124deg, rgba(255,255,255,.026) 0 1px, transparent 1px 85px),
    linear-gradient(118deg, #160a07 0%, #0e0907 39%, #070403 100%);
  border-bottom: 1px solid rgba(177,122,54,.58);
}

.services {
  margin-top: -1px;
}

.services::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -6%;
  bottom: 0;
  left: -7%;
  width: 45%;
  opacity: .72;
  background:
    linear-gradient(137deg, rgba(130,0,17,.55) 0 17%, transparent 17.2%),
    linear-gradient(148deg, transparent 0 22%, rgba(93,0,12,.31) 22.2% 47%, transparent 47.2%);
  clip-path: polygon(0 0, 100% 0, 71% 100%, 0 100%);
}

.services::after,
.assessment::after,
.about::after,
.process::after,
.stories::after,
.cta::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 6% 50%, rgba(255,248,213,1) 0 1px, rgba(237,177,72,.5) 2px, transparent 34px),
    radial-gradient(ellipse at 50% 50%, rgba(255,244,198,.95) 0 1px, rgba(226,157,56,.42) 2px, transparent 31px),
    radial-gradient(ellipse at 92% 50%, rgba(255,246,203,.92) 0 1px, rgba(225,157,58,.42) 2px, transparent 30px),
    linear-gradient(90deg, transparent, rgba(216,161,73,.62) 8%, transparent 21%, transparent 79%, rgba(216,161,73,.55) 92%, transparent);
  box-shadow: 0 0 12px rgba(222,157,57,.27);
}

.section-heading {
  position: relative;
  z-index: 3;
  text-align: center;
}

.section-heading .kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.kicker span {
  width: 45px;
  height: 1px;
  flex: none;
  background: linear-gradient(90deg, transparent, var(--red-hot));
  box-shadow: 0 0 8px rgba(233,17,32,.45);
}

.kicker span:last-child {
  background: linear-gradient(90deg, var(--red-hot), transparent);
}

.section-heading h2,
.about h2,
.stories h2,
.cta h2 {
  margin: 4px 0 3px;
  color: var(--ivory);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: .98;
  text-shadow: 0 3px 16px rgba(0,0,0,.9);
}

.section-heading h2 {
  font-size: clamp(34px, 3.25vw, 48px);
}

.section-heading > p:last-child {
  margin: 0 0 21px;
  color: #d8cfc5;
  font-size: 12px;
  line-height: 1.45;
}

.service-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.service-grid article {
  --card-x: 50%;
  --card-y: 0%;
  position: relative;
  min-height: 205px;
  padding: 20px 15px 15px;
  overflow: hidden;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 9px;
  background:
    radial-gradient(220px circle at var(--card-x) var(--card-y), rgba(255,222,154,.115), transparent 46%) padding-box,
    radial-gradient(circle at 50% 2%, rgba(124,24,18,.38), transparent 31%) padding-box,
    linear-gradient(148deg, #1b130f 0%, #0d0806 51%, #050302 100%) padding-box,
    linear-gradient(145deg, #d4a65b, #49301a 34%, #76502b 72%, #c89549) border-box;
  box-shadow:
    0 18px 36px rgba(0,0,0,.65),
    0 0 0 1px rgba(25,16,10,.85),
    inset 0 1px 0 rgba(255,226,167,.11),
    inset 0 -26px 43px rgba(0,0,0,.45);
  transform: translateZ(0);
  transition: transform .34s cubic-bezier(.2,.75,.2,1), box-shadow .34s ease, filter .34s ease;
}

.service-grid article::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -1px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  box-shadow: 0 0 13px rgba(231,175,79,.7);
}

.service-grid article::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -50%;
  bottom: -50%;
  left: -78%;
  width: 43%;
  opacity: 0;
  background: linear-gradient(96deg, transparent, rgba(255,243,213,.12), transparent);
  transform: skewX(-19deg);
  transition: left .72s ease, opacity .22s ease;
}

.service-grid article:hover {
  filter: brightness(1.08);
  transform: translateY(-7px) perspective(700px) rotateX(1.2deg);
  box-shadow:
    0 24px 45px rgba(0,0,0,.78),
    0 0 25px rgba(213,22,35,.18),
    0 0 0 1px rgba(213,166,90,.24),
    inset 0 1px 0 rgba(255,228,171,.16);
}

.service-grid article:hover::after {
  left: 132%;
  opacity: 1;
}

.service-grid article > * {
  position: relative;
  z-index: 1;
}

.service-grid svg {
  width: 37px;
  height: 37px;
  color: #ff2a37;
  stroke-width: 1.55;
  filter: drop-shadow(0 0 9px rgba(255,25,42,.55));
}

.service-grid h3,
.steps h3 {
  margin: 7px 0 4px;
  color: var(--ivory);
  font: 700 20px/1 var(--display);
  text-shadow: 0 2px 9px #000;
}

.service-grid p {
  max-width: 190px;
  margin: 0 auto;
  color: #e3d9cf;
  font-size: 12px;
  line-height: 1.4;
}

.service-grid a {
  display: inline-block;
  margin-top: 13px;
  color: #ff3742;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.9px;
  text-shadow: 0 0 9px rgba(219,17,31,.35);
}

.service-grid a b {
  display: inline-block;
  transition: transform .2s ease;
}

.service-grid a:hover b {
  transform: translateX(4px);
}

.assessment {
  padding: 44px 5% 50px;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(218,154,64,.18), transparent 32%),
    radial-gradient(ellipse at 88% 28%, rgba(132,0,13,.26), transparent 29%),
    repeating-linear-gradient(124deg, rgba(255,255,255,.024) 0 1px, transparent 1px 82px),
    linear-gradient(120deg, #080403 0%, #17100c 46%, #060302 100%);
}

.assessment::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .62;
  background:
    linear-gradient(139deg, transparent 0 62%, rgba(107,0,14,.24) 62.2% 78%, transparent 78.2%),
    radial-gradient(ellipse at 18% 90%, rgba(207,20,31,.17), transparent 28%);
}

.assessment-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, .72fr);
  gap: 22px;
  max-width: 1320px;
  margin: 23px auto 0;
  align-items: stretch;
}

.assessment-form,
.assessment-result {
  border: 1px solid transparent;
  border-radius: 10px;
  background:
    radial-gradient(360px circle at 12% 0%, rgba(255,217,143,.09), transparent 42%) padding-box,
    radial-gradient(320px circle at 87% 8%, rgba(202,15,28,.12), transparent 39%) padding-box,
    linear-gradient(148deg, rgba(26,18,13,.96), rgba(8,5,3,.98) 55%, rgba(5,3,2,.99)) padding-box,
    linear-gradient(142deg, #d7a85b, #51371d 35%, #865c2e 68%, #d4a65b) border-box;
  box-shadow:
    0 24px 54px rgba(0,0,0,.7),
    0 0 30px rgba(219,21,34,.08),
    inset 0 1px 0 rgba(255,231,180,.13),
    inset 0 -32px 48px rgba(0,0,0,.33);
}

.assessment-form {
  padding: 24px;
}

.assessment-form fieldset {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.assessment-form legend {
  margin-bottom: 11px;
  color: var(--ivory);
  font: 700 21px/1.1 var(--display);
  text-shadow: 0 2px 10px rgba(0,0,0,.9);
}

.assessment-form label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #eee2d8;
  font-size: 13px;
  line-height: 1.45;
}

.assessment-form fieldset label + label {
  margin-top: 9px;
}

.assessment-form input[type="radio"],
.assessment-form input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex: none;
  accent-color: var(--red-hot);
  filter: drop-shadow(0 0 6px rgba(231,19,34,.32));
}

.assessment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.assessment-grid label {
  display: grid;
  gap: 7px;
  align-items: start;
  color: #f4eadf;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.assessment-form select {
  width: 100%;
  min-height: 45px;
  padding: 0 13px;
  color: #fff7ee;
  border: 1px solid rgba(204,153,76,.52);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18,12,9,.96), rgba(6,4,3,.98));
  box-shadow:
    inset 0 1px 0 rgba(255,230,177,.1),
    0 10px 22px rgba(0,0,0,.34);
  font: 500 13px/1.2 var(--sans);
}

.assessment-form select:focus-visible,
.assessment-form input:focus-visible,
.assessment-submit:focus-visible {
  outline: 2px solid rgba(255,207,119,.85);
  outline-offset: 3px;
}

.assessment-submit {
  margin-top: 4px;
}

.assessment-privacy {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin: 10px 0 0 2px;
  color: rgba(255, 239, 218, .68);
  font: 500 12px/1.45 var(--sans);
  text-align: left;
}

.assessment-privacy svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--gold-bright);
  filter: drop-shadow(0 0 7px rgba(232, 178, 91, .28));
}

.assessment-result {
  position: relative;
  overflow: hidden;
  padding: 27px 24px 24px;
}

.assessment-result::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -25%;
  width: 78%;
  height: 72%;
  opacity: .52;
  background: radial-gradient(ellipse, rgba(238,174,80,.28), transparent 60%);
  pointer-events: none;
}

.assessment-result::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(242,199,112,.14);
  border-radius: 7px;
  pointer-events: none;
}

.assessment-result > * {
  position: relative;
  z-index: 1;
}

.result-label {
  margin: 0 0 8px;
  color: #ff3340;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(226,18,31,.36);
}

.assessment-result h3 {
  margin: 0 0 10px;
  color: var(--ivory);
  font: 700 34px/.95 var(--display);
  letter-spacing: -.025em;
  text-shadow: 0 3px 16px rgba(0,0,0,.9);
}

.assessment-result h3 em {
  color: var(--gold-bright);
  font-style: italic;
}

.assessment-result p:not(.result-label) {
  margin: 0 0 17px;
  color: #e4d9cf;
  font-size: 13px;
  line-height: 1.55;
}

.assessment-result ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.assessment-result li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f4eadf;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.assessment-result li svg {
  width: 22px;
  height: 22px;
  color: var(--gold-bright);
  filter: drop-shadow(0 0 8px rgba(226,166,70,.36));
}

.assessment-result .button {
  min-height: 44px;
}

.assessment-result.is-funding {
  box-shadow:
    0 24px 54px rgba(0,0,0,.7),
    0 0 30px rgba(221,166,77,.18),
    inset 0 1px 0 rgba(255,231,180,.13);
}

.assessment-result.is-credit {
  box-shadow:
    0 24px 54px rgba(0,0,0,.7),
    0 0 34px rgba(229,20,34,.18),
    inset 0 1px 0 rgba(255,231,180,.13);
}

.assessment-note {
  position: relative;
  z-index: 3;
  max-width: 820px;
  margin: 17px auto 0;
  color: #c9bdb2;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.about {
  position: relative;
  isolation: isolate;
  height: clamp(270px, 28.7vw, 430px);
  display: grid;
  grid-template-columns: 42% 41% 17%;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 79% 54%, rgba(118,75,30,.25), transparent 27%),
    linear-gradient(90deg, #080504 0%, #16100c 48%, #090604 100%);
  border-bottom: 1px solid rgba(151,99,43,.66);
}

.about::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 8%;
  bottom: 8%;
  left: 42%;
  width: 1px;
  background: linear-gradient(transparent, rgba(228,174,83,.78), transparent);
  box-shadow: 0 0 16px rgba(220,155,59,.45);
}

.about-image {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 68%, rgba(15,10,7,.96)),
    linear-gradient(0deg, rgba(8,5,3,.32), transparent 39%);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: contrast(1.1) saturate(1.07) brightness(.92);
  transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .6s ease;
}

.about:hover .about-image img {
  filter: contrast(1.12) saturate(1.1) brightness(.95);
  transform: scale(1.018);
}

.about-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  padding: 2% 7%;
}

.about-copy h2 {
  font-size: clamp(31px, 3.05vw, 45px);
}

.about-copy p {
  margin: 7px 0;
  color: #dcd2c8;
  font-size: 11px;
  line-height: 1.48;
}

.about-copy .button {
  min-height: 40px;
  margin-top: 7px;
  font-size: 12px;
}

.values {
  position: relative;
  z-index: 4;
  padding: 21% 11% 13%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.values::before {
  content: "";
  position: absolute;
  top: 15%;
  bottom: 14%;
  left: 0;
  width: 1px;
  background: linear-gradient(transparent, rgba(200,151,72,.34), transparent);
}

.values div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f1e9df;
  font-size: 8px;
  letter-spacing: 1.7px;
}

.values svg {
  width: 21px;
  height: 21px;
  color: var(--gold-bright);
  stroke-width: 1.55;
  filter: drop-shadow(0 0 7px rgba(224,166,70,.36));
}

.values strong {
  margin-top: auto;
  color: var(--gold-bright);
  font: italic 29px/.92 var(--display);
  text-shadow: 0 2px 11px #000;
}

.process {
  padding: 23px 5% 29px;
  background:
    linear-gradient(rgba(7,4,3,.9), rgba(7,4,3,.95)),
    radial-gradient(ellipse at 50% 0, rgba(144,92,35,.27), transparent 33%),
    url("class.png") center 47% / cover;
}

.steps {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0,1fr) 22px minmax(0,1fr) 22px minmax(0,1fr) 22px minmax(0,1fr);
  align-items: center;
  gap: 12px;
  margin-top: 21px;
}

.steps > span {
  color: var(--gold-bright);
  font: 42px/.8 var(--display);
  text-align: center;
  text-shadow: 0 0 11px rgba(223,163,68,.33);
}

.steps article {
  position: relative;
  height: 119px;
  padding: 15px 12px 12px;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 9px;
  background:
    radial-gradient(circle at 50% -10%, rgba(116,74,28,.24), transparent 48%) padding-box,
    linear-gradient(145deg, rgba(25,18,14,.96), rgba(7,4,3,.97)) padding-box,
    linear-gradient(140deg, #bb8b47, #49301a 48%, #9b6e38) border-box;
  box-shadow:
    0 15px 30px rgba(0,0,0,.65),
    inset 0 1px 0 rgba(255,225,161,.11),
    inset 0 -18px 27px rgba(0,0,0,.32);
  transition: transform .3s ease, box-shadow .3s ease;
}

.steps article::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: -1px;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225,170,80,.84), transparent);
  box-shadow: 0 0 9px rgba(218,153,56,.34);
}

.steps article:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 37px rgba(0,0,0,.76), 0 0 18px rgba(194,139,58,.11);
}

.steps article b {
  position: absolute;
  left: -2px;
  top: -19px;
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border: 2px solid #ff3541;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #e3212e, #760006 73%);
  box-shadow: 0 0 20px rgba(237,22,40,.7), inset 0 1px rgba(255,255,255,.35);
  color: white;
  font: 600 22px/1 var(--display);
}

.steps article svg {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 23px;
  height: 23px;
  color: var(--gold-bright);
  stroke-width: 1.55;
  filter: drop-shadow(0 0 7px rgba(220,162,68,.3));
}

.steps article h3 {
  margin-top: 28px;
  font-size: 17px;
}

.steps article p {
  margin: 1px 0 0;
  color: #d6cbc1;
  font-size: 10px;
  line-height: 1.4;
}

.stories {
  position: relative;
  isolation: isolate;
  min-height: 223px;
  display: grid;
  grid-template-columns: minmax(0,1fr) 20%;
  padding: 24px 5%;
  overflow: hidden;
  background:
    linear-gradient(92deg, rgba(8,5,3,.96) 0%, rgba(10,6,4,.93) 57%, rgba(42,5,7,.79) 100%),
    url("hero.png") center 71% / cover;
  border-bottom: 1px solid rgba(156,101,42,.7);
}

.stories::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: -3%;
  width: 44%;
  height: 100%;
  background:
    linear-gradient(137deg, rgba(149,5,22,.25) 0 34%, transparent 34.2%),
    radial-gradient(circle at 92% 88%, rgba(69,91,39,.6), transparent 24%),
    radial-gradient(ellipse at 58% 14%, rgba(193,126,39,.11), transparent 37%);
  pointer-events: none;
}

.stories-main {
  position: relative;
  z-index: 2;
}

.stories-main .kicker {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stories-main h2 {
  font-size: 34px;
}

.stories-main > p:not(.kicker) {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
}

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

.quotes blockquote {
  position: relative;
  margin: 0;
  padding: 11px 13px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 9px;
  background:
    radial-gradient(circle at 0 0, rgba(101,60,25,.24), transparent 34%) padding-box,
    linear-gradient(145deg, rgba(24,17,13,.95), rgba(8,5,4,.94)) padding-box,
    linear-gradient(145deg, #956a37, #3f2917 57%, #7f572d) border-box;
  box-shadow: 0 13px 28px rgba(0,0,0,.64), inset 0 1px rgba(255,224,163,.1);
  transition: transform .3s ease, box-shadow .3s ease;
}

.quotes blockquote::before {
  content: "“";
  position: absolute;
  right: 9px;
  top: -7px;
  color: rgba(226,174,82,.22);
  font: 50px var(--display);
}

.quotes blockquote:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0,0,0,.74), 0 0 16px rgba(199,146,63,.09);
}

.quotes strong {
  color: #efb94f;
  font-size: 11px;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 5px rgba(221,154,49,.45));
}

.quotes p {
  position: relative;
  z-index: 1;
  margin: 4px 0;
  font-size: 10px;
  line-height: 1.38;
}

.quotes cite {
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
}

.quotes small {
  display: block;
  margin-left: 11px;
  color: #a9a097;
  font-size: 8px;
}

.stories aside {
  position: relative;
  z-index: 2;
  display: grid;
  place-content: center;
  color: var(--gold-bright);
  text-align: center;
  font: italic 30px/.98 var(--display);
  text-shadow: 0 3px 13px #000;
}

.stories aside span {
  width: 29px;
  height: 2px;
  margin: 13px auto 0;
  background: var(--red-hot);
  box-shadow: 0 0 10px rgba(227,18,34,.55);
}

.cta {
  position: relative;
  isolation: isolate;
  min-height: 168px;
  padding: 28px 5%;
  overflow: hidden;
  background:
    linear-gradient(90deg, #070403 0%, rgba(7,4,3,.97) 38%, rgba(7,4,3,.52) 67%, rgba(7,4,3,.16) 100%),
    url("hero.png") center 77% / cover;
  border-bottom: 1px solid rgba(153,105,49,.72);
  box-shadow: inset 0 26px 43px rgba(0,0,0,.44), inset 0 -25px 45px rgba(0,0,0,.63);
}

.cta::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 78% 36%, rgba(230,165,62,.12), transparent 27%),
    linear-gradient(90deg, transparent 55%, rgba(4,2,1,.13));
}

.cta > div {
  position: relative;
  z-index: 3;
}

.cta h2 {
  font-size: 34px;
}

.cta p:not(.kicker) {
  margin: 2px 0 0;
  color: #d1c7bd;
  font-size: 11px;
}

.cta .actions {
  margin-top: 11px;
}

.cta .button {
  min-height: 40px;
  font-size: 11px;
}

footer {
  min-height: 108px;
  padding: 13px 4.5% 10px;
  display: grid;
  grid-template-columns: 155px minmax(0,1fr) auto;
  align-items: center;
  gap: 25px;
  background: linear-gradient(180deg, #070403, #020101);
  box-shadow: inset 0 1px rgba(164,111,50,.52);
}

footer > img {
  width: 150px;
  height: 70px;
}

footer nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 26px);
  font-size: 8px;
}

footer nav a {
  color: #e8dfd6;
  transition: color .2s ease;
}

footer nav a:hover {
  color: var(--red-hot);
}

.social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: white;
}

.social svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
}

footer p {
  margin: 0;
  color: #8f867e;
  font-size: 7px;
}

footer em {
  justify-self: end;
  color: var(--gold-bright);
  font: italic 18px var(--display);
}

.services,
.about,
.process,
.stories,
.cta {
  scroll-margin-top: 0;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .7s ease var(--delay, 0ms),
    transform .8s cubic-bezier(.2,.72,.2,1) var(--delay, 0ms);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ambienceBreathe {
  from { opacity: .58; transform: scale(1); }
  to { opacity: .82; transform: scale(1.018); }
}

@keyframes noteFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes flarePulse {
  from { opacity: .42; transform: scaleX(.72); }
  to { opacity: .92; transform: scaleX(1.15); }
}

@media (max-width: 1100px) {
  .header {
    gap: 18px;
    padding-inline: 4.2%;
  }

  .logo {
    width: 112px;
    height: 94px;
  }

  .header nav {
    gap: 18px;
  }

  .header nav a {
    font-size: 11px;
  }

  .header-cta {
    padding-inline: 16px;
  }

  .hero-content {
    width: 54%;
    padding-left: 4.8%;
  }

  .hero h1 {
    font-size: clamp(47px, 4.8vw, 56px);
  }

  .service-grid {
    gap: 11px;
  }

  .service-grid article {
    padding-inline: 10px;
  }
}

@media (max-width: 900px) {
  .header {
    height: 82px;
    padding-inline: 22px;
    background: linear-gradient(180deg, rgba(6,3,2,.96), rgba(6,3,2,.48) 76%, transparent);
  }

  .logo {
    width: 105px;
    height: 80px;
  }

  .header .header-cta {
    display: none;
  }

  .menu {
    display: grid;
    margin-left: auto;
    position: relative;
    z-index: 7;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  }

  .menu[aria-expanded="true"] {
    border-color: var(--red-hot);
    background: rgba(116,0,9,.86);
    box-shadow: 0 0 20px rgba(225,19,32,.28), inset 0 1px rgba(255,255,255,.12);
  }

  .header nav {
    position: absolute;
    top: 72px;
    right: 18px;
    z-index: 6;
    width: min(300px, calc(100vw - 36px));
    max-height: calc(100svh - 90px);
    margin: 0;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    border: 1px solid rgba(191,140,67,.7);
    border-radius: 10px;
    background: rgba(8,5,4,.96);
    box-shadow: 0 20px 40px rgba(0,0,0,.65), inset 0 1px rgba(255,226,166,.12);
    backdrop-filter: blur(16px);
    transform: translateY(-9px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }

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

  .header nav a {
    padding: 10px 0;
    font-size: 13px;
  }

  .hero {
    height: 680px;
    min-height: 680px;
  }

  .hero-image {
    top: -2%;
    right: -15%;
    bottom: auto;
    width: 102%;
    height: 77%;
    object-position: right top;
  }

  .hero-content {
    width: 74%;
    padding: 138px 0 0 5.2%;
  }

  .hero-note {
    display: none;
  }

  .trust {
    gap: 18px;
  }

  .services,
  .assessment,
  .process {
    padding-inline: 28px;
  }

  .assessment-panel {
    grid-template-columns: 1fr;
  }

  .assessment-result {
    min-height: 280px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 15px;
  }

  .service-grid article:last-child {
    grid-column: 1 / 3;
  }

  .about {
    height: auto;
    min-height: 390px;
    grid-template-columns: 44% 56%;
  }

  .about::before {
    left: 44%;
  }

  .values {
    display: none;
  }

  .about-copy {
    padding: 30px 28px;
  }

  .about-copy p {
    font-size: 13px;
    line-height: 1.58;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 31px 18px;
    margin-top: 32px;
  }

  .steps > span {
    display: none;
  }

  .steps article {
    height: 136px;
    padding-inline: 18px;
  }

  .steps article p {
    font-size: 12px;
  }

  .steps article b {
    left: 12px;
  }

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

  .stories aside {
    display: none;
  }

  .quotes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }

  .quotes blockquote:last-child {
    grid-column: 1 / -1;
  }

  .quotes p {
    font-size: 12px;
    line-height: 1.5;
  }

  .quotes cite {
    font-size: 10px;
  }

  .quotes small {
    font-size: 9px;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer nav {
    display: none;
  }
}

@media (max-width: 620px) {
  .header {
    height: 76px;
    padding-inline: 18px;
    background:
      linear-gradient(180deg, rgba(4,2,1,.98), rgba(4,2,1,.76) 62%, rgba(4,2,1,0));
  }

  .header::after {
    right: 16px;
    left: 16px;
  }

  .logo {
    width: 94px;
    height: 70px;
  }

  .menu {
    width: 48px;
    height: 48px;
    border-color: rgba(227,184,112,.74);
    border-radius: 12px;
    background:
      linear-gradient(145deg, rgba(26,17,11,.56), rgba(4,3,2,.78)) padding-box,
      linear-gradient(145deg, rgba(250,215,144,.9), rgba(115,71,32,.72)) border-box;
    box-shadow:
      0 14px 30px rgba(0,0,0,.56),
      0 0 22px rgba(218,158,71,.12),
      inset 0 1px rgba(255,238,196,.15);
  }

  .header nav {
    top: 64px;
    right: 16px;
    left: 16px;
    width: auto;
    max-height: calc(100svh - 80px);
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 22px 50px rgba(0,0,0,.82), 0 0 30px rgba(132,5,14,.15), inset 0 1px rgba(255,226,166,.12);
  }

  .header nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 2px;
    font-size: 14px;
  }

  .hero {
    height: auto;
    min-height: 0;
    background:
      radial-gradient(ellipse at 76% 17%, rgba(202,144,70,.22), transparent 34%),
      linear-gradient(180deg, #060302 0%, #070403 46%, #050302 100%);
  }

  .hero::before {
    box-shadow:
      inset 0 88px 72px rgba(0,0,0,.5),
      inset 0 -65px 54px rgba(4,2,1,.76),
      inset 0 0 58px rgba(0,0,0,.46);
  }

  .hero-image {
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
    height: clamp(338px, 49svh, 410px);
    object-fit: cover;
    object-position: center 34%;
    transform: none;
    filter: contrast(1.17) saturate(1.2) brightness(1.02);
    -webkit-mask-image: linear-gradient(0deg, transparent 0, rgba(0,0,0,.76) 15%, #000 36%, #000 100%);
    mask-image: linear-gradient(0deg, transparent 0, rgba(0,0,0,.76) 15%, #000 36%, #000 100%);
  }

  .hero-shade {
    background:
      radial-gradient(ellipse at 58% 28%, rgba(255,219,144,.13), transparent 22%),
      linear-gradient(0deg, #060302 0%, #060302 43%, rgba(6,3,2,.86) 55%, rgba(6,3,2,.23) 75%, rgba(6,3,2,.08) 100%),
      linear-gradient(90deg, rgba(7,4,3,.58), rgba(7,4,3,.08) 48%, rgba(7,4,3,.43) 100%);
  }

  .hero-ambience {
    opacity: .9;
    background:
      radial-gradient(ellipse at 75% 24%, rgba(235,170,77,.16), transparent 30%),
      radial-gradient(ellipse at 15% 72%, rgba(205,0,20,.24), transparent 29%),
      linear-gradient(115deg, transparent 0 57%, rgba(109,3,12,.16) 57.2% 78%, transparent 78.2%),
      repeating-linear-gradient(124deg, rgba(255,255,255,.024) 0 1px, transparent 1px 72px);
  }

  .hero-content {
    width: 100%;
    padding: clamp(302px, 44svh, 364px) 18px 50px;
  }

  .hero-content::before {
    display: none;
  }

  .hero h1 {
    margin: 10px 0 15px;
    font-size: clamp(37px, 10.8vw, 44px);
    line-height: .92;
    letter-spacing: -.041em;
    text-shadow:
      0 4px 21px rgba(0,0,0,.94),
      0 0 1px rgba(255,255,255,.82);
  }

  .hero h1 em {
    white-space: normal;
  }

  .intro {
    max-width: 34rem;
    font-size: 14.5px;
    line-height: 1.68;
    color: #f4eee7;
  }

  .intro br,
  .section-heading > p:last-child br {
    display: none;
  }

  .hero-note,
  .trust {
    display: none;
  }

  .actions {
    gap: 10px;
    margin-top: 22px;
    flex-direction: column;
  }

  .hero .button,
  .cta .button,
  .about-copy .button {
    width: 100%;
    min-height: 52px;
    font-size: 14.5px;
  }

  .hero .button {
    border-radius: 8px;
    box-shadow:
      0 16px 34px rgba(0,0,0,.58),
      0 0 0 1px rgba(255,78,86,.22),
      0 0 28px rgba(226,11,24,.24),
      inset 0 1px 0 rgba(255,255,255,.32),
      inset 0 -18px 28px rgba(112,0,10,.45);
  }

  .hero .button.outline {
    color: #fff7ed;
    background:
      linear-gradient(145deg, rgba(18,12,9,.72), rgba(5,3,2,.92)) padding-box,
      linear-gradient(145deg, #f2cc7a, #755028 52%, #c18a3f) border-box;
    box-shadow:
      0 15px 30px rgba(0,0,0,.55),
      0 0 24px rgba(214,155,67,.14),
      inset 0 1px 0 rgba(255,233,188,.17);
  }

  .hero-seam {
    height: 46px;
  }

  .seam-beam {
    bottom: 18px;
    height: 2px;
    transform: rotate(.8deg);
    box-shadow:
      0 0 9px rgba(241,31,41,.7),
      0 0 24px rgba(233,178,77,.36);
  }

  .services,
  .assessment,
  .process {
    padding: 42px 18px 43px;
  }

  .assessment-panel {
    gap: 16px;
    margin-top: 19px;
  }

  .assessment-form,
  .assessment-result {
    padding: 20px 17px;
  }

  .assessment-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .assessment-form legend {
    font-size: 20px;
  }

  .assessment-form label {
    align-items: flex-start;
    font-size: 13px;
  }

  .assessment-form input[type="radio"],
  .assessment-form input[type="checkbox"] {
    margin-top: 2px;
  }

  .assessment-result h3 {
    font-size: 31px;
  }

  .kicker {
    font-size: 9px;
    line-height: 1.45;
    letter-spacing: 3.1px;
  }

  .section-heading .kicker {
    gap: 11px;
  }

  .kicker span {
    width: 28px;
  }

  .section-heading h2 {
    margin-top: 8px;
    font-size: 34px;
    line-height: .97;
  }

  .section-heading > p:last-child {
    margin: 9px auto 25px;
    max-width: 34rem;
    font-size: 14px;
    line-height: 1.6;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-grid article,
  .service-grid article:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 27px 22px 22px;
  }

  .service-grid svg {
    width: 42px;
    height: 42px;
  }

  .service-grid h3 {
    margin-top: 9px;
    font-size: 24px;
  }

  .service-grid p {
    max-width: 280px;
    font-size: 14px;
    line-height: 1.55;
  }

  .service-grid a {
    margin-top: 15px;
    font-size: 10px;
  }

  .about {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about::before {
    display: none;
  }

  .about-image {
    height: clamp(278px, 82vw, 330px);
  }

  .about-image::after {
    background: linear-gradient(0deg, #100a07 0, transparent 28%);
  }

  .about-copy {
    padding: 40px 18px 44px;
  }

  .about-copy h2 {
    margin-top: 8px;
    font-size: 36px;
    line-height: .98;
  }

  .about-copy p {
    margin-block: 11px;
    font-size: 15px;
    line-height: 1.62;
  }

  .about-copy .button {
    margin-top: 12px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 31px;
    margin-top: 34px;
  }

  .steps > span {
    display: none;
  }

  .steps article {
    height: auto;
    min-height: 142px;
    padding: 20px 18px 18px;
  }

  .steps article b {
    left: 14px;
    top: -20px;
  }

  .steps article h3 {
    margin-top: 32px;
    font-size: 21px;
  }

  .steps article p {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.5;
  }

  .stories {
    padding: 48px 18px 46px;
  }

  .stories-main h2,
  .cta h2 {
    margin-top: 8px;
    font-size: 35px;
    line-height: .98;
  }

  .stories-main > p:not(.kicker),
  .cta p:not(.kicker) {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.58;
  }

  .quotes {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 18px;
  }

  .quotes blockquote:last-child {
    grid-column: auto;
  }

  .quotes blockquote {
    padding: 18px;
  }

  .quotes strong {
    font-size: 12px;
  }

  .quotes p {
    margin-block: 7px;
    font-size: 14px;
    line-height: 1.55;
  }

  .quotes cite {
    font-size: 12px;
  }

  .quotes small {
    margin-top: 2px;
    font-size: 11px;
  }

  .cta {
    min-height: 0;
    padding: 48px 18px 50px;
    background:
      linear-gradient(90deg, rgba(7,4,3,.97), rgba(7,4,3,.62)),
      url("hero.png") 69% 76% / cover;
  }

  .cta .kicker {
    font-size: 9px;
    letter-spacing: 2.2px;
  }

  .cta .actions {
    margin-top: 19px;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 24px 18px 26px;
    text-align: center;
  }

  footer > img {
    width: 128px;
    height: 76px;
  }

  .social {
    display: flex;
    gap: 18px;
  }

  .social span {
    width: 26px;
    height: 26px;
  }

  .social svg {
    width: 18px;
    height: 18px;
  }

  footer p {
    font-size: 11px;
  }

  footer em {
    justify-self: center;
    font-size: 21px;
  }
}

@media (max-width: 380px) {
  .hero-image {
    height: 315px;
  }

  .hero-content {
    padding-top: 280px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .section-heading h2,
  .about-copy h2,
  .stories-main h2,
  .cta h2 {
    font-size: 32px;
  }
}

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

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Continuous faded Natalie gallery behind Success Stories and the closing CTA */
.story-cta-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #080504;
}

.rolling-gallery {
  position: absolute;
  z-index: 0;
  inset: -7% -10%;
  overflow: hidden;
  opacity: .44;
  filter: saturate(.96) contrast(1.06) brightness(.92) sepia(.04);
}

.rolling-gallery::before,
.rolling-gallery::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 18%;
  pointer-events: none;
}

.rolling-gallery::before {
  left: 0;
  background: linear-gradient(90deg, #080504, transparent);
}

.rolling-gallery::after {
  right: 0;
  background: linear-gradient(270deg, #080504, transparent);
}

.rolling-gallery-track {
  height: 100%;
  width: max-content;
  display: flex;
  will-change: transform;
  animation: natalieGalleryRoll 46s linear infinite;
}

.gallery-sequence {
  height: 100%;
  display: flex;
  flex: none;
}

.gallery-sequence figure {
  width: clamp(390px, 42vw, 630px);
  height: 100%;
  flex: none;
  margin: 0 -58px 0 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 16%, #000 84%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 16%, #000 84%, transparent 100%);
}

.gallery-sequence img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  transform: scale(1.025);
}

.gallery-sequence figure:nth-child(1) img {
  object-position: center 40%;
}

.gallery-sequence figure:nth-child(3) img {
  object-position: center 46%;
}

.gallery-sequence figure:nth-child(4) img {
  object-position: center 34%;
}

.gallery-grade {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6,3,2,.72) 0%, rgba(7,4,3,.58) 43%, rgba(30,3,5,.47) 76%, rgba(7,4,3,.43) 100%),
    linear-gradient(180deg, rgba(5,3,2,.32), transparent 38%, rgba(5,3,2,.39)),
    radial-gradient(ellipse at 82% 33%, rgba(135,0,17,.17), transparent 31%),
    radial-gradient(ellipse at 77% 82%, rgba(205,146,54,.1), transparent 27%);
}

.story-cta-stage > .stories,
.story-cta-stage > .cta {
  z-index: 2;
  background-image: none;
}

.story-cta-stage > .stories {
  background: linear-gradient(92deg, rgba(8,5,3,.53) 0%, rgba(10,6,4,.42) 58%, rgba(42,5,7,.3) 100%);
}

.story-cta-stage > .cta {
  background: linear-gradient(90deg, rgba(7,4,3,.67) 0%, rgba(7,4,3,.58) 41%, rgba(7,4,3,.34) 69%, rgba(7,4,3,.14) 100%);
}

.story-cta-stage:hover .rolling-gallery-track {
  animation-play-state: paused;
}

@keyframes natalieGalleryRoll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 900px) {
  .rolling-gallery {
    inset-inline: -20%;
    opacity: .39;
  }

  .gallery-sequence figure {
    width: 68vw;
  }
}

@media (max-width: 620px) {
  .rolling-gallery {
    inset: -4% -34%;
    opacity: .35;
  }

  .rolling-gallery-track {
    animation-duration: 38s;
  }

  .gallery-sequence figure {
    width: 88vw;
    margin-right: -34px;
  }

  .story-cta-stage > .cta {
    background: linear-gradient(90deg, rgba(7,4,3,.75), rgba(7,4,3,.5));
  }
}

@media (prefers-reduced-motion: reduce) {
  .rolling-gallery-track {
    animation: none !important;
    transform: translate3d(-8%, 0, 0);
  }
}
