@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --paper: #fdfcfb;
  --white: #ffffff;
  --orange: #ad4105;
  --orange-dark: #913300;
  --orange-soft: #d46b3a;
  --espresso: #2a1008;
  --ink: #1b1512;
  --muted: #6c5c55;
  --contour: #efd7cd;
  --line: rgba(173, 65, 5, 0.42);
  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --shadow: 0 18px 50px rgba(42, 16, 8, 0.09);
  --radius: 0;
  --page: 1680px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--espresso);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  width: min(100%, var(--page));
  margin-inline: auto;
  background: var(--paper);
}

.container {
  width: min(100% - 48px, 1380px);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 50;
  height: 136px;
  border-bottom: 1px solid rgba(173, 65, 5, 0.05);
  background: rgba(253, 252, 251, 0.98);
}

.header-root {
  position: relative;
  z-index: 80;
}

.header-root.is-sticky {
  position: sticky;
  top: 0;
}

.header-root.is-sticky .site-header {
  box-shadow: 0 8px 26px rgba(42, 16, 8, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: 100%;
  max-width: var(--page);
  height: 100%;
  display: grid;
  grid-template-columns: 240px 1fr 230px;
  align-items: center;
  padding: 0 70px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 124px;
  height: auto;
}

.primary-nav {
  justify-self: center;
}

.primary-nav ul,
.footer-links,
.mobile-nav-links,
.social-list,
.breadcrumbs,
.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.5vw, 44px);
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.button,
.text-link,
.icon-button,
.filter-button,
.roast-button {
  border: 0;
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border: 1px solid var(--orange);
  color: var(--white);
  background: var(--orange);
  font-size: 18px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover {
  color: var(--orange);
  background: transparent;
  transform: translateY(-2px);
}

.button-outline {
  color: var(--orange);
  background: transparent;
}

.button-outline:hover {
  color: var(--white);
  background: var(--orange);
}

.button-dark {
  border-color: var(--espresso);
  color: var(--white);
  background: var(--espresso);
}

.button-dark:hover {
  color: var(--espresso);
}

.text-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 4px;
  color: var(--orange);
  background: transparent;
  font-size: 18px;
}

.text-link::after {
  position: absolute;
  right: 4px;
  bottom: 3px;
  left: 4px;
  height: 1px;
  content: "";
  background: currentColor;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--orange);
  color: var(--orange);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  position: fixed;
  z-index: 45;
  inset: 96px 0 0;
  display: none;
  padding: 28px 24px 48px;
  color: var(--espresso);
  background: var(--paper);
  overflow-y: auto;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-nav-links a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 28px;
}

.mobile-menu .button {
  width: 100%;
  margin-top: 28px;
}

.contour-surface {
  position: relative;
  isolation: isolate;
}

.contour-surface::before,
.contour-surface::after {
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 260px;
  border: 1px solid var(--contour);
  border-radius: 44% 56% 41% 59% / 57% 41% 59% 43%;
  content: "";
  opacity: 0.75;
  pointer-events: none;
}

.contour-surface::before {
  top: 40px;
  left: -80px;
  box-shadow: 18px 18px 0 -17px var(--contour), 38px 38px 0 -37px var(--contour), 62px 62px 0 -61px var(--contour);
  transform: rotate(-12deg);
}

.contour-surface::after {
  right: -120px;
  bottom: -40px;
  box-shadow: 18px 18px 0 -17px var(--contour), 38px 38px 0 -37px var(--contour), 62px 62px 0 -61px var(--contour);
  transform: rotate(18deg);
}

/* Approved home hero */
.field-hero {
  display: grid;
  height: clamp(560px, calc(100svh - 136px), 637px);
  min-height: 0;
  grid-template-columns: 38.2% 49.2% 12.6%;
  border-bottom: 1px solid var(--orange-soft);
  overflow: hidden;
}

.field-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 90px 44px 36px 100px;
  overflow: hidden;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  color: var(--orange);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::after {
  width: 30px;
  height: 1px;
  content: "";
  background: currentColor;
}

