:root {
  --ivory: #f2f1ed;
  --soft-white: #fafaf7;
  --charcoal: #202629;
  --muted: #6f777a;
  --olive: #315b70;
  --terracotta: #b65f3f;
  --terracotta-dark: #8f4730;
  --brown: #242a2d;
  --line: #d7d8d4;
  --line-soft: rgba(32, 38, 41, 0.12);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.55;
}

a {
  color: inherit;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 0;
  background: var(--brown);
  color: var(--soft-white);
  padding: 10px 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 14px max(24px, calc((100vw - 1480px) / 2 + 40px));
  border-bottom: 1px solid var(--line-soft);
  background: rgba(250, 250, 247, 0.94);
  backdrop-filter: blur(12px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 238px;
  color: var(--charcoal);
  text-decoration: none;
}

.brand-symbol {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  background: var(--charcoal);
  color: var(--soft-white);
  font-weight: 800;
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark strong {
  font-size: 0.98rem;
}

.brand-mark small {
  max-width: 250px;
  color: var(--muted);
  font-size: 0.73rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 11px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--charcoal);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin: 0 4px;
  padding: 3px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.72);
}

.language-switcher button {
  min-width: 31px;
  border: 0;
  padding: 7px 8px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--charcoal);
  color: var(--soft-white);
}

.language-switcher button:focus-visible {
  outline: 3px solid rgba(182, 95, 63, 0.32);
  outline-offset: 2px;
}

.site-nav .nav-cta {
  margin-left: 8px;
  border: 1px solid var(--olive);
  background: var(--olive);
  color: var(--soft-white);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--soft-white);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--soft-white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--charcoal);
}

.section {
  padding: clamp(64px, 7vw, 110px) max(24px, calc((100vw - 1480px) / 2 + 40px));
  scroll-margin-top: 86px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  min-height: calc(85vh - 74px);
  padding: clamp(56px, 8vw, 104px) max(24px, calc((100vw - 1480px) / 2 + 40px));
  background: var(--ivory);
  color: var(--charcoal);
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero-placeholder {
  min-height: 0;
  height: auto;
  aspect-ratio: 16 / 9;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(3rem, 4.6vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.hero p:not(.eyebrow) {
  max-width: 480px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--charcoal);
  border-radius: 0;
  padding: 12px 18px;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  text-decoration: none;
  font-weight: 760;
}

.button.primary {
  border-color: var(--olive);
  background: var(--olive);
  color: var(--soft-white);
}

.button.primary:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
}

.button.secondary,
.button.light,
.button.outline {
  background: transparent;
  color: var(--charcoal);
}

.button.outline {
  border-color: var(--olive);
  color: var(--olive);
}

.button.outline:hover,
.button.outline:focus-visible {
  background: var(--olive);
  color: var(--soft-white);
}

.from-alex .button.light {
  border-color: rgba(250, 250, 247, 0.72);
  color: var(--soft-white);
}

.from-alex .button.light:hover,
.from-alex .button.light:focus-visible {
  background: var(--soft-white);
  color: var(--charcoal);
}

.trust-line {
  max-width: 390px;
  padding-left: 18px;
  border-left: 2px solid var(--terracotta);
  font-family: var(--serif);
  color: var(--charcoal) !important;
}

.chapter-heading {
  max-width: 900px;
  margin-bottom: clamp(38px, 6vw, 72px);
}

.chapter-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.chapter-heading h2 {
  color: var(--charcoal);
  font-size: clamp(2.1rem, 4vw, 4.55rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
}

.chapter-heading h3 {
  color: var(--charcoal);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.04;
}

.chapter-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.customer-groups,
.shipment-trust-section,
.story-opening,
.categories-section,
.contact-section {
  background: var(--ivory);
}

.work-section,
.client-section,
.contact-section {
  background: var(--soft-white);
}

.from-alex-section {
  padding: 0;
  background: var(--brown);
}

.customer-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 52px);
}

.customer-panels article {
  display: grid;
  gap: 22px;
  align-content: start;
}

.customer-panels .text-panel {
  border-top: 2px solid var(--olive);
  padding-top: 24px;
}

.customer-panels h3 {
  max-width: 520px;
  color: var(--charcoal);
  font-size: clamp(1.75rem, 2.8vw, 3.1rem);
  line-height: 1.04;
}

.customer-panels p {
  max-width: 440px;
  color: var(--muted);
  font-size: 1.05rem;
}

.shipment-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 52px);
}

.shipment-trust-card {
  display: grid;
  gap: 22px;
  align-content: start;
  border-top: 2px solid var(--olive);
  padding-top: 24px;
}

.shipment-trust-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
}

.shipment-trust-copy {
  max-width: 560px;
}

