@font-face {
  font-family: Barlow;
  src: url("/assets/fonts/barlow-800.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}
/* Keep small editorial labels legible at every breakpoint. */
@font-face {
  font-family: DM;
  src: url("/assets/fonts/dm-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: DM;
  src: url("/assets/fonts/dm-600.ttf") format("truetype");
  font-weight: 600 800;
  font-display: swap;
}
@font-face {
  font-family: Marker;
  src: url("/assets/fonts/marker.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
:root {
  --ink: #111312;
  --paper: #f5f5ef;
  --white: #fff;
  --muted: #686c66;
  --cyan: #03e2dd;
  --pink: #f000bd;
  --border: #d8dbd3;
  --display: Barlow, "Arial Narrow", Impact, sans-serif;
  --body: DM, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}
button,
input,
textarea,
select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 6px;
}
::selection {
  background: var(--cyan);
  color: var(--ink);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.015em;
}
h2 {
  font-size: clamp(48px, 5.6vw, 84px);
}
h3 {
  font-size: 36px;
}
.wrap {
  width: min(1320px, calc(100% - 112px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--cyan);
  padding: 12px;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  height: 96px;
  padding: 0 56px;
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid #ffffff20;
  position: relative;
  z-index: 20;
}
.wordmark {
  font-family: Marker, cursive;
  transform: rotate(-7deg);
  display: flex;
  flex-direction: column;
  font-size: 31px;
  line-height: 0.9;
  letter-spacing: -0.07em;
  width: 94px;
  flex-shrink: 0;
}
.wordmark span:first-child {
  color: var(--pink);
}
.wordmark span:last-child {
  color: var(--cyan);
  margin-left: 5px;
}
.header-description {
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.11em;
  color: #c5c9c4;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
}
.navigation > a {
  transition: color 0.2s;
}
.navigation > a:hover {
  color: var(--cyan);
}
.nav-contact {
  border: 1px solid #565a55;
  padding: 12px 20px;
  display: flex;
  gap: 30px;
}
.nav-contact span {
  font-size: 22px;
  line-height: 1;
}
.menu-button {
  display: none;
}
.hero {
  position: relative;
  min-height: 770px;
  background: #101715;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #24302b;
  background-size: cover;
  background-position: center 58%;
  transform: scale(1.025);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #08120fed 0%, #08120fbd 32%, #08120f22 75%),
    linear-gradient(0deg, #091410d9, transparent 35%);
}
.hero-content {
  padding-top: 57px;
  padding-bottom: 100px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.13em;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}
.eyebrow.light {
  color: #e6e9e1;
}
.small-cross {
  color: var(--cyan);
  font-size: 24px;
  line-height: 1;
}
.hero h1 {
  font-size: clamp(70px, 8.9vw, 132px);
  letter-spacing: -0.015em;
  line-height: 0.89;
  margin-top: 28px;
  position: relative;
}
.hero h1 span {
  color: var(--cyan);
}
.hero-content > p {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 27px;
  color: #ecefe9;
  max-width: 450px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.button {
  padding: 17px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  min-height: 56px;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-3px);
}
.button span {
  font-size: 23px;
  line-height: 1;
}
.button.cyan {
  background: var(--cyan);
  color: var(--ink);
}
.button.cyan:hover {
  background: #80fffa;
}
.button.dark {
  background: var(--ink);
  color: var(--paper);
}
.button.outline {
  border-color: var(--ink);
}
.button.outline:hover {
  background: var(--ink);
  color: var(--paper);
}
.text-link {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #ffffff65;
  padding-bottom: 7px;
}
.text-link:hover {
  color: var(--cyan);
}
.text-link span {
  font-size: 22px;
}
.hero-bottom {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #e0e4dc;
}
.hero-bottom span:last-child {
  display: flex;
  gap: 40px;
}
.hero-side {
  position: absolute;
  right: 25px;
  top: 46%;
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 0.16em;
}
.sector-strip {
  background: var(--cyan);
  padding: 22px 0;
}
.sector-strip > .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.sector-strip i {
  font-size: 25px;
  line-height: 1;
  font-style: normal;
}
.hero-photo {
  background-image: url("/assets/harvester-hero-real.webp");
  background-position: center 55%;
}
.section {
  padding-block: 110px;
}
.section-number {
  color: #787d73;
  margin-right: 10px;
}
.pink-text {
  color: #c90096;
}
.cyan-text {
  color: var(--cyan);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 90px;
  margin-top: 34px;
  align-items: start;
}
.intro {
  --muted: #b3bbb5;
  --border: #ffffff24;
  background: #050706;
  color: var(--paper);
}
.intro .pink-text {color: var(--pink)}
.intro .section-number {color: #949e97}
.intro .inline-link {border-bottom-color: #ffffff70}
.intro .inline-link:hover {color: var(--cyan)}
.intro .service-row:hover {background: #ffffff08}
.intro .service-arrow {color: var(--cyan)}
.intro a:focus-visible {outline-color: var(--cyan)}
.intro-copy {
  padding-top: 6px;
}
.intro-copy p + p {
  margin-top: 20px;
}
.lead {
  font-size: 23px;
  line-height: 1.5;
}
.intro-copy p:not(.lead) {
  color: var(--muted);
  max-width: 510px;
}
.inline-link {
  display: inline-flex;
  gap: 28px;
  border-bottom: 1px solid var(--ink);
  padding: 5px 0;
  margin-top: 26px;
  font-weight: 600;
  font-size: 14px;
}
.inline-link:hover {
  color: #a4007b;
}
.service-list {
  margin-top: 75px;
  border-top: 1px solid var(--border);
}
.service-row {
  display: grid;
  grid-template-columns: 65px 1.1fr 1fr 45px;
  align-items: center;
  gap: 20px;
  padding: 29px 4px;
  border-bottom: 1px solid var(--border);
  transition:
    padding 0.25s,
    background 0.25s;
}
.service-row:hover {
  padding-inline: 20px;
  background: #e9ede5;
}
.service-index {
  font-size: 13px;
  color: var(--muted);
}
.service-row h3 {
  font-size: 34px;
}
.service-row p {
  font-size: 14px;
  color: var(--muted);
}
.service-arrow {
  font-size: 30px;
  text-align: right;
}
.field-section {
  min-height: 700px;
  position: relative;
  isolation: isolate;
  color: var(--paper);
  overflow: hidden;
}
.field-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("/assets/field-patterns.webp") center / cover;
}
.field-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #111710de, #11171033 95%);
}
.field-content {
  padding-block: 90px;
}
.field-content h2 {
  margin-top: 30px;
  font-size: clamp(56px, 6vw, 88px);
}
.field-content h2 span {
  color: var(--cyan);
}
.field-content > p {
  max-width: 495px;
  margin-top: 26px;
  font-size: 17px;
  color: #ebede7;
}
.field-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.field-tags span {
  border: 1px solid #ffffff65;
  padding: 5px 11px;
  font-size: 11px;
  letter-spacing: 0.09em;
}
.field-content .field-footnote {
  font-size: 13px;
  color: #d1d8ce;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 50px;
}
.section-heading h2 {
  margin-top: 27px;
}
.section-heading > p {
  max-width: 360px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  padding-bottom: 5px;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.package {
  border: 1px solid #cdd1c8;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  background: #fcfcf7;
  position: relative;
}
.package.featured {
  background: var(--cyan);
  border-color: var(--cyan);
}
.package-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 34px;
}
.package-type {
  font-size: 10px;
  letter-spacing: 0.09em;
  font-weight: 600;
}
.package-nr {
  font-size: 12px;
  color: #5c655a;
}
.package h3 {
  font-size: 64px;
}
.package-promise {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 15px;
  font-weight: 600;
}
.package ul {
  padding: 26px 0 0;
  margin: 25px 0 25px;
  border-top: 1px solid #11131230;
  list-style: none;
}
.package li {
  position: relative;
  padding-left: 21px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.package li:before {
  content: "✓";
  position: absolute;
  left: 0;
  font-size: 14px;
  font-weight: 600;
}
.package-note {
  font-size: 13px;
  line-height: 1.6;
  color: #5e6659;
  margin-top: auto;
  margin-bottom: 27px;
}
.featured .package-note {
  color: #204943;
}
.package-cta {
  font-size: 13px;
  width: 100%;
  padding: 14px 17px;
  gap: 10px;
}
.package-details {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 50px;
  margin-top: 26px;
  font-size: 13px;
  color: var(--muted);
}
.package-details > p {
  max-width: 370px;
}
.package-details details {
  max-width: 560px;
}
.package-details summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.package-details details p {
  margin-top: 15px;
}
.video-section {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.video-visual {
  min-height: 620px;
  position: relative;
  overflow: hidden;
}
.video-photo {
  position: absolute;
  inset: 0;
  background: url("/assets/video-agro-v3.webp") center 44%/cover;
}
.video-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #111312a8, transparent 30%);
}
.frame-corner {
  position: absolute;
  width: 27px;
  height: 27px;
  border-color: var(--cyan);
  border-style: solid;
  z-index: 1;
}
.tl {
  top: 20px;
  left: 20px;
  border-width: 2px 0 0 2px;
}
.tr {
  top: 20px;
  right: 20px;
  border-width: 2px 2px 0 0;
}
.bl {
  bottom: 20px;
  left: 20px;
  border-width: 0 0 2px 2px;
}
.br {
  bottom: 20px;
  right: 20px;
  border-width: 0 2px 2px 0;
}
.video-label {
  position: absolute;
  bottom: 37px;
  left: 38px;
  font-size: 10px;
  letter-spacing: 0.08em;
  z-index: 1;
}
.video-format {
  position: absolute;
  top: 30px;
  right: 35px;
  z-index: 1;
  font-size: 11px;
  background: var(--ink);
  padding: 4px 9px;
}
.video-copy h2 {
  margin-top: 27px;
}
.video-copy > p {
  color: #c5cbc2;
  max-width: 470px;
  margin-top: 26px;
}
.format-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 32px;
}
.format-list li {
  border-bottom: 1px solid #ffffff25;
  padding: 10px 0;
  font-size: 14px;
}
.format-list li:before {
  content: "↗";
  color: var(--cyan);
  margin-right: 13px;
}
.ads-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.ads-title h2 {
  margin-top: 27px;
}
.ads-title > p {
  color: var(--muted);
  max-width: 465px;
  margin-top: 27px;
}
.ads-title .button {
  margin-top: 30px;
}
.ads-step {
  display: flex;
  gap: 25px;
  padding: 31px 0;
  border-top: 1px solid var(--border);
}
.ads-step > span {
  color: #c90096;
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
}
.ads-step h3 {
  font-size: 32px;
  margin-bottom: 13px;
}
.ads-step p {
  color: var(--muted);
  max-width: 340px;
}
.ads-budget {
  background: #e8ece2;
  padding: 22px;
  font-size: 13px;
  margin-top: 10px;
  color: #545b4e;
}
.about-section {
  background: var(--ink);
  color: var(--paper);
}
.about-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.marker-note {
  font-family: Marker, cursive;
  font-size: 22px;
  color: var(--pink);
  transform: rotate(-4deg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 40px;
}
.about-grid h2 {
  font-size: clamp(48px, 5.2vw, 76px);
}
.about-grid > p {
  color: #bec6bb;
  max-width: 400px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  margin-top: 65px;
  max-width: 1020px;
}
.team-grid article {
  border-top: 1px solid #ffffff35;
  padding-top: 24px;
}
.team-initial {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 64px;
  color: #444c40;
  margin-bottom: 32px;
  line-height: 1;
}
.team-initial > span {
  font-family: var(--body);
  font-size: 32px;
  color: var(--cyan);
}
.team-grid h3 {
  font-size: 36px;
  line-height: 1;
}
.team-grid .team-role {
  font-size: 11px;
  letter-spacing: 0.07em;
  color: var(--cyan);
  margin-top: 18px;
}
.team-grid p:last-child {
  font-size: 15px;
  line-height: 1.6;
  color: #bec6bb;
  margin-top: 16px;
  max-width: 340px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 45px;
}
.process-grid article {
  border-top: 1px solid var(--border);
  padding-top: 25px;
}
.process-grid article > span {
  font-family: var(--display);
  font-size: 72px;
  color: #b5c0ad;
  line-height: 1;
  display: block;
  margin-bottom: 30px;
}
.process-grid h3 {
  font-size: 32px;
}
.process-grid p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 15px;
  max-width: 350px;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: 90px;
  padding-top: 10px;
  padding-bottom: 110px;
}
.faq-section h2 {
  margin-top: 25px;
}
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 23px 0;
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker,
.package-details summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span,
.package-details summary span {
  font-size: 25px;
  line-height: 1;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-list details[open] summary span,
.package-details details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  margin-top: 18px;
  color: var(--muted);
  padding-right: 35px;
  font-size: 15px;
}
.contact-section {
  background: var(--cyan);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 90px;
  margin-top: 35px;
}
.contact-grid h2 {
  font-size: clamp(66px, 7vw, 105px);
}
.contact-grid h2 span {
  color: var(--ink);
}
.contact-grid > div > p {
  font-size: 18px;
  margin-top: 25px;
}
.contact-email {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 600;
  margin-top: 30px;
  max-width: max-content;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
}
.contact-email span {
  font-size: 30px;
}
.copy-email {
  padding: 7px 0;
  background: none;
  border: 0;
  border-bottom: 1px solid #11131255;
  font-size: 13px;
  margin-top: 14px;
}
.copy-email:hover {
  border-color: var(--ink);
}
.contact-grid .copy-status {
  font-size: 13px;
  min-height: 21px;
  margin-top: 10px;
}
.contact-grid form {
  padding-top: 6px;
}
.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}
input,
select,
textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #0b615d;
  border-radius: 0;
  padding: 14px;
  color: var(--ink);
  font-size: 15px;
}
select {
  margin-bottom: 23px;
  min-height: 53px;
}
input[type="email"] {
  min-height: 53px;
  margin-bottom: 23px;
}
textarea {
  resize: vertical;
  min-height: 150px;
}
textarea::placeholder {
  color: #236b64;
  opacity: 1;
}
.contact-grid form .button {
  width: 100%;
  margin-top: 18px;
}
.contact-grid form .button:disabled {
  cursor: wait;
  opacity: 0.65;
}
.form-note,
.form-status {
  font-size: 12px;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 480px;
}
.form-status a {
  text-decoration: underline;
}
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 48px 0 25px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-bottom: 42px;
  border-bottom: 1px solid #ffffff30;
}
.footer-logo {
  font-size: 35px;
}
.footer-top > p {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #b2bdac;
}
.back-to-top {
  margin-left: auto;
  font-size: 13px;
  display: flex;
  gap: 25px;
  align-items: center;
}
.back-to-top span {
  border: 1px solid #677161;
  padding: 6px 14px;
  font-size: 23px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  font-size: 12px;
  color: #adb7a8;
}
.privacy-trigger {
  color: inherit;
  font: inherit;
  border: 0;
  background: none;
  padding: 8px;
}
.privacy-trigger:hover {
  color: var(--cyan);
}
dialog {
  max-width: 650px;
  width: calc(100% - 40px);
  padding: 45px;
  border: 0;
  background: var(--paper);
  color: var(--ink);
}
dialog::backdrop {
  background: #07100bc9;
  backdrop-filter: blur(6px);
}
dialog h2 {
  font-size: 55px;
  margin: 20px 0 25px;
}
dialog p {
  font-size: 15px;
  margin-top: 16px;
}
dialog a {
  text-decoration: underline;
}
dialog .button {
  margin-top: 27px;
}
.dialog-close {
  position: absolute;
  right: 15px;
  top: 8px;
  background: none;
  border: 0;
  font-size: 35px;
  width: 44px;
  height: 44px;
}
.reveal {
  opacity: 1;
  transform: none;
}
.motion-ready .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(20px);
}
.motion-ready .reveal {
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
@media (min-width: 1700px) {
  .hero {
    min-height: 860px;
  }
  .hero-content {
    padding-top: 84px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .site-header {
    padding: 0 32px;
  }
  .header-description {
    display: none;
  }
  .hero h1 {
    font-size: 100px;
  }
  .hero {
    min-height: 730px;
  }
  .hero-side {
    right: 10px;
  }
  .navigation {
    gap: 25px;
  }
  .sector-strip > .wrap {
    font-size: 11px;
    gap: 12px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 30px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 80px;
    padding: 0 20px;
  }
  .wordmark {
    font-size: 28px;
    width: 78px;
  }
  .header-description {
    display: block;
    font-size: 9px;
  }
  .menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    background: none;
    border: 1px solid #5a6058;
    color: white;
  }
  .menu-button span {
    width: 20px;
    height: 1px;
    background: currentColor;
    display: block;
    margin-inline: auto;
    transition: transform 0.2s;
  }
  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .navigation {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    padding: 28px 20px;
    background: var(--ink);
    border-bottom: 1px solid #777;
    align-items: stretch;
  }
  .navigation.open {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .navigation > a {
    font-size: 19px;
  }
  .hero {
    min-height: 790px;
  }
  .hero-content {
    padding-top: 40px;
    padding-bottom: 140px;
  }
  .hero h1 {
    font-size: clamp(61px, 13vw, 89px);
    line-height: 0.96;
    margin-top: 27px;
  }
  .hero:before {
    background:
      linear-gradient(90deg, #08120fcc, #08120f4d),
      linear-gradient(0deg, #08120fe0, transparent 60%);
  }
  .hero-photo {
    background-position: 60% center;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.09em;
    gap: 10px;
  }
  .hero-content > p {
    font-size: 17px;
    margin-top: 24px;
  }
  .hero-actions {
    gap: 20px;
    margin-top: 30px;
    align-items: flex-start;
    flex-direction: column;
  }
  .button {
    min-height: 55px;
  }
  .hero-bottom {
    flex-direction: column;
    gap: 12px;
    bottom: 24px;
    font-size: 9px;
  }
  .hero-bottom span:last-child {
    gap: 20px;
  }
  .hero-side {
    display: none;
  }
  .sector-strip {
    padding: 16px 0;
  }
  .sector-strip > .wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px 15px;
    font-size: 10px;
  }
  .sector-strip i {
    font-size: 16px;
  }
  .sector-strip i:last-of-type {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
@media (max-width: 1100px) {
  .intro-grid {
    gap: 50px;
  }
  .package {
    padding: 24px 20px;
  }
  .package h3 {
    font-size: 55px;
  }
  .package-promise {
    font-size: 16px;
  }
  .package-cta {
    font-size: 12px;
    padding: 13px;
  }
  .package-cta span {
    font-size: 20px;
  }
  .video-grid {
    gap: 45px;
  }
  .ads-section {
    gap: 60px;
  }
  .about-grid {
    gap: 40px;
  }
  .team-grid {
    gap: 25px;
  }
  .contact-grid {
    gap: 45px;
  }
  .service-row {
    grid-template-columns: 40px 1.1fr 1fr 30px;
    gap: 12px;
  }
  .service-row h3 {
    font-size: 30px;
  }
  .package-type {
    font-size: 9px;
  }
}
@media (max-width: 850px) {
  .section {
    padding-block: 80px;
  }
  .intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .lead {
    font-size: 20px;
  }
  .service-row {
    grid-template-columns: 35px 1fr 30px;
  }
  .service-row p {
    grid-column: 2;
    grid-row: 2;
  }
  .service-row .service-arrow {
    grid-column: 3;
    grid-row: 1 / 3;
  }
  .service-row h3 {
    font-size: 32px;
  }
  .package-grid {
    gap: 12px;
  }
  .package {
    padding: 24px 15px;
  }
  .package-promise {
    font-size: 15px;
  }
  .package h3 {
    font-size: 46px;
  }
  .package li {
    font-size: 13px;
  }
  .package-cta {
    font-size: 11px;
    gap: 3px;
    padding: 12px 9px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading > p {
    max-width: 280px;
  }
  .video-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .video-visual {
    min-height: 600px;
  }
  .video-copy h2 {
    font-size: 56px;
  }
  .video-copy .button {
    font-size: 12px;
    padding: 15px;
    gap: 10px;
  }
  .ads-section {
    gap: 40px;
  }
  .ads-step {
    gap: 15px;
  }
  .ads-step h3 {
    font-size: 28px;
  }
  .ads-step p {
    font-size: 15px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-grid > p {
    max-width: 550px;
  }
  .team-grid h3 {
    font-size: 30px;
  }
  .team-grid .team-role {
    font-size: 9px;
  }
  .process-grid {
    gap: 25px;
  }
  .process-grid h3 {
    font-size: 26px;
  }
  .faq-section {
    gap: 40px;
  }
  .contact-grid {
    gap: 35px;
  }
  .contact-grid h2 {
    font-size: 70px;
  }
  .contact-email {
    font-size: 20px;
    gap: 10px;
  }
}
@media (max-width: 700px) {
  h2 {
    font-size: 52px;
  }
  .section {
    padding-block: 65px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 25px;
  }
  .intro-copy {
    padding: 0;
  }
  .lead {
    font-size: 21px;
  }
  .intro-copy p:not(.lead) {
    font-size: 16px;
  }
  .service-list {
    margin-top: 40px;
  }
  .service-row {
    padding: 24px 0;
    row-gap: 6px;
  }
  .service-row:hover {
    padding-inline: 6px;
  }
  .service-row h3 {
    font-size: 29px;
  }
  .service-row p {
    font-size: 13px;
  }
  .field-section {
    min-height: 660px;
  }
  .field-content {
    padding-block: 60px;
  }
  .field-content h2 {
    font-size: 58px;
  }
  .field-content > p {
    font-size: 16px;
  }
  .field-overlay {
    background: linear-gradient(90deg, #111710d6, #1117106e);
  }
  .field-image {
    background-position: 60% center;
  }
  .field-tags span {
    font-size: 10px;
  }
  .section-heading {
    display: block;
    margin-bottom: 35px;
  }
  .section-heading h2 {
    margin-top: 22px;
  }
  .section-heading > p {
    max-width: 100%;
    margin-top: 23px;
    font-size: 16px;
  }
  .package-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .package {
    padding: 28px;
  }
  .package h3 {
    font-size: 65px;
  }
  .package-top {
    margin-bottom: 25px;
  }
  .package-type {
    font-size: 11px;
  }
  .package-promise {
    font-size: 19px;
  }
  .package li {
    font-size: 15px;
    margin-bottom: 13px;
  }
  .package-note {
    font-size: 14px;
    margin-top: 5px;
  }
  .package-cta {
    font-size: 14px;
    padding: 16px 20px;
  }
  .package-details {
    display: block;
    font-size: 13px;
  }
  .package-details details {
    margin-top: 20px;
    max-width: 100%;
  }
  .package-details summary {
    font-size: 14px;
  }
  .video-section {
    padding: 65px 0;
  }
  .video-grid {
    display: flex;
    flex-direction: column;
    gap: 38px;
  }
  .video-visual {
    width: 100%;
    min-height: 360px;
    order: 2;
  }
  .video-copy h2 {
    font-size: 58px;
  }
  .video-copy .button {
    font-size: 14px;
    padding: 17px 19px;
  }
  .video-copy > p {
    font-size: 16px;
  }
  .video-label {
    font-size: 9px;
  }
  .ads-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ads-title h2 {
    font-size: 58px;
  }
  .ads-step h3 {
    font-size: 30px;
  }
  .about-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .marker-note {
    font-size: 20px;
  }
  .about-grid {
    gap: 25px;
    margin-top: 32px;
  }
  .about-grid h2 {
    font-size: clamp(43px, 10vw, 64px);
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 40px;
  }
  .team-grid article {
    display: grid;
    grid-template-columns: 75px 1fr;
    column-gap: 20px;
  }
  .team-initial {
    font-size: 55px;
    display: block;
    grid-row: 1 / 4;
    margin-bottom: 0;
  }
  .team-initial span {
    display: none;
  }
  .team-grid h3 {
    font-size: 34px;
  }
  .team-grid .team-role {
    font-size: 11px;
    margin-top: 13px;
  }
  .team-grid p:last-child {
    font-size: 15px;
    margin-top: 12px;
    max-width: none;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .process-grid article {
    display: grid;
    grid-template-columns: 55px 1fr;
    column-gap: 20px;
  }
  .process-grid article > span {
    font-size: 56px;
    grid-row: 1 / 3;
    margin: 0;
  }
  .process-grid h3 {
    font-size: 30px;
  }
  .process-grid p {
    font-size: 15px;
    margin-top: 10px;
    max-width: none;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 65px;
  }
  .faq-section h2 br {
    display: none;
  }
  .faq-section h2 {
    font-size: 52px;
  }
  .faq-list summary {
    font-size: 15px;
    gap: 15px;
  }
  .faq-list details p {
    padding-right: 10px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 25px;
  }
  .contact-grid h2 {
    font-size: clamp(62px, 16vw, 94px);
  }
  .contact-email {
    font-size: 22px;
    gap: 18px;
  }
  .contact-grid > div > p {
    font-size: 17px;
  }
  .contact-grid form {
    padding-top: 5px;
  }
  .form-note {
    font-size: 12px;
  }
  .site-footer {
    padding-top: 35px;
  }
  .footer-top {
    gap: 25px;
    padding-bottom: 30px;
  }
  .footer-top > p {
    display: none;
  }
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 20px;
    font-size: 11px;
  }
  .footer-bottom .privacy-trigger {
    margin-left: auto;
  }
  .footer-bottom > a {
    font-size: 12px;
  }
  dialog {
    padding: 35px 25px;
  }
  dialog h2 {
    font-size: 48px;
  }
}
.header-description,.eyebrow,.hero-bottom,.hero-side,.sector-strip>.wrap,
.package-type,.package-nr,.field-tags span,.video-label,.video-format,
.team-grid .team-role,.footer-bottom {font-size:12px}
.package li,.package-note,.package-cta,.service-row p,.format-list li,
.team-grid p:last-child,.process-grid p,.faq-list details p {font-size:16px}
.package-cta{font-size:14px}
.contact-email{max-width:100%;font-size:clamp(18px,2vw,27px);gap:12px;overflow-wrap:anywhere}
.contact-email span{flex-shrink:0}
.email-preview{margin-top:22px;border-top:1px solid #11131255;padding-top:22px}
.email-preview[hidden]{display:none}
.craft-section{background:var(--ink);color:var(--paper);padding:0 0 95px}
.craft-heading{border-top:1px solid #ffffff30;padding-top:44px;margin-bottom:33px}
.craft-heading h2{font-size:clamp(34px,3.4vw,50px);margin-top:16px}
.craft-grid{display:grid;grid-template-columns:1fr 1.25fr 1fr;gap:22px;align-items:start}
.craft-grid figure{margin:0;min-width:0}
.craft-grid img{width:100%;height:370px;object-fit:cover}
.craft-location{padding-top:55px}
.craft-grid .craft-location img{height:285px;object-position:50% 40%}
.craft-grid figcaption{padding-top:18px}
.craft-grid figcaption>span{font-size:12px;letter-spacing:.055em;color:var(--cyan)}
.craft-grid figcaption>p{font-size:15px;line-height:1.6;color:#c7cfc2;margin-top:8px;max-width:310px}
@media(max-width:1000px){.craft-grid img{height:300px}.craft-grid .craft-location img{height:245px}.craft-location{padding-top:35px}}
@media(max-width:700px){.craft-section{padding-bottom:60px}.craft-grid{grid-template-columns:1fr;gap:35px}.craft-grid img{height:350px}.craft-grid .craft-location img{height:270px}.craft-location{padding-top:0}.craft-heading{padding-top:30px}.craft-heading h2{font-size:37px;line-height:1.05}.craft-grid figcaption>p{max-width:none}.hero-photo{background-position:67% center}}
.email-subject{font-size:14px;font-weight:600;margin-bottom:18px}
.email-actions{display:flex;gap:12px;flex-wrap:wrap}
.email-actions .button{flex:1;min-width:140px}
.email-preview textarea{font-size:14px;min-height:190px;background:#ffffff35}
@media(max-width:1100px) and (min-width:701px){.package-grid{grid-template-columns:1fr}.package{padding:32px}.package h3{font-size:64px}.package ul{columns:2;column-gap:40px}.package li{break-inside:avoid}.package-cta{max-width:360px}.package-note{max-width:520px}.package-type{font-size:12px}}
@media(max-width:700px){.header-description{font-size:12px;letter-spacing:.02em}.site-header{gap:18px}.eyebrow{letter-spacing:.04em}.hero-bottom{letter-spacing:.02em}.sector-strip>.wrap{font-size:12px;letter-spacing:.02em}.sector-strip i{display:none}.package-cta{font-size:14px}.contact-email{font-size:clamp(18px,5.2vw,24px)}.field-content .field-footnote{font-size:14px}.team-grid .team-role{font-size:12px}}
@media(max-width:380px){.header-description{display:none}.hero h1{font-size:clamp(54px,15vw,61px)}.team-grid article{grid-template-columns:50px 1fr;column-gap:14px}.team-initial{font-size:42px}.team-grid h3{font-size:30px}.package{padding:23px}.video-copy .button{font-size:13px}}

/* Reference motion: natural page scroll, independent image/title/foreground.
   No pinning and no duplicate semi-transparent landscape. */
@font-face {
  font-family: Hero Sans;
  src: url('/assets/fonts/dm-hero-800.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
  border-bottom-color: transparent;
}
.hero.hero-parallax {
  height: 110svh;
  min-height: 680px;
  background: #050706;
  overflow: clip;
}
.hero.hero-parallax:before {
  content: none;
}
.hero-parallax .hero-stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
}
.hero-parallax .hero-stage:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, #05070640, transparent 20%);
  pointer-events: none;
}
.hero-parallax .hero-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
}
.hero-parallax .hero-layer-back {
  z-index: 0;
  inset: -15% 0 0;
}
.hero-parallax .hero-layer-back img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 57%;
}
.hero-parallax .hero-layer-word {
  z-index: 3;
  bottom: auto;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5vw 34svh;
}
.hero .hero-display-word {
  display: flex;
  justify-content: center;
  gap: .18em;
  width: 100%;
  margin: 0;
  color: #f7f7f2;
  font-family: Hero Sans, Arial, sans-serif;
  font-size: clamp(70px, min(18.8vw, 29svh), 360px);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .9;
  text-align: center;
  white-space: nowrap;
  text-shadow: none;
}
.hero .hero-display-word span {color: inherit}
.hero .hero-display-word span:last-child {
  color: transparent;
  -webkit-text-stroke: 1.5px #f7f7f2;
}
.hero-parallax .hero-layer-person {
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.hero-parallax .hero-layer-person img {
  position: absolute;
  bottom: -12svh;
  width: auto;
  height: 97svh;
  min-height: 580px;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
}
.hero-parallax .hero-shade {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(
    to top,
    #050706 0%,
    #050706ed 6%,
    #05070685 14%,
    transparent 30%
  );
  pointer-events: none;
}
.hero-caption {
  position: absolute;
  z-index: 6;
  left: 4vw;
  right: 4vw;
  bottom: 7svh;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #f5f5efb3;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.5;
  pointer-events: none;
}
.hero-scroll-cue {display: flex; gap: 22px; align-items: center}
.hero-scroll-cue > span {font-size: 22px; font-weight: 400}
.brand-promise {
  position: relative;
  z-index: 8;
  margin-top: -2px;
  box-shadow: 0 -14px 0 #050706;
  background: #050706;
  color: var(--paper);
  padding: 80px 0 110px;
}
.brand-promise-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 32px;
}
.brand-promise .eyebrow {color: #aab5ad; font-size: 11px}
.brand-promise h2 {font-family: Hero Sans, Arial, sans-serif; font-weight: 800; font-size: clamp(40px, 6.5vw, 96px); letter-spacing: -.065em; line-height: 1.04; margin-top: 28px}
.brand-promise h2 span {color: var(--cyan)}
.brand-promise-copy > p {font-size: clamp(18px, 1.5vw, 22px); line-height: 1.6; margin-inline: auto; max-width: 600px; color: #c4cbc6}
.brand-promise-actions {display: flex; justify-content: center; align-items: center; gap: 32px; margin-top: 32px}
.brand-promise .inline-link {margin-top: 0; border-bottom-color: #ffffff65; color: var(--paper)}
.brand-promise .inline-link:hover {color: var(--cyan)}
.brand-promise-copy > .brand-promise-services {font-size: 10px; letter-spacing: .12em; color: #829087; margin-top: 36px}
@media (max-width: 700px) {
  .brand-promise {padding: 48px 0 70px}
  .brand-promise-grid {gap: 24px}
  .brand-promise h2 {font-size: clamp(28px, 8.8vw, 61px); margin-top: 24px}
  .brand-promise .eyebrow {font-size: 9px; letter-spacing: .08em}
  .brand-promise-actions {flex-direction: column; gap: 24px; margin-top: 28px}
  .brand-promise-actions .button {width: 100%; font-size: 13px; gap: 12px}
  .brand-promise-copy > .brand-promise-services {font-size: 8px; letter-spacing: .08em}
}
.sector-strip {
  position: relative;
  z-index: 5;
  margin-top: -2px;
  background: #050706;
  color: var(--paper);
  border-top: 1px solid #ffffff12;
  border-bottom: 1px solid #ffffff1f;
}
.sector-strip i {
  color: var(--cyan);
}
@media (max-width: 700px) {
  .hero.hero-parallax {
    height: 105svh;
    min-height: 620px;
  }
  .hero-parallax .hero-stage {
    position: absolute;
    height: 100%;
  }
  .hero-parallax .hero-layer-back {
    inset: -12% 0 0;
  }
  .hero-parallax .hero-layer-back img {
    object-position: 31% 55%;
  }
  .hero-parallax .hero-layer-word {
    padding: 0 20px 20svh;
    min-height: 560px;
  }
  .hero .hero-display-word {
    font-size: 19vw;
    letter-spacing: -.07em;
  }
  .hero .hero-display-word span:last-child {-webkit-text-stroke-width: 1px}
  .hero-parallax .hero-layer-person img {
    height: 78svh;
    min-height: 450px;
    bottom: -8svh;
  }
  .hero-parallax .hero-shade {
    background: linear-gradient(
      to top,
      #050706 0%,
      #050706ed 6%,
      #05070670 15%,
      transparent 28%
    );
  }
  .hero-caption {left: 20px; right: 20px; bottom: 5svh; font-size: 8px; letter-spacing: .08em}
  .hero-scroll-cue {gap: 8px}
}
@media (prefers-reduced-motion: reduce) {
  .hero-parallax .hero-layer {will-change: auto; transform: none !important}
}

/* Final four-plane hero: all PNG planes share the same full-scene canvas. */
.wordmark {
  display: block;
  position: relative;
  width: 105px;
  height: 90px;
  flex: 0 0 105px;
  transform: none;
}
.wordmark .brand-mark {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  background: #f7f7f2;
  -webkit-mask: url('/assets/get-high-monogram-master.png') center -20px / 130px 130px no-repeat;
  mask: url('/assets/get-high-monogram-master.png') center -20px / 130px 130px no-repeat;
}
.wordmark .brand-mark:before,
.wordmark .brand-mark:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #f000bd;
}
.wordmark .brand-mark:before {clip-path: polygon(43% 34%, 69% 17%, 69% 32%, 43% 46%)}
.wordmark .brand-mark:after {clip-path: polygon(72% 14%, 87% 6%, 87% 29%, 72% 37%)}
.hero.hero-parallax {
  min-height: 720px;
  height: 100svh;
}
.hero-parallax .hero-layer-sky,
.hero-parallax .hero-layer-mountains,
.hero-parallax .hero-layer-field,
.hero-parallax .hero-layer-foreground {
  inset: 0 0 -12%;
}
.hero-parallax .hero-layer-sky { z-index: 0; }
.hero-parallax .hero-layer-sky img { filter: brightness(1.16) saturate(1.08); }
.hero-parallax .hero-layer-sky:after {
  content: "";
  position: absolute;
  inset: 22% 0 0;
  background: linear-gradient(to bottom, transparent, #111c225c 26%, #101714ad 70%);
  pointer-events: none;
}
.hero-parallax .hero-layer-mountains { z-index: 1; }
.hero-parallax .hero-layer-mountains img { filter: brightness(1.22) saturate(1.06); }
.hero-parallax .hero-layer-field { z-index: 2; }
.hero-parallax .hero-layer-foreground { z-index: 5; }
.hero-parallax .hero-layer-sky img,
.hero-parallax .hero-layer-mountains img,
.hero-parallax .hero-layer-field img,
.hero-parallax .hero-layer-foreground img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center bottom;
}
.hero-parallax .hero-layer-copy {
  z-index: 4;
  display: flex;
  align-items: center;
  padding: 110px max(5vw, 28px) 140px;
  background: linear-gradient(90deg, #050706d9 0%, #0507069e 32%, transparent 68%);
  pointer-events: none;
}
.hero-copy-inner {
  width: min(670px, 55vw);
  pointer-events: auto;
}
.hero .hero-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--cyan);
}
.hero .hero-copy-inner h1 {
  margin: 22px 0 0;
  font-family: Hero Sans, Arial, sans-serif;
  font-size: clamp(48px, 5.2vw, 84px);
  line-height: 1.02;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero .hero-copy-inner h1 span { color: var(--cyan); }
.hero .hero-lead {
  max-width: 460px;
  margin-top: 26px;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.45;
}
.hero-copy-inner .button { margin-top: 52px; }
.hero-parallax .hero-shade {
  z-index: 6;
  background: linear-gradient(to top, #050706 0%, #050706d9 5%, transparent 23%);
}
.hero-caption { z-index: 7; }
@media (min-width: 701px) and (max-width: 1000px) {
  .hero-parallax .hero-layer-foreground img {
    position: absolute;
    right: -42%;
    bottom: 0;
    width: auto;
    height: 85%;
    object-fit: contain;
  }
}
@media (max-width: 700px) {
  .site-header { gap: 12px; }
  .hero-parallax .hero-layer { will-change: auto; }
  .hero-parallax .hero-layer-foreground { will-change: transform; }
  .wordmark { width: 90px; height: 80px; flex-basis: 90px; }
  .wordmark .brand-mark {
    -webkit-mask-size: 112px 112px;
    mask-size: 112px 112px;
    -webkit-mask-position: center -17px;
    mask-position: center -17px;
  }
  .hero.hero-parallax { height: 100svh; min-height: 760px; }
  .hero-parallax .hero-layer-foreground { z-index: 3; }
  .hero-parallax .hero-layer-sky,
  .hero-parallax .hero-layer-mountains,
  .hero-parallax .hero-layer-field,
  .hero-parallax .hero-layer-foreground { inset: 0 0 -8%; }
  .hero-parallax .hero-layer-sky img,
  .hero-parallax .hero-layer-mountains img,
  .hero-parallax .hero-layer-field img { object-position: 50% top; }
  .hero-parallax .hero-layer-field img { object-position: 40% top; }
  .hero-parallax .hero-layer-foreground img {
    position: absolute;
    right: -60%;
    bottom: 0;
    width: auto;
    height: 70%;
    object-fit: contain;
  }
  .hero-parallax .hero-layer-copy {
    align-items: flex-start;
    padding: 120px 20px 260px;
    background: linear-gradient(180deg, #050706d9 0%, #050706a6 38%, transparent 74%);
  }
  .hero-copy-inner { width: min(100%, 510px); }
  .hero .hero-kicker { font-size: 10px; }
  .hero .hero-copy-inner h1 { font-size: clamp(38px, 9.8vw, 64px); margin-top: 18px; }
  .hero .hero-lead { max-width: 340px; margin-top: 20px; font-size: 16px; }
  .hero-copy-inner .button { margin-top: 24px; font-size: 13px; }
  .hero-caption { bottom: 24px; }
  .hero-caption > span:first-child { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-parallax .hero-layer { will-change: auto; transform: none !important; }
}

/* Three founder portraits share one crop and quiet editorial treatment. */
.team-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0 0 27px;
  background: #202427;
}
.team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
@media (max-width: 700px) {
  .team-grid article { display: block; }
  .team-photo { aspect-ratio: 1 / 1; margin-bottom: 23px; }
}