.field-title {
  max-width: 555px;
  margin: 0;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(56px, 4.2vw, 70px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.short-rule {
  width: 138px;
  height: 2px;
  margin: 24px 0 20px;
  background: var(--orange);
}

.field-lede {
  max-width: 420px;
  margin: 0;
  font-size: 23px;
  line-height: 1.35;
}

.field-actions {
  display: flex;
  align-items: center;
  gap: 56px;
  margin-top: 28px;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--orange);
  font-size: 16px;
}

.scroll-arrow {
  position: relative;
  width: 30px;
  height: 38px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-radius: 0 0 0 28px;
}

.scroll-arrow::after {
  position: absolute;
  right: -2px;
  bottom: -4px;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(-45deg);
}

.hero-mosaic {
  display: grid;
  height: 100%;
  min-width: 0;
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) 154px;
  gap: 12px;
  overflow: hidden;
}

.mosaic-main {
  display: grid;
  height: 100%;
  min-width: 0;
  min-height: 0;
  grid-template-rows: minmax(0, 1.88fr) minmax(0, 1fr);
  gap: 12px;
}

.mosaic-bottom {
  display: grid;
  height: 100%;
  min-height: 0;
  grid-template-columns: 1.37fr 1fr;
  gap: 12px;
}

.photo-tile {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.photo-farm {
  object-position: center 46%;
}

.photo-cupping {
  object-position: center 25%;
}

.photo-cherries {
  object-position: center 48%;
}

.photo-beans {
  object-position: center;
}

.hero-rail {
  display: grid;
  height: 100%;
  min-width: 0;
  min-height: 0;
  grid-template-columns: 72px 1fr;
  align-items: center;
  background: var(--paper);
}

.vertical-label {
  display: flex;
  height: 86%;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--orange);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 17px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.vertical-label::before,
.vertical-label::after {
  width: 1px;
  height: 120px;
  content: "";
  background: currentColor;
}

.hero-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.social-circle {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  background: transparent;
  font-size: 29px;
  font-weight: 600;
  line-height: 1;
  padding: 0;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.social-circle:hover {
  color: var(--white);
  background: var(--orange);
  transform: translateY(-3px);
}

.social-circle.instagram {
  font-family: Georgia, serif;
  font-size: 31px;
}

.social-circle.tiktok {
  font-size: 27px;
}

.social-circle svg {
  display: block;
  width: 25px;
  height: 25px;
  pointer-events: none;
}

.social-circle.whatsapp svg {
  width: 28px;
  height: 28px;
}

.social-circle.google svg {
  width: 24px;
  height: 24px;
}

.process-strip {
  display: grid;
  height: 172px;
  min-height: 0;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(173, 65, 5, 0.15);
  background: var(--paper);
  overflow: hidden;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px clamp(28px, 5.4vw, 92px);
}

.process-step + .process-step {
  border-left: 1px solid var(--orange-soft);
}

.process-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 29px;
}

.process-icon svg {
  width: 34px;
  height: 34px;
}

.process-number {
  margin: 0;
  color: var(--orange);
  font-family: var(--serif);
  font-size: 43px;
  line-height: 0.95;
}

.process-name {
  margin: 4px 0 4px;
  font-size: 21px;
  font-weight: 500;
}

.process-copy {
  max-width: 330px;
  margin: 0;
  font-size: 15px;
  line-height: 1.27;
}

/* General sections */
.section {
  padding: clamp(72px, 7vw, 112px) 0;
}

.section-sm {
  padding: 58px 0;
}

.section-orange {
  color: var(--white);
  background: var(--orange);
}

.section-espresso {
  color: var(--white);
  background: var(--espresso);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.section-orange .section-kicker,
.section-espresso .section-kicker {
  color: inherit;
}

.section-kicker::before {
  width: 42px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-title {
  max-width: 760px;
  margin: 0;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.07;
}

.section-orange .section-title,
.section-espresso .section-title {
  color: inherit;
}

.section-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 22px);
}

.section-orange .section-lede,
.section-espresso .section-lede {
  color: rgba(255, 255, 255, 0.78);
}

.section-orange .button {
  border-color: var(--white);
  color: var(--orange);
  background: var(--white);
}

.section-orange .button:hover {
  color: var(--white);
  background: transparent;
}

.section-orange .social-circle {
  border-color: var(--white);
  color: var(--white);
}

.section-orange .social-circle:hover {
  color: var(--orange);
  background: var(--white);
}

.section-orange :focus-visible,
.section-espresso :focus-visible {
  outline-color: var(--white);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-heading-row .text-link {
  flex: 0 0 auto;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
}

.split-section.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
  height: 560px;
  min-height: 0;
}

.split-media > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  right: -32px;
  bottom: 42px;
  width: min(310px, 80%);
  padding: 28px;
  color: var(--espresso);
  background: var(--white);
  box-shadow: var(--shadow);
}

