/* Arkhive.com — one-pager styles */

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ark-black);
  color: var(--ark-white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; transition: color 180ms var(--ease-out); }
a:hover { color: var(--ark-honey); }
input, textarea { font-family: inherit; }

/* ───── Layout ───── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.section { padding: 128px 0; position: relative; }
.section--tight { padding: 96px 0; }

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }
}

/* ───── Type ───── */
.display {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.02;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ark-honey);
  position: relative;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 18px;
  vertical-align: -3px;
  background-color: var(--ark-honey);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 30' fill='none' stroke='black' stroke-width='2.4' stroke-linejoin='miter'><polygon points='13,2.5 23.39,8.5 23.39,21.5 13,27.5 2.61,21.5 2.61,8.5'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 30' fill='none' stroke='black' stroke-width='2.4' stroke-linejoin='miter'><polygon points='13,2.5 23.39,8.5 23.39,21.5 13,27.5 2.61,21.5 2.61,8.5'/></svg>");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: transform 420ms var(--ease-out);
}
.in-view .eyebrow::before { transform: rotate(30deg); }

.eyebrow--dark { color: #121212; }
.eyebrow--dark::before { background-color: #121212; }

.rule-gold {
  display: block;
  width: 0;
  height: 1px;
  background: var(--ark-honey);
  margin: 20px 0 28px;
  transition: width 600ms var(--ease-out);
}
.in-view .rule-gold { width: 56px; }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  max-width: 880px;
}
/* ───── Section title ───── */

.label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ark-grey);
}

/* ───── Fade-up ───── */
.fade-up { opacity: 0; transform: translateY(14px); transition: opacity 480ms var(--ease-out), transform 480ms var(--ease-out); }
.fade-up.in-view,
.in-view .fade-up { opacity: 1; transform: translateY(0); }
.hero .fade-up { opacity: 1; transform: none; }
.fade-up.delay-1 { transition-delay: 80ms; }
.fade-up.delay-2 { transition-delay: 160ms; }
.fade-up.delay-3 { transition-delay: 240ms; }
.fade-up.delay-4 { transition-delay: 320ms; }
.fade-up.delay-5 { transition-delay: 400ms; }

/* ───── Nav ───── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 260ms var(--ease-out), padding 260ms var(--ease-out), border-color 260ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(12, 12, 12, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 40px;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.nav__logo img { height: 60px; width: auto; }
.nav__links { display: flex; gap: 40px; align-items: center; }
.nav__links a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  position: relative;
  padding: 6px 0;
}
.nav__links a:hover { color: var(--ark-white); }
.nav__links a.nav__cta {
  color: var(--ark-honey);
  padding: 10px 20px;
  border: 1px solid var(--ark-honey);
  border-radius: 3px;
  transition: all 180ms var(--ease-out);
}
.nav__links a.nav__cta:hover { background: var(--ark-honey); color: #121212; }

@media (max-width: 900px) {
  .nav { padding: 18px 24px; }
  .nav--scrolled { padding: 12px 24px; }
  .nav__links { gap: 20px; }
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ───── Buttons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: all 180ms var(--ease-out);
  cursor: pointer;
}
.btn svg { width: 14px; height: 14px; stroke-width: 1.8; }
.btn--primary { background: var(--ark-honey); color: #121212; }
.btn--primary:hover { background: #D9A71E; color: #121212; transform: translateY(-1px); }
.btn--primary:active { transform: translateY(0); }
.btn--secondary { background: transparent; color: var(--ark-honey); border-color: var(--ark-honey); }
.btn--secondary:hover { background: var(--ark-honey); color: #121212; }
.btn--ink { background: #121212; color: #fff; border: 1px solid #121212; }
.btn--ink:hover { background: #000; }
.btn--large { padding: 20px 36px; font-size: 13px; }

/* ───── Hero ───── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 96px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__bg-hex {
  position: absolute;
  top: -8%;
  right: -6%;
  width: 62%;
  opacity: 0.11;
  mix-blend-mode: screen;
}
.hero__bg-ghost {
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 85%;
  opacity: 0.035;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ark-honey);
  margin-bottom: 48px;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--ark-honey);
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 8.2vw, 128px);
  line-height: 0.98;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ark-white);
}
.hero__headline .light {
  font-weight: 300;
  color: rgba(255,255,255,0.96);
}
.hero__headline .honey {
  color: var(--ark-honey);
  font-weight: 400;
}
/* Generic honey accent for brand letters (e.g. gold "i" in Arkhive wordmark) */
.honey {
  color: var(--ark-honey);
}
.hero__headline .amp {
  display: inline-block;
  margin: 0 4px;
  font-weight: 300;
  color: var(--ark-honey);
}
.hero__rule {
  display: block;
  margin: 44px auto 36px;
  width: 72px;
  height: 1px;
  background: var(--ark-honey);
}
.hero__subhead {
  max-width: 680px;
  margin: 0 auto 56px;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  font-weight: 400;
}
.hero__meta {
  position: absolute;
  left: 40px;
  bottom: 36px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ark-grey);
}
.hero__meta strong { color: var(--ark-honey); font-weight: 600; letter-spacing: 0.22em; }
.hero__scroll {
  position: absolute;
  right: 40px;
  bottom: 36px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ark-grey);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--ark-grey), transparent);
}