.shipment-trust-copy h3 {
  color: var(--charcoal);
  font-size: clamp(1.75rem, 2.6vw, 2.85rem);
  line-height: 1.04;
  letter-spacing: -0.016em;
}

.shipment-trust-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.story-layout,
.story-block,
.client-card {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(320px, 0.34fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.story-block,
.client-card {
  margin-top: clamp(74px, 10vw, 134px);
}

.story-block.reverse,
.client-card.reverse {
  grid-template-columns: minmax(320px, 0.34fr) minmax(0, 0.66fr);
}

.story-block.reverse .story-copy,
.client-card.reverse .client-copy {
  order: 1;
}

.story-block.reverse .image-placeholder,
.client-card.reverse .image-placeholder {
  order: 2;
}

.story-copy,
.client-copy,
.founder-copy {
  max-width: 540px;
}

.story-copy h3,
.client-copy h3,
.founder-copy h3 {
  color: var(--charcoal);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 3.4vw, 4rem);
  line-height: 1;
}

.story-opening > .chapter-heading h2,
.client-section > .chapter-heading h2,
.from-alex h2 {
  font-family: var(--serif);
  font-weight: 400;
}

.story-copy p,
.client-copy p,
.founder-copy p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.from-alex {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  margin: 0;
  padding: clamp(70px, 10vw, 132px) max(24px, calc((100vw - 1480px) / 2 + 40px));
  background: var(--brown);
  color: var(--soft-white);
}

.from-alex .eyebrow,
.from-alex h2,
.from-alex h3,
.from-alex p,
.from-alex .signature,
.from-alex .signature span {
  color: var(--soft-white) !important;
}

.from-alex h2 {
  font-size: clamp(2.4rem, 4.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.founder-media {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 14px;
  align-items: end;
}

.signature {
  font-family: var(--serif);
  font-size: 1.35rem !important;
}

.signature span {
  font-family: var(--sans);
  font-size: 0.92rem;
}

.image-placeholder,
.video-placeholder,
.hero-image,
.panel-image,
.category-scene-image,
.story-image,
.founder-image,
.operational-image,
.behind-image {
  position: relative;
  display: grid;
  place-items: end start;
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(32, 38, 41, 0.12);
  background:
    linear-gradient(135deg, rgba(252, 251, 248, 0.32), transparent 44%),
    repeating-linear-gradient(90deg, rgba(48, 42, 37, 0.08) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(252, 251, 248, 0.58) 0 1px, transparent 1px 76px),
    linear-gradient(135deg, #e7ded1 0%, #d2c7bb 48%, #adb4aa 100%);
  color: var(--charcoal);
  overflow: hidden;
}

.hero-image,
.panel-image,
.category-scene-image,
.story-image,
.founder-image,
.operational-image,
.behind-image,
.shipment-trust-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  padding: 0;
  background: none;
}

.category-scene-image {
  min-height: 190px;
}

.hero-image.hero-placeholder {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.hero-image {
  object-position: center center;
}

.story-image,
.founder-image,
.operational-image,
.behind-image {
  min-height: 260px;
}

.image-placeholder::after,
.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(252, 251, 248, 0.56);
  pointer-events: none;
}

.image-placeholder span,
.video-placeholder span {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 360px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  line-height: 1.05;
}

.image-placeholder small,
.video-placeholder small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  color: rgba(36, 36, 33, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
}

.from-alex .image-placeholder,
.from-alex .video-placeholder {
  border-color: rgba(252, 251, 248, 0.18);
  background:
    linear-gradient(135deg, rgba(252, 251, 248, 0.16), transparent 42%),
    repeating-linear-gradient(90deg, rgba(252, 251, 248, 0.1) 0 1px, transparent 1px 82px),
    linear-gradient(135deg, #5a4f45 0%, #75675c 52%, #978878 100%);
  color: var(--soft-white);
}

.from-alex .image-placeholder small,
.from-alex .video-placeholder small {
  color: rgba(252, 251, 248, 0.76);
}

.ratio-4-3 {
  aspect-ratio: 4 / 3;
}

.ratio-4-5 {
  aspect-ratio: 4 / 5;
}

.ratio-1-1 {
  aspect-ratio: 1 / 1;
  min-height: 190px;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  min-height: 180px;
}

.service-models {
  display: grid;
  gap: clamp(66px, 8vw, 112px);
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(340px, 0.42fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  border-top: 2px solid var(--olive);
  padding-top: 36px;
  background: transparent;
}

.service-panel.reverse .operational-image {
  order: 2;
}

.service-panel.reverse .service-content {
  order: 1;
}

.service-content {
  display: grid;
  gap: 18px;
  align-content: start;
}

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

.service-briefs > div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.service-briefs h4 {
  margin-bottom: 8px;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-briefs p {
  margin: 0;
}

.service-details {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.service-details summary {
  cursor: pointer;
  color: var(--charcoal);
  font-weight: 800;
}

.service-panel > .button {
  justify-self: start;
}

.service-panel h3 {
  color: var(--charcoal);
  font-size: clamp(2.2rem, 3.9vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.service-panel h4 {
  margin: 0 0 12px;
  color: var(--charcoal);
  font-size: 1rem;
}

.service-panel p,
.service-panel li {
  color: var(--muted);
}

.subtitle {
  margin: 12px 0 0;
  color: var(--charcoal) !important;
  font-weight: 760;
}

.fee-line {
  color: var(--terracotta) !important;
  font-weight: 850;
}

.best-for {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.best-for ul,
.included-grid ul,
.category-copy ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.label-cloud {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.label-cloud span {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 650;
}

.note {
  margin: 0;
  border-left: 2px solid var(--olive);
  padding-left: 14px;
}

.fee-box {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.2fr) minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.fee-box h4 {
  margin: 0;
}

.fee-box p {
  margin: 0;
}

.fee-box strong {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.fee-detail {
  color: var(--muted) !important;
}

.included-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
}

.included-grid > div {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(136px, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: var(--line);
  list-style: none;
  counter-reset: sourcing;
}

.process-steps li {
  position: relative;
  min-height: 98px;
  background: var(--soft-white);
  padding: 34px 14px 12px;
  counter-increment: sourcing;
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 700;
}

.process-steps li::before {
  content: "0" counter(sourcing);
  position: absolute;
  left: 14px;
  top: 12px;
  color: var(--olive);
  font-size: 0.74rem;
  font-weight: 850;
}

.team-responsibility {
  margin-top: 76px;
  border-top: 1px solid var(--line);
  padding-top: 54px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.role-grid article {
  background: var(--soft-white);
  padding: 26px;
}

.role-grid h4 {
  margin: 0;
  color: var(--charcoal);
}

.role-grid p,
.closing-line {
  color: var(--muted);
}

.closing-line {
  max-width: 760px;
  margin: 28px 0 0;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.35rem;
}

.behind-scenes-section {
  background: var(--brown);
  color: var(--soft-white);
}

.behind-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.behind-copy h2 {
  color: var(--soft-white);
  font-size: clamp(2.3rem, 4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.behind-copy p:not(.eyebrow) {
  color: rgba(250, 250, 247, 0.72);
}

.behind-image {
  border-color: rgba(250, 250, 247, 0.18);
}

.behind-process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: 18px 0 0;
  padding: 1px;
  background: rgba(250, 250, 247, 0.18);
  list-style: none;
}

.behind-process li {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 74px;
  background: #2e363a;
  padding: 16px 14px;
  color: var(--soft-white);
  font-size: 0.85rem;
  font-weight: 800;
}

.behind-process li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -13px;
  z-index: 2;
  color: var(--terracotta);
  font-weight: 800;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 5vw, 70px) clamp(28px, 4vw, 56px);
}

.category-card,
.category-card.reverse {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.category-card.reverse .category-images,
.category-card.reverse .category-copy {
  order: initial;
}

.category-card[hidden] {
  display: none;
}

.category-images {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 0.36fr);
  gap: 12px;
  align-items: end;
}

.category-copy {
  max-width: 520px;
}

.category-copy h3 {
  color: var(--charcoal);
  font-size: clamp(1.5rem, 2.1vw, 2.15rem);
  line-height: 1.08;
}

.category-copy li {
  color: var(--muted);
  margin-top: 5px;
}

.text-button {
  display: inline-flex;
  margin-top: 20px;
  color: var(--olive);
  text-decoration: none;
  font-weight: 780;
}

.text-button::after {
  content: " ->";
}

.small-note,
.story-disclaimer {
  max-width: 760px;
  margin: 38px auto 0;
  color: var(--muted);
  text-align: center;
}

.category-toggle,
.section-cta {
  margin-top: 34px;
}

.client-stories {
  display: grid;
  gap: clamp(72px, 9vw, 120px);
  counter-reset: client;
}

.client-card {
  counter-increment: client;
}

.client-copy::before {
  content: "0" counter(client);
  display: block;
  margin-bottom: 16px;
  color: var(--olive);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1;
}

.label {
  color: var(--olive) !important;
  font-size: 0.84rem !important;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.request-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto 32px;
}

.choice-button {
  min-height: 136px;
  border: 1px solid var(--line);
  background: var(--soft-white);
  color: var(--charcoal);
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.55rem, 2.3vw, 2.6rem);
  text-align: left;
  padding: 24px;
}

.choice-button.active {
  border-color: var(--brown);
  background: var(--brown);
  color: var(--soft-white);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.34fr);
  gap: 28px;
  align-items: start;
}

.simple-form-layout {
  max-width: 1180px;
  margin: 0 auto;
}

.form-intro,
.request-form,
.contact-card {
  border: 1px solid var(--line);
  background: var(--soft-white);
}

.form-intro {
  min-height: 240px;
  display: grid;
  place-items: center;
  padding: 36px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.55rem;
  text-align: center;
}

.form-intro.hidden {
  display: none;
}

.request-form {
  display: none;
  padding: 36px;
}

.request-form.active {
  display: block;
}

.request-type {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  margin: 0;
  padding: 18px;
}

.request-type legend {
  padding: 0 8px;
  color: var(--charcoal);
  font-weight: 800;
}

.request-type label {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}

.request-form h3,
.contact-card h3 {
  color: var(--charcoal);
  font-size: clamp(2rem, 3vw, 3rem);
}

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

.form-grid label,
.form-grid fieldset {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--ivory);
  padding: 12px 13px;
  color: var(--charcoal);
}

.form-grid textarea {
  min-height: 110px;
  resize: vertical;
}

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

.form-grid fieldset {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 16px;
}

.form-grid legend {
  padding: 0 8px;
}

.form-grid fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 600;
}

.form-message {
  min-height: 24px;
  color: var(--charcoal);
  font-weight: 760;
}

.backend-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-card {
  padding: 28px;
}

.contact-card p {
  color: var(--muted);
}

.contact-card strong {
  color: var(--charcoal);
}

.contact-actions .button {
  width: 100%;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 36px max(24px, calc((100vw - 1480px) / 2 + 40px));
  background: var(--brown);
  color: rgba(252, 251, 248, 0.78);
}

.site-footer strong {
  color: var(--soft-white);
}

.site-footer p {
  margin: 0;
}

.site-footer nav,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer a {
  color: rgba(252, 251, 248, 0.84);
  text-decoration: none;
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .brand-mark,
html[dir="rtl"] .site-nav,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .contact-actions,
html[dir="rtl"] .legal-links,
html[dir="rtl"] .language-switcher {
  direction: rtl;
}

html[dir="rtl"] .story-layout,
html[dir="rtl"] .service-panel,
html[dir="rtl"] .team-responsibility,
html[dir="rtl"] .form-layout,
html[dir="rtl"] .founder-note {
  direction: rtl;
}

html[dir="rtl"] .site-nav .nav-cta {
  margin-right: 8px;
  margin-left: 0;
}

@media (max-width: 1180px) {
  .site-header {
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    background: var(--soft-white);
    padding: 10px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .site-nav .nav-cta {
    margin-left: 0;
    padding: 12px;
  }
}

@media (max-width: 980px) {
  .hero,
  .story-layout,
  .story-block,
  .story-block.reverse,
  .from-alex,
  .client-card,
  .client-card.reverse,
  .service-panel,
  .behind-layout,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-placeholder,
  .story-layout > .image-placeholder,
  .story-layout > .story-image,
  .story-block > .image-placeholder,
  .story-block > .story-image,
  .client-card > .image-placeholder,
  .client-card > .story-image,
  .service-panel.reverse .operational-image {
    order: -1;
  }

  .story-block.reverse .story-copy,
  .client-card.reverse .client-copy,
  .story-block.reverse .image-placeholder,
  .story-block.reverse .story-image,
  .client-card.reverse .image-placeholder,
  .client-card.reverse .story-image,
  .service-panel.reverse .service-content {
    order: initial;
  }

  .story-block.reverse .image-placeholder,
  .story-block.reverse .story-image,
  .client-card.reverse .image-placeholder,
  .client-card.reverse .story-image,
  .service-panel.reverse .operational-image {
    order: -1;
  }

  .customer-panels,
  .shipment-trust-grid,
  .category-list,
  .included-grid,
  .role-grid,
  .process-steps,
  .behind-process {
    grid-template-columns: 1fr;
  }

  .label-cloud,
  .fee-box,
  .included-grid,
  .process-steps {
    grid-column: auto;
  }

  .fee-box {
    grid-template-columns: 1fr;
  }

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

  .behind-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand-mark {
    min-width: 0;
  }

  .brand-mark small {
    display: none;
  }

  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-placeholder {
    min-height: 380px;
  }

  .chapter-heading h2 {
    font-size: 2.5rem;
  }

  .founder-media,
  .request-switch,
  .form-grid,
  .form-grid fieldset,
  .category-images {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .request-switch {
    display: grid;
  }

  .button,
  .choice-button {
    width: 100%;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .behind-process {
    grid-template-columns: 1fr;
  }

  .behind-process li:not(:last-child)::after {
    right: 16px;
    bottom: -16px;
    top: auto;
    transform: rotate(90deg);
  }

  .request-form,
  .contact-card {
    padding: 24px;
  }
}