.floating-note strong {
  display: block;
  color: var(--orange);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
}

.body-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 18px;
}

.body-copy .button {
  margin-top: 16px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact {
  padding: 30px 28px;
}

.fact + .fact {
  border-left: 1px solid var(--line);
}

.fact strong {
  display: block;
  color: var(--orange);
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 400;
  line-height: 1;
}

.fact span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

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

.editorial-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.editorial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

:is(.card-image, .gallery-preview, .gallery-item, .page-hero-media, .image-band, .split-media) img[src$="cupping-line.jpeg"] {
  object-position: 50% 20%;
}

:is(.card-image, .gallery-preview, .gallery-item, .page-hero-media, .image-band, .split-media) img[src$="cupping-team.jpeg"] {
  object-position: 50% 27%;
}

:is(.card-image, .gallery-preview, .gallery-item, .page-hero-media, .image-band, .split-media) img[src$="sample-lab.jpeg"] {
  object-position: 50% 32%;
}

:is(.gallery-preview, .gallery-item, .page-hero-media) img[src$="farm-team.jpeg"] {
  object-position: 42% 44%;
}

:is(.card-image, .gallery-item, .split-media) img[src$="coffee-sacks.jpeg"] {
  object-position: 50% 28%;
}

:is(.gallery-preview, .gallery-item, .page-hero-media) img[src$="roastery-visit.jpeg"] {
  object-position: 50% 42%;
}

.editorial-card:hover .card-image img {
  transform: scale(1.035);
}

.card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.card-meta {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.card-title {
  margin: 0;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.13;
}

.card-copy {
  margin: 16px 0 24px;
  color: var(--muted);
}

.card-content .text-link,
.card-content .button {
  margin-top: auto;
}

.roast-card {
  border-top: 5px solid var(--orange);
}

.roast-level {
  display: flex;
  gap: 7px;
  margin: 18px 0;
}

.roast-level span {
  width: 12px;
  height: 12px;
  border: 1px solid var(--orange);
  border-radius: 50%;
}

.roast-level span.on {
  background: var(--orange);
}

.roast-button {
  min-height: 46px;
  padding: 10px 17px;
  border: 1px solid var(--orange);
  color: var(--orange);
  background: transparent;
}

.roast-button.is-selected,
.roast-button:hover {
  color: var(--white);
  background: var(--orange);
}

.inquiry-bar {
  position: sticky;
  z-index: 20;
  bottom: 16px;
  display: none;
  width: min(100% - 32px, 920px);
  margin: 36px auto 0;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 22px;
  color: var(--white);
  background: var(--espresso);
  box-shadow: var(--shadow);
}

.inquiry-bar.is-visible {
  display: flex;
}

.inquiry-bar strong {
  color: var(--white);
}

.inquiry-bar .button {
  flex: 0 0 auto;
}

.image-band {
  display: grid;
  height: 520px;
  min-height: 0;
  grid-template-columns: 1.15fr 0.85fr 0.65fr;
  gap: 12px;
}

.image-band img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.quote-panel {
  display: grid;
  min-height: 460px;
  place-items: center;
  padding: 60px 24px;
  text-align: center;
}

.quote-panel blockquote {
  max-width: 950px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
}

.quote-panel cite {
  display: block;
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 64px;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 42px;
  width: 1px;
  content: "";
  background: var(--line);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 28px;
  padding: 0 0 52px;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 32px;
}

.timeline-content {
  padding-top: 8px;
}

.timeline-content h3 {
  margin: 0 0 10px;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.timeline-content p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.gallery-preview {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}

.gallery-preview a,
.gallery-preview img {
  width: 100%;
  height: 100%;
}

.gallery-preview a {
  position: relative;
  overflow: hidden;
}

.gallery-preview a:first-child {
  grid-row: 1 / 3;
}

.gallery-preview a:nth-child(4) {
  grid-column: 2 / 4;
}

.gallery-preview img {
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-preview a:hover img {
  transform: scale(1.035);
}

.gallery-preview span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  color: var(--espresso);
  background: var(--white);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: clamp(48px, 7vw, 88px);
  color: var(--white);
  background: var(--orange);
}

.cta-panel > * {
  min-width: 0;
}

.cta-panel h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  overflow-wrap: break-word;
}

.cta-panel p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.cta-panel .button {
  border-color: var(--white);
  color: var(--orange);
  background: var(--white);
}

.cta-panel .button:hover {
  color: var(--white);
  background: transparent;
}

/* Subpages */
.page-hero {
  position: relative;
  height: 610px;
  min-height: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  display: grid;
  height: 100%;
  min-height: 0;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: stretch;
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 0;
  padding: 64px clamp(36px, 5vw, 84px);
}

.page-title {
  max-width: 650px;
  margin: 0;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(54px, 5.6vw, 92px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.03;
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 21px;
}

.page-hero-copy .button {
  margin-top: 30px;
}

.page-hero-media {
  height: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.page-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.page-hero-media.duo {
  display: grid;
  grid-template-columns: 1fr 0.38fr;
  gap: 12px;
}

.page-hero-media.duo img {
  min-width: 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.breadcrumbs li + li::before {
  margin-right: 9px;
  content: "/";
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 42px 0 0;
  border-top: 1px solid var(--line);
}

.feature-item {
  padding: 28px 20px 28px 0;
  border-bottom: 1px solid var(--line);
}

.feature-item:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.feature-item strong {
  display: block;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.feature-item span {
  color: var(--muted);
}

.map-card {
  display: grid;
  min-height: 460px;
  place-items: center;
  padding: 56px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 22% 24%, transparent 0 52px, var(--contour) 53px 54px, transparent 55px),
    radial-gradient(circle at 70% 58%, transparent 0 88px, var(--contour) 89px 90px, transparent 91px),
    var(--paper);
  text-align: center;
}

.map-card strong {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
}

.map-card address {
  max-width: 360px;
  margin: 12px 0 24px;
  font-style: normal;
  font-size: 19px;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-button {
  min-height: 44px;
  padding: 9px 17px;
  border: 1px solid var(--orange);
  color: var(--orange);
  background: transparent;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  background: var(--orange);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 260px;
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: block;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item.is-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.is-tall {
  grid-row: span 2;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  text-align: left;
}

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 70px;
  background: rgba(42, 16, 8, 0.94);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 90vw);
  max-height: 82vh;
  object-fit: contain;
}

.lightbox figure {
  max-width: 100%;
  margin: 0;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-size: 28px;
}

.blog-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  margin-bottom: 42px;
}

.search-field {
  position: relative;
}

.search-field input {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

.article-shell {
  width: min(100% - 48px, 920px);
  margin-inline: auto;
}

.article-header {
  padding: 90px 0 58px;
  text-align: center;
}

.article-title {
  margin: 0;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 94px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.03;
}

.article-meta {
  margin: 22px 0 0;
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-hero {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
}

.article-body {
  padding: 58px 0 100px;
  color: #3d312c;
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.8;
}

.article-body h2 {
  margin: 54px 0 18px;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.article-body p {
  margin: 0 0 24px;
}

.article-callout {
  margin: 44px 0;
  padding: 34px;
  border-left: 4px solid var(--orange);
  color: var(--espresso);
  background: #fff8f4;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.25;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 8vw, 110px);
}

.contact-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.contact-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item strong {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--espresso);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid rgba(173, 65, 5, 0.36);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  min-height: 28px;
  margin: 16px 0 0;
  color: var(--orange);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  border: 0;
  color: var(--espresso);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.faq-question::after {
  content: "+";
  color: var(--orange);
  font-family: var(--sans);
  font-size: 28px;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  display: none;
  max-width: 900px;
  padding: 0 0 28px;
  color: var(--muted);
}

.faq-answer.is-open {
  display: block;
}

.notice {
  padding: 20px 22px;
  border-left: 4px solid var(--orange);
  color: var(--espresso);
  background: #fff8f4;
}

.newsletter-form {
  display: flex;
  width: min(100%, 520px);
  margin-top: 30px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--white);
  color: var(--espresso);
  background: var(--white);
}

.newsletter-form .button {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.newsletter-form .button:hover {
  color: var(--orange);
  background: var(--white);
}

/* Combined origin and process */
.origin-process-journey {
  align-items: start;
}

.journey-media-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-self: stretch;
  gap: 18px;
  min-height: 920px;
}

.journey-media-frame,
.journey-media-frame > img {
  width: 100%;
  height: 100%;
  min-height: 0;
}

/* Enquiry marketplace */
.marketplace-product-grid {
  align-items: stretch;
}

.marketplace-product-card .card-content {
  padding: 28px;
}

.marketplace-product-details {
  width: 100%;
  margin: 4px 0 26px;
  border-top: 1px solid var(--line);
}

.marketplace-product-details > div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.marketplace-product-details dt {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marketplace-product-details dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.marketplace-product-actions {
  display: grid;
  width: 100%;
  gap: 14px;
  margin-top: auto;
}

.marketplace-quantity-field select {
  min-height: 48px;
}

.marketplace-add-button {
  width: 100%;
}

.marketplace-enquiry-summary {
  color: var(--ink);
}

.marketplace-enquiry-summary .card-content {
  padding: clamp(28px, 4vw, 48px);
}

.marketplace-summary-items {
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 0;
  margin: 18px 0 26px;
  list-style: none;
}

.marketplace-summary-items li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

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

.marketplace-summary-items:empty {
  display: none;
}

.marketplace-summary-status strong {
  color: var(--orange);
}

.marketplace-enquiry-summary .button {
  width: 100%;
  margin-top: 22px;
}

.marketplace-enquiry-summary .text-link {
  align-self: center;
  margin-top: 12px;
}

.marketplace-enquiry-summary .text-link:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Footer */
.site-footer {
  overflow: hidden;
  color: var(--white);
  background: var(--espresso);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.8fr 1fr;
  gap: 58px;
  padding: 62px 0 48px;
}

.footer-brand {
  position: relative;
  z-index: 0;
  padding-right: clamp(28px, 4vw, 60px);
  color: var(--espresso);
}

.footer-brand::before {
  position: absolute;
  z-index: -1;
  top: -62px;
  right: 0;
  bottom: -48px;
  width: 100vw;
  content: "";
  background: var(--paper);
}

.footer-brand .brand-logo {
  width: 150px;
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 0;
  color: var(--muted);
}

.footer-title {
  margin: 8px 0 20px;
  color: var(--orange-soft);
  font-size: 12px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact address {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.footer-contact p {
  margin: 12px 0 0;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-socials .social-circle {
  width: 48px;
  height: 48px;
  border-color: var(--orange-soft);
  color: var(--orange-soft);
  font-size: 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}

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

.toast {
  position: fixed;
  z-index: 1200;
  right: 24px;
  bottom: 24px;
  max-width: 370px;
  padding: 16px 20px;
  color: var(--white);
  background: var(--espresso);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1280px) {
  html {
    scroll-padding-top: 124px;
  }

  .site-header {
    height: 112px;
  }

  .header-inner {
    grid-template-columns: 190px 1fr 190px;
    padding: 0 34px;
  }

  .brand-logo {
    width: 108px;
  }

  .primary-nav ul {
    gap: 34px;
  }

  .primary-nav a {
    font-size: 17px;
  }

  .field-hero {
    height: clamp(540px, calc(100svh - 112px), 620px);
    min-height: 0;
    grid-template-columns: 39% 49% 12%;
  }

  .field-copy {
    padding: 58px 36px 30px 52px;
  }

  .field-title {
    font-size: clamp(48px, 4.2vw, 58px);
  }

  .field-actions {
    gap: 28px;
  }

  .hero-mosaic {
    grid-template-columns: minmax(0, 1fr) 112px;
  }

  .hero-rail {
    grid-template-columns: 48px 1fr;
  }

  .social-circle {
    width: 52px;
    height: 52px;
  }

  .vertical-label {
    font-size: 14px;
  }

  .process-step {
    grid-template-columns: 68px 1fr;
    gap: 14px;
    padding: 20px 30px;
  }

  .process-icon {
    width: 62px;
    height: 62px;
  }

  .process-strip {
    height: 160px;
  }

  .section {
    padding: 84px 0;
  }

  .split-media {
    height: 520px;
  }

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

  .page-hero,
  .page-hero-inner {
    height: 580px;
    min-height: 0;
  }

  .page-title {
    font-size: clamp(52px, 5.4vw, 76px);
  }
}

@media (max-width: 1050px) {
  .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1050px) {
  html {
    scroll-padding-top: 100px;
  }

  .site-header,
  .site-header.is-sticky {
    height: 88px;
  }

  .mobile-menu {
    inset: 88px 0 0;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    padding: 0 24px;
  }

  .brand-logo {
    width: 76px;
  }

  .primary-nav,
  .header-actions .button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .field-hero {
    height: auto;
    min-height: 0;
    grid-template-columns: 42% 58%;
    grid-template-rows: 540px 84px;
  }

  .field-copy {
    height: 540px;
    min-height: 0;
    padding: 50px 32px 30px;
  }

  .field-title {
    font-size: clamp(46px, 6vw, 62px);
  }

  .field-lede {
    font-size: 19px;
  }

  .field-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .scroll-cue {
    margin-top: auto;
  }

  .hero-mosaic {
    height: 540px;
    min-height: 0;
  }

  .hero-rail {
    grid-column: 1 / -1;
    display: flex;
    height: 84px;
    min-height: 0;
    align-items: center;
    justify-content: space-between;
    padding: 12px 32px;
    border-top: 1px solid var(--line);
  }

  .vertical-label {
    height: auto;
    flex-direction: row;
    writing-mode: horizontal-tb;
  }

  .vertical-label::before,
  .vertical-label::after {
    width: 70px;
    height: 1px;
  }

  .hero-socials {
    flex-direction: row;
    gap: 16px;
  }

  .process-strip {
    height: 144px;
    min-height: 0;
  }

  .process-step {
    grid-template-columns: 56px 1fr;
    padding: 24px 20px;
  }

  .process-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .process-number {
    font-size: 34px;
  }

  .process-copy {
    font-size: 13px;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .split-media {
    order: initial;
  }

  .split-media,
  .split-media > img {
    height: 420px;
    min-height: 0;
  }

  .journey-media-stack {
    min-height: 720px;
  }

  .floating-note {
    right: 20px;
  }

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

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

  .page-hero,
  .page-hero-inner {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .page-hero-copy {
    min-height: 400px;
  }

  .page-hero-media,
  .page-hero-media img {
    height: 420px;
    min-height: 0;
  }

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

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

@media (max-width: 700px) {
  .container {
    width: min(100% - 32px, 1380px);
  }

  .field-hero {
    display: block;
  }

  .field-copy {
    height: auto;
    min-height: 0;
    padding: 42px 24px 28px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .field-title {
    font-size: clamp(44px, 12vw, 54px);
    line-height: 1.03;
  }

  .short-rule {
    width: 104px;
    margin: 18px 0 16px;
  }

  .field-lede {
    max-width: 330px;
    font-size: 18px;
  }

  .field-actions {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
  }

  .field-actions .button {
    min-height: 50px;
    padding-inline: 20px;
    font-size: 15px;
  }

  .hero-mosaic {
    height: 380px;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) 72px;
    gap: 8px;
  }

  .mosaic-main,
  .mosaic-bottom {
    gap: 8px;
  }

  .mosaic-main {
    grid-template-rows: 1.55fr 0.75fr;
  }

  .mosaic-bottom {
    grid-template-columns: 1fr 0.75fr;
  }

  .hero-rail {
    height: 84px;
    min-height: 0;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    padding: 12px 16px;
  }

  .vertical-label::before,
  .vertical-label::after {
    width: 40px;
  }

  .hero-socials {
    gap: 10px;
  }

  .social-circle {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .process-strip {
    height: auto;
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 108px;
    padding: 16px 20px;
  }

  .process-step + .process-step {
    border-top: 1px solid var(--orange-soft);
    border-left: 0;
  }

  .section {
    padding: 64px 0;
  }

  .section-sm {
    padding: 50px 0;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 36px;
  }

  .section-title {
    font-size: clamp(38px, 11vw, 50px);
  }

  .facts-grid,
  .card-grid,
  .card-grid.four,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .fact + .fact,
  .feature-item:nth-child(even) {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .split-media,
  .split-media > img {
    height: 340px;
    min-height: 0;
  }

  .floating-note {
    right: 12px;
    bottom: 12px;
    padding: 20px;
  }

  .image-band {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr 1fr;
  }

  .image-band img {
    height: 220px;
    min-height: 0;
  }

  .image-band img:first-child {
    grid-column: 1 / -1;
    height: 260px;
  }

  .gallery-preview {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 190px);
  }

  .gallery-preview a:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gallery-preview a:nth-child(4) {
    grid-column: 1 / -1;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }

  .page-hero-copy {
    min-height: 360px;
    padding: 46px 24px;
  }

  .page-title {
    font-size: clamp(46px, 14vw, 62px);
  }

  .page-hero-media,
  .page-hero-media img {
    height: 340px;
    min-height: 0;
  }

  .page-hero-media.duo {
    grid-template-columns: 1fr 90px;
  }

  .form-grid,
  .blog-toolbar {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 170px;
  }

  .gallery-item.is-wide {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .gallery-item.is-tall {
    grid-row: span 2;
  }

  .contact-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .newsletter-form {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-brand {
    padding-right: 0;
    margin-bottom: 24px;
  }

  .footer-brand::before {
    top: -62px;
    right: -16px;
    bottom: -24px;
    width: 100vw;
  }

  .footer-brand .brand-logo {
    width: 132px;
  }

  .journey-media-stack {
    min-height: 0;
    grid-template-rows: repeat(2, 300px);
  }

  .marketplace-product-details > div {
    grid-template-columns: 96px 1fr;
  }

  .article-header {
    padding: 58px 0 40px;
  }

  .article-body {
    padding: 40px 0 70px;
    font-size: 18px;
    line-height: 1.68;
  }

  .article-body h2 {
    margin-top: 42px;
    font-size: 36px;
  }

  .article-callout {
    margin: 34px 0;
    padding: 24px;
    font-size: 24px;
  }

  body[data-page="404"] .page-title {
    font-size: clamp(40px, 12vw, 54px);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .inquiry-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .lightbox {
    padding: 60px 16px 24px;
  }
}

@media (min-width: 701px) and (max-width: 820px) {
  .field-hero {
    display: block;
    height: auto;
  }

  .field-copy {
    height: auto;
    min-height: 0;
    padding: 52px 48px 36px;
  }

  .field-title {
    max-width: 640px;
    font-size: 58px;
  }

  .field-actions {
    flex-direction: row;
    align-items: center;
    gap: 28px;
  }

  .scroll-cue {
    margin-top: 28px;
  }

  .hero-mosaic {
    height: 440px;
  }
}

@media (min-width: 821px) and (max-width: 1050px) {
  .field-hero {
    display: grid;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto 500px 84px;
  }

  .field-copy {
    height: auto;
    padding: 52px 56px 42px;
  }

  .field-title {
    max-width: 780px;
    font-size: 58px;
  }

  .field-actions {
    flex-direction: row;
    align-items: center;
    gap: 28px;
  }

  .scroll-cue {
    margin-top: 28px;
  }

  .hero-mosaic {
    height: 500px;
  }

  .hero-rail {
    grid-column: 1;
    height: 84px;
  }
}

@media (max-width: 420px) {
  .hero-rail {
    gap: 7px;
    padding-inline: 12px;
  }

  .vertical-label {
    gap: 7px;
    font-size: 11px;
  }

  .vertical-label::before,
  .vertical-label::after {
    width: 22px;
  }

  .hero-socials {
    gap: 6px;
  }

  .social-circle {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .social-circle svg {
    width: 20px;
    height: 20px;
  }

  .social-circle.whatsapp svg {
    width: 22px;
    height: 22px;
  }
}

.origin-process-journey .split-section {
  align-items: stretch;
}

.journey-media-stack {
  min-height: 0;
}

.journey-media-stack .journey-media-frame {
  position: relative;
  height: auto;
  min-height: 0;
  overflow: hidden;
}

.journey-media-stack .journey-media-frame > img {
  position: absolute;
  inset: 0;
  height: 100%;
  min-height: 0;
}

@media (max-width: 1050px) {
  .journey-media-stack {
    grid-template-rows: repeat(2, 360px);
  }
}

@media (max-width: 700px) {
  .journey-media-stack {
    grid-template-rows: repeat(2, 300px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

.section-kicker-centered {
  justify-content: center;
}

.social-links-row {
  flex-direction: row;
  flex-wrap: wrap;
}

.lightbox-caption {
  margin-top: 12px;
  color: #fff;
  text-align: center;
}