@media (max-width: 768px) {
  .hero__meta, .hero__scroll { display: none; }
  .hero { padding: 120px 0 72px; }
}

/* ───── Services ───── */
.services__head {
  max-width: 880px;
  margin: 0 0 72px 0;
}
.services__inline-kicker {
  color: var(--ark-honey);
  font-style: normal;
}
.services__intro {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.55;
  color: rgba(10,10,10,0.68);
  max-width: 620px;
}
.section:not(.light-spread) .services__intro {
  color: rgba(255,255,255,0.72);
}
.services__list {
  border-top: 1px solid rgba(10,10,10,0.14);
}
.section:not(.light-spread) .services__list {
  border-top-color: rgba(255,255,255,0.1);
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 2fr 48px;
  gap: 48px;
  padding: 40px 0;
  align-items: start;
  border-bottom: 1px solid rgba(10,10,10,0.14);
  transition: background 260ms var(--ease-out), padding 260ms var(--ease-out);
  cursor: default;
  position: relative;
}
.section:not(.light-spread) .service-row {
  border-bottom-color: rgba(255,255,255,0.1);
}
.service-row::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--ark-honey);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms var(--ease-out);
}
.service-row:hover::before { transform: scaleX(1); }
.service-row:hover .service-row__title { color: var(--ark-honey); transform: translateX(8px); }
.service-row:hover .service-row__arrow { color: var(--ark-honey); transform: translateX(12px); }
.service-row__title {
  font-family: var(--font-body);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  transition: color 260ms var(--ease-out), transform 420ms var(--ease-out);
}
.service-row__body {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.65;
  max-width: 600px;
}
.service-row__arrow {
  color: rgba(255,255,255,0.3);
  transition: color 220ms var(--ease-out), transform 220ms var(--ease-out);
  font-size: 22px;
  justify-self: end;
}

@media (max-width: 900px) {
  .services__head { grid-template-columns: 1fr; gap: 32px; }
  .service-row { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .service-row__body { grid-column: 1 / -1; margin-left: 0; }
  .service-row__arrow { display: none; }
}

/* ───── About ───── */
.about {
  background: var(--ark-black);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  align-items: start;
}
.about__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
.about__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Core Codes */
.codes {
  margin-top: 120px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 64px;
}
.codes__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.code {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: background 240ms var(--ease-out);
}
.code:first-child { padding-left: 0; }
.code:last-child { padding-right: 0; border-right: 0; }
.code:hover { background: rgba(234, 187, 42, 0.03); }
.code__num {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 40px;
  color: var(--ark-honey);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.code__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: var(--ark-white);
  margin-bottom: 16px;
}
.code__body {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .codes__grid { grid-template-columns: repeat(2, 1fr); }
  .code { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 28px 0; }
  .code:nth-child(odd) { padding-right: 24px; border-right: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 600px) {
  .codes__grid { grid-template-columns: 1fr; }
  .code, .code:nth-child(odd) { border-right: 0; padding-right: 0; }
}

/* ───── Team ───── */
.team {
  background: var(--ark-black);
  position: relative;
}
.team__hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 72px;
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.team__portrait {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
.team__portrait img {
  width: 100%; height: 100%; object-fit: cover;
}
.team__helena-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ark-honey);
  margin-bottom: 16px;
}
.team__helena-name {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1;
  margin-bottom: 14px;
  font-weight: 400;
}
.team__helena-role {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ark-grey);
  margin-bottom: 28px;
}
.team__helena-rule {
  width: 56px; height: 1px; background: var(--ark-honey); margin-bottom: 28px;
}
.team__helena-bio {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.7;
}

.team__intro {
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  margin-top: 20px;
  max-width: 780px;
  line-height: 1.6;
}

.direct__item-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ark-white);
}

.board {
  margin-top: 96px;
}
.board__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ark-honey);
  margin-bottom: 12px;
}
.board__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1;
  margin-bottom: 48px;
  font-weight: 400;
}
.board__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.board-card {
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 28px;
  transition: border-color 240ms var(--ease-out), transform 240ms var(--ease-out);
}
.board-card:hover {
  border-color: rgba(234, 187, 42, 0.5);
  transform: translateY(-3px);
}
.board-card__portrait {
  aspect-ratio: 1;
  width: 100%;
  max-width: 120px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #0a0a0a;
}
.board-card__portrait img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.board-card__portrait--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--ark-honey);
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.05em;
}
.board-card__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin-bottom: 8px;
}
.board-card__rule {
  width: 32px; height: 1px; background: var(--ark-honey); margin-bottom: 16px;
}
.board-card__bio {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .team__hero { grid-template-columns: 1fr; gap: 40px; }
  .board__grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ───── Why ───── */
.why {
  background: linear-gradient(180deg, var(--ark-black) 0%, #0a0a0a 100%);
}
.why__head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 96px;
  align-items: start;
}
.why__body {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.75;
  display: flex; flex-direction: column; gap: 20px;
}
.diffs {
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.diff {
  padding: 40px 32px 40px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 220ms var(--ease-out);
}
.diff:nth-child(n+2) { padding-left: 32px; }
.diff:last-child { border-right: 0; }
.diff:hover { background: rgba(234,187,42,0.035); }
.diff__num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--ark-honey);
  margin-bottom: 20px;
}
.diff__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.15;
  margin-bottom: 14px;
  font-weight: 400;
}
.diff__rule { width: 28px; height: 1px; background: var(--ark-honey); margin-bottom: 14px; }
.diff__body { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }

@media (max-width: 1000px) {
  .why__head { grid-template-columns: 1fr; gap: 32px; }
  .diffs { grid-template-columns: repeat(2, 1fr); }
  .diff:nth-child(2) { border-right: 0; }
  .diff:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 600px) {
  .diffs { grid-template-columns: 1fr; }
  .diff { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 28px 0 !important; }
}

/* ───── Testimonials ───── */
.testimonials {
  background: var(--ark-black);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
}
.quote {
  padding: 48px;
  background: #131313;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  position: relative;
  transition: border-color 260ms var(--ease-out);
}
.quote:hover { border-color: rgba(234,187,42,0.3); }
.quote__mark {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.6;
  color: var(--ark-honey);
  margin-bottom: 24px;
  font-weight: 300;
}
.quote__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.45;
  color: var(--ark-white);
  margin-bottom: 32px;
  letter-spacing: 0.005em;
}
.quote__rule { width: 32px; height: 1px; background: var(--ark-honey); margin-bottom: 18px; }
.quote__attr {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ark-grey);
}
.quote__attr strong { color: var(--ark-white); font-weight: 600; }

@media (max-width: 900px) {
  .testimonials__grid { grid-template-columns: 1fr; gap: 24px; }
  .quote { padding: 32px; }
  .quote__text { font-size: 19px; }
}

/* ───── Contact ───── */
.contact {
  background: var(--ark-black);
  position: relative;
  overflow: hidden;
}
.contact__big {
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 180px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 24px;
}
.contact__big .honey { color: var(--ark-honey); font-weight: 400; }
.contact__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.74);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 64px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: start;
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.field--full { grid-column: 1 / -1; }
.field__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ark-honey);
}
.field__input, .field__textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 12px 0;
  color: var(--ark-white);
  font-size: 16px;
  transition: border-color 220ms var(--ease-out);
}
.field__input:focus, .field__textarea:focus {
  outline: none;
  border-bottom-color: var(--ark-honey);
}
.field__textarea { resize: vertical; min-height: 80px; font-family: inherit; }
.field__error {
  font-size: 11px;
  color: #ff7a7a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.form__submit { grid-column: 1 / -1; margin-top: 16px; }
.form__success {
  grid-column: 1 / -1;
  padding: 32px;
  border: 1px solid var(--ark-honey);
  border-radius: 4px;
  background: rgba(234,187,42,0.05);
  text-align: center;
}
.form__success h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ark-honey);
  margin-bottom: 8px;
  font-weight: 400;
}
.form__success p { color: rgba(255,255,255,0.8); font-size: 15px; }

.direct {
  padding: 32px;
  background: #131313;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
}
.direct__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ark-honey);
  margin-bottom: 24px;
}
.direct__item { margin-bottom: 18px; }
.direct__item:last-child { margin-bottom: 0; }
.direct__item-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ark-grey);
  font-weight: 600;
  margin-bottom: 6px;
}
.direct__item a {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ark-white);
  display: inline-block;
}
.direct__item a:hover { color: var(--ark-honey); }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: 32px; }
  .form { grid-template-columns: 1fr; }
}

/* ───── Footer ───── */
.footer {
  padding: 48px 40px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__left { display: flex; align-items: center; gap: 20px; }
.footer__logo img { height: 18px; width: auto; opacity: 0.62; }
.footer__copy {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ark-grey);
  font-weight: 500;
}
.footer__nav {
  display: flex;
  gap: 28px;
}
.footer__nav a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ark-grey);
  font-weight: 600;
}
.footer__nav a:hover { color: var(--ark-honey); }

@media (max-width: 700px) {
  .footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
}

/* ───── Tweaks panel ───── */
.tweaks {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 320px;
  background: rgba(18,18,18,0.96);
  border: 1px solid rgba(234,187,42,0.35);
  border-radius: 6px;
  padding: 20px;
  color: var(--ark-white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  font-family: var(--font-body);
}
.tweaks__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tweaks__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ark-honey);
  font-weight: 400;
}
.tweaks__close { color: var(--ark-grey); font-size: 18px; line-height: 1; }
.tweaks__group { margin-bottom: 18px; }
.tweaks__group:last-child { margin-bottom: 0; }
.tweaks__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ark-grey);
  margin-bottom: 10px;
  display: block;
}
.tweaks__options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tweaks__options--stack { flex-direction: column; }
.tweaks__options--stack .tweaks__opt { width: 100%; text-align: left; }
.tweaks__opt {
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 3px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 180ms var(--ease-out);
}
.tweaks__opt:hover { border-color: rgba(234,187,42,0.4); color: var(--ark-white); }
.tweaks__opt--active { background: var(--ark-honey); color: #121212; border-color: var(--ark-honey); }
.tweaks__switch {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
}
.tweaks__switch input { display: none; }
.tweaks__switch-track {
  width: 32px; height: 18px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  position: relative;
  transition: background 180ms;
}
.tweaks__switch-track::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 180ms var(--ease-out);
}
.tweaks__switch input:checked + .tweaks__switch-track { background: var(--ark-honey); }
.tweaks__switch input:checked + .tweaks__switch-track::after { transform: translateX(14px); }

/* ───── Hero variants ───── */
.hero--dark { background: var(--ark-black); }

.hero--gradient { background: linear-gradient(135deg, #F0CC6A 0%, #EABB2A 55%, #C99A1A 100%); }
.hero--gradient .hero__eyebrow { color: #121212; }
.hero--gradient .hero__eyebrow::before, .hero--gradient .hero__eyebrow::after { background: #121212; }
.hero--gradient .hero__headline { color: #121212; }
.hero--gradient .hero__headline .honey { color: #FFFFFF; }
.hero--gradient .hero__headline .amp { color: rgba(18,18,18,0.55); }
.hero--gradient .hero__headline .light { color: rgba(18,18,18,0.72); }
.hero--gradient .hero__rule { background: #121212; }
.hero--gradient .hero__subhead { color: rgba(18,18,18,0.75); }
.hero--gradient .hero__bg-hex { opacity: 0.18; filter: invert(1); mix-blend-mode: multiply; }
.hero--gradient .hero__bg-ghost { opacity: 0.08; filter: invert(1); }
.hero--gradient .hero__meta, .hero--gradient .hero__scroll { color: rgba(18,18,18,0.65); }
.hero--gradient .hero__meta strong { color: #121212; }

.hero--split .hero__content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; text-align: left; max-width: 1240px; padding: 0 40px; }
.hero--split .hero__eyebrow { margin-bottom: 32px; }
.hero--split .hero__eyebrow::after { display: none; }
.hero--split .hero__headline { font-size: clamp(44px, 5.6vw, 88px); text-align: left; }
.hero--split .hero__rule { margin: 36px 0 32px; width: 56px; }
.hero--split .hero__subhead { margin: 0 0 48px; text-align: left; }
.hero--split .hero__cta { justify-content: flex-start; display: flex; }
.hero--split .hero__portrait {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.hero--split .hero__portrait img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}
.hero--split .hero__portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5));
}
.hero--split .hero__portrait-tag {
  position: absolute;
  left: 20px; bottom: 20px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ark-honey);
}

.hero--hex .hero__hex-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero--hex .hero__hex-frame svg {
  width: 72%;
  max-width: 900px;
  height: auto;
  opacity: 0.5;
}
.hero--hex .hero__bg-hex { display: none; }

@media (max-width: 900px) {
  .hero--split .hero__content { grid-template-columns: 1fr; padding: 0 24px; }
  .hero--split .hero__portrait { display: none; }
}

/* ───── Reveals ───── */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .service-row::before, .rule-gold, * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}


/* ───── Hex divider between major sections ───── */
.hex-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 0;
  background: var(--ark-black);
  color: var(--ark-honey);
  opacity: 0.45;
}
.hex-divider svg {
  width: 22px;
  height: 26px;
  display: block;
}


/* ───── Partners band ───── */
.partners {
  padding: 72px 0 96px;
}
.partners__head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  gap: 20px;
  margin-bottom: 64px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.partners__rule {
  display: block;
  width: 100%;
  max-width: 56px;
  height: 1px;
  background: rgba(234,187,42,0.55);
}
.partners__head > .partners__rule:first-child { justify-self: end; }
.partners__head > .partners__rule:last-child { justify-self: start; }
body[data-theme="light"] .partners__rule {
  background: rgba(234,187,42,0.65);
}
.partners__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ark-honey);
  white-space: nowrap;
  line-height: 1;
}
.partners__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  flex-wrap: wrap;
}
.partners__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
  opacity: 0.78;
  transition: opacity 0.3s ease;
}
.partners__logo:hover {
  opacity: 1;
}
.partners__logo img {
  max-height: 100%;
  max-width: 240px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: invert(1) brightness(1.1);
}
body[data-theme="light"] .partners__logo img {
  filter: none;
}
.partners__logo--scayle img { max-height: 42px; max-width: 200px; }
.partners__logo--sf img { max-height: 64px; }
.partners__logo--shopify img { max-height: 38px; max-width: 160px; }
.partners__logo-caption {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}
.partners__divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.12);
}
@media (max-width: 780px) {
  .partners__row { gap: 40px; }
  .partners__divider { display: none; }
}

/* ───── Hex band — Team → Why divider ───── */
.hexband {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 160px;
  overflow: hidden;
  border-top: 1px solid rgba(191,143,58,0.45);
  border-bottom: 1px solid rgba(191,143,58,0.45);
  background:
    /* cream highlight at far left */
    radial-gradient(ellipse 28% 160% at -2% 55%, rgba(255,245,220,0.55) 0%, transparent 60%),
    /* main deck-accurate honey gradient */
    radial-gradient(ellipse 70% 180% at 15% 50%, #E6C069 0%, #D9AE4B 40%, #C1912E 100%);
}
.hexband__hex {
  position: absolute;
  inset: 0;
  right: 10%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='122' viewBox='0 0 140 122'><g fill='none' stroke='%235A3F0E' stroke-opacity='0.34' stroke-width='1'><polygon points='35,2 68,20 68,58 35,76 2,58 2,20'/><polygon points='105,2 138,20 138,58 105,76 72,58 72,20'/><polygon points='70,42 103,60 103,98 70,116 37,98 37,60'/></g></svg>");
  background-size: 140px 122px;
  background-position: right center;
}
.hexband__cluster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hexband { height: 120px; }
}

/* ───── Hero CTA row (static-site only; JSX prototype used inline styles) ───── */
.hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ───── Form submit state (static-site only; JSX prototype toggled via React state) ───── */
.form__success { display: none; }
.form.form--submitted .form__success { display: block; }
.form.form--submitted .field,
.form.form--submitted .form__submit { display: none; }
