:root {
  --navy: #143750;
  --navy-deep: #0d2a3d;
  --navy-soft: #dfe8ec;
  --petrol: #35695f;
  --petrol-deep: #285349;
  --petrol-soft: #e7ede7;
  --copper: #985337;
  --copper-deep: #7a402b;
  --gold: #c9aa68;
  --cream: #f4f0e7;
  --cream-light: #faf8f3;
  --white: #ffffff;
  --graphite: #25302c;
  --muted: #5d6863;
  --line: #d7d1c5;
  --line-dark: #b8b1a5;
  --shadow-soft: 0 18px 50px rgba(18, 42, 55, 0.08);
  --shadow-card: 0 10px 26px rgba(18, 42, 55, 0.07);
  --radius-small: 6px;
  --radius-medium: 12px;
  --radius-large: 18px;
  --container: 1220px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: "Segoe UI", Arial, Helvetica, sans-serif;
}

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

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 0;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--graphite);
  background: var(--cream-light);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  max-width: 100%;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-weight: 700;
  hyphens: none;
  line-height: 1.08;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(2.65rem, 4vw, 3.8rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
  margin-bottom: 20px;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy-deep);
  border-radius: var(--radius-small);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.container {
  width: calc(100% - 48px);
  max-width: var(--container);
  margin-inline: auto;
}

.container > *,
[class*="-grid"] > *,
.split-layout > *,
.support-shell > *,
.workday > *,
.process-shell > *,
.faq-layout > * {
  min-width: 0;
}

.section {
  position: relative;
  padding: clamp(82px, 10vw, 140px) 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--copper-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::after {
  min-width: 24px;
  max-width: 52px;
  flex: 1 1 52px;
  width: 52px;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: 0.72;
}

.eyebrow--light {
  color: #ead9b8;
}

.lead {
  color: #34433d;
  font-size: clamp(1.12rem, 1.8vw, 1.34rem);
  line-height: 1.55;
}

.section-intro {
  max-width: 830px;
  margin-bottom: 54px;
}

.section-intro > p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-intro--center {
  margin-inline: auto;
  text-align: center;
}

.section-intro--center .eyebrow {
  justify-content: center;
}

.section-intro--center > p:last-child {
  margin-inline: auto;
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: var(--radius-small);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

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

.button-secondary {
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.72);
  border-color: #9baab1;
}

.button-secondary:hover {
  background: var(--white);
  border-color: var(--navy);
}

.text-link {
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--navy);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-underline-offset: 5px;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.field-lines {
  position: absolute;
  pointer-events: none;
}

.field-lines::before,
.field-lines::after {
  position: absolute;
  border: 1px solid currentColor;
  content: "";
}

.field-lines--hero {
  top: 7%;
  right: 0;
  width: 37%;
  height: 52%;
  color: rgba(53, 105, 95, 0.15);
}

.field-lines--hero::before {
  inset: 0 -18% 25% 17%;
  clip-path: polygon(13% 7%, 90% 0, 100% 78%, 28% 100%, 0 53%);
}

.field-lines--hero::after {
  inset: 18% -8% 0 0;
  clip-path: polygon(0 18%, 82% 0, 100% 66%, 48% 100%, 8% 74%);
}

.field-lines--buyer {
  inset: auto 0 3% auto;
  width: 43%;
  height: 72%;
  color: rgba(20, 55, 80, 0.1);
}

.field-lines--buyer::before {
  inset: 0 -16% 18% 4%;
  clip-path: polygon(12% 0, 91% 11%, 100% 77%, 39% 100%, 0 54%);
}

.field-lines--buyer::after {
  inset: 24% 2% 0 -18%;
  clip-path: polygon(0 30%, 70% 0, 100% 45%, 68% 100%, 11% 80%);
}

.field-lines--cta {
  inset: 0 0 0 auto;
  width: 50%;
  color: rgba(255, 255, 255, 0.12);
}

.field-lines--cta::before {
  inset: 8% -10% 18% 14%;
  clip-path: polygon(19% 0, 88% 14%, 100% 70%, 32% 100%, 0 55%);
}

.field-lines--cta::after {
  inset: 32% 3% -14% -10%;
  clip-path: polygon(0 18%, 73% 0, 100% 53%, 66% 100%, 12% 79%);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.96);
  border-bottom: 1px solid rgba(184, 177, 165, 0.72);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  gap: 13px;
  color: var(--navy-deep);
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.brand-copy strong span {
  color: var(--copper);
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: #32413c;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.main-nav a:not(.nav-cta) {
  position: relative;
  padding: 12px 0;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--copper);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 10px 17px;
  color: var(--white) !important;
  background: var(--navy);
  border-radius: var(--radius-small);
}

.nav-cta:hover {
  background: var(--navy-deep);
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 11px;
  border: 1px solid var(--line-dark);
  color: var(--navy);
  background: var(--white);
  border-radius: var(--radius-small);
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 128px) 0 clamp(78px, 10vw, 136px);
  background:
    linear-gradient(90deg, rgba(244, 240, 231, 0.99) 0%, rgba(244, 240, 231, 0.96) 53%, rgba(244, 240, 231, 0.88) 100%),
    repeating-linear-gradient(0deg, transparent 0 47px, rgba(53, 105, 95, 0.035) 47px 48px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
  grid-template-columns: minmax(0, 1.06fr) minmax(410px, 0.94fr);
}

.hero-copy {
  max-width: 710px;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: #485650;
  font-size: clamp(1.14rem, 1.9vw, 1.38rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 0;
  color: #53615c;
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 17px;
}

.hero-points li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--copper);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.hero-media {
  position: relative;
  padding: 0 0 38px 30px;
  margin: 0;
}

.hero-media::before {
  position: absolute;
  inset: 31px 22px 9px 0;
  background: var(--petrol);
  border-radius: var(--radius-large) 0 var(--radius-large) 0;
  content: "";
}

.hero-image-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #d8ddd8;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-large) 0 var(--radius-large) 0;
  box-shadow: var(--shadow-soft);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: min(82%, 390px);
  padding: 18px 21px;
  background: var(--white);
  border-left: 4px solid var(--copper);
  box-shadow: var(--shadow-card);
}

.hero-media figcaption span,
.hero-media figcaption strong {
  display: block;
}

.hero-media figcaption span {
  color: var(--copper-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-media figcaption strong {
  margin-top: 3px;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: 1.12rem;
}

/* Trust bar */

.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.trust-grid > div {
  min-width: 0;
  padding: 27px 24px;
  border-left: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.trust-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

/* Three ways */

.section-ways {
  background: var(--cream-light);
}

.ways-grid {
  display: grid;
  align-items: stretch;
  gap: 18px;
  grid-template-columns: minmax(0, 1.12fr) repeat(2, minmax(0, 1fr));
}

.way-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: clamp(30px, 4vw, 46px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px 2px var(--radius-medium) 2px;
  box-shadow: var(--shadow-card);
}

.way-card::after {
  position: absolute;
  right: -52px;
  bottom: -60px;
  width: 190px;
  height: 150px;
  border: 1px solid rgba(53, 105, 95, 0.17);
  content: "";
  transform: rotate(-13deg);
}

.way-card--primary {
  color: rgba(255, 255, 255, 0.84);
  background: var(--navy);
  border-color: var(--navy);
}

.way-card--primary::after {
  border-color: rgba(255, 255, 255, 0.18);
}

.way-number {
  margin-bottom: 48px;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}

.way-card--primary .way-number {
  color: #dfbf7e;
}

.way-label {
  margin-bottom: 9px;
  color: var(--copper-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.way-card--primary .way-label {
  color: #ead9b8;
}

.way-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
}

.way-card--primary h3 {
  color: var(--white);
}

.way-card > p:not(.way-label) {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.92rem;
}

.way-card--primary > p:not(.way-label) {
  color: rgba(255, 255, 255, 0.78);
}

.way-card > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-underline-offset: 5px;
}

.way-card--primary > a {
  color: var(--white);
}

/* Experience */

.section-experience {
  background: var(--white);
  border-top: 1px solid rgba(215, 209, 197, 0.65);
}

.split-layout {
  display: grid;
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
}

.section-copy {
  max-width: 690px;
}

.section-copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.question-panel {
  position: relative;
  padding: clamp(32px, 5vw, 52px);
  background: var(--petrol-soft);
  border: 1px solid #c9d7ce;
  border-radius: 0 var(--radius-large) 0 var(--radius-large);
}

.question-panel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 88px;
  background: var(--copper);
  content: "";
}

.panel-kicker {
  margin-bottom: 10px;
  color: var(--petrol-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.question-panel h3 {
  margin-bottom: 26px;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
}

.question-list {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.question-list li {
  position: relative;
  padding: 14px 0 14px 36px;
  border-top: 1px solid rgba(53, 105, 95, 0.22);
  font-weight: 650;
  line-height: 1.45;
}

.question-list li:last-child {
  border-bottom: 1px solid rgba(53, 105, 95, 0.22);
}

.question-list li::before {
  position: absolute;
  top: 18px;
  left: 2px;
  width: 18px;
  height: 10px;
  border-bottom: 3px solid var(--copper);
  border-left: 3px solid var(--copper);
  content: "";
  transform: rotate(-45deg);
}

.panel-note {
  margin-bottom: 0;
  color: #4c5c55;
  font-size: 0.84rem;
}

/* Task */

.section-task {
  background: var(--cream);
}

.task-flow {
  display: grid;
  padding: 0;
  margin: 0;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.task-flow li {
  min-height: 265px;
  padding: 34px;
  background: var(--cream-light);
}

.task-flow li:nth-child(2),
.task-flow li:nth-child(5) {
  background: var(--white);
}

.task-flow span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
}

.task-flow h3 {
  margin-bottom: 10px;
}

.task-flow p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Support */

.section-support {
  padding: 0;
  background: var(--cream);
}

.support-shell {
  position: relative;
  display: grid;
  padding: clamp(60px, 8vw, 96px);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
  border-radius: var(--radius-large) 0 var(--radius-large) 0;
  gap: clamp(54px, 7vw, 94px);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.support-shell::before {
  position: absolute;
  right: -140px;
  bottom: -170px;
  width: 520px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  transform: rotate(-14deg);
}

.support-heading {
  position: relative;
  z-index: 1;
}

.support-heading h2 {
  color: var(--white);
}

.support-heading > p:last-child {
  margin-bottom: 0;
}

.support-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-grid article {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.support-grid span {
  display: block;
  margin-bottom: 18px;
  color: #dfbf7e;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
}

.support-grid h3 {
  color: var(--white);
}

.support-grid p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

/* Entry and day */

.section-entry {
  background: var(--cream);
}

.entry-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.entry-grid article {
  padding: 30px;
  background: rgba(255, 255, 255, 0.72);
  border-top: 4px solid var(--petrol);
  box-shadow: var(--shadow-card);
}

.entry-grid article:nth-child(2) {
  margin-top: 26px;
}

.entry-grid article:nth-child(3) {
  margin-top: 52px;
}

.entry-grid article:nth-child(4) {
  margin-top: 78px;
}

.entry-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--copper-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.entry-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.workday {
  display: grid;
  margin-top: 78px;
  padding: clamp(38px, 6vw, 64px);
  background: var(--white);
  border: 1px solid var(--line);
  gap: clamp(38px, 6vw, 78px);
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
}

.workday-title h3 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 2.7vw, 2.25rem);
}

.workday ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.workday li {
  display: grid;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  gap: 20px;
  grid-template-columns: 72px minmax(0, 1fr);
}

.workday li:last-child {
  border-bottom: 1px solid var(--line);
}

.workday time {
  color: var(--copper-deep);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
}

.workday li > span {
  color: var(--muted);
  font-size: 0.86rem;
}

.workday li strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy-deep);
  font-size: 0.95rem;
}

/* Economy */

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

.economy-grid {
  display: grid;
  align-items: start;
  gap: clamp(50px, 9vw, 130px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.check-list {
  display: grid;
  padding: 0;
  margin: 30px 0;
  gap: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-top: 1px solid var(--line);
}

.check-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  top: 21px;
  left: 4px;
  width: 11px;
  height: 11px;
  background: var(--petrol);
  content: "";
  transform: rotate(45deg);
}

.economy-grid > div:last-child > p:last-child {
  color: var(--muted);
}

/* Seller */

.section-seller {
  background: var(--cream-light);
  border-top: 1px solid var(--line);
}

.seller-grid {
  display: grid;
  align-items: start;
  gap: clamp(52px, 8vw, 110px);
  grid-template-columns: minmax(360px, 0.83fr) minmax(0, 1.17fr);
}

.seller-media {
  position: sticky;
  top: 120px;
  margin: 0;
}

.seller-media::before {
  position: absolute;
  inset: 28px -22px -22px 22px;
  z-index: 0;
  background: var(--petrol-soft);
  border: 1px solid #c8d5cc;
  content: "";
}

.seller-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-large) 0 var(--radius-large) 0;
  box-shadow: var(--shadow-soft);
}

.seller-media figcaption {
  position: relative;
  z-index: 2;
  width: calc(100% - 34px);
  padding: 18px 22px;
  margin: -48px 0 0 34px;
  color: var(--navy-deep);
  background: var(--white);
  border-left: 4px solid var(--copper);
  box-shadow: var(--shadow-card);
  font-family: var(--serif);
  font-weight: 700;
}

.motive-list {
  margin: 34px 0 38px;
}

.motive-list article {
  display: grid;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  gap: 20px;
  grid-template-columns: 44px minmax(0, 1fr);
}

.motive-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.motive-list article > span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
}

.motive-list h3 {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.motive-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Buyer */

.section-buyer {
  position: relative;
  overflow: hidden;
  background: var(--petrol-soft);
}

.buyer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.buyer-copy {
  position: sticky;
  top: 120px;
}

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

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

.buyer-needs article {
  min-height: 290px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(53, 105, 95, 0.2);
  border-radius: var(--radius-small);
}

.buyer-needs article:nth-child(2),
.buyer-needs article:nth-child(4) {
  transform: translateY(28px);
}

.buyer-needs span {
  display: block;
  margin-bottom: 40px;
  color: var(--copper-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.buyer-needs p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Types */

.section-types {
  background: var(--cream-light);
}

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

.types-grid article {
  min-height: 260px;
  padding: 34px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.types-grid article:nth-child(even) {
  background: var(--cream);
}

.types-grid span {
  display: block;
  margin-bottom: 36px;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
}

.types-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Process */

.section-process {
  padding-top: 0;
  background: var(--cream-light);
}

.process-shell {
  display: grid;
  padding: clamp(48px, 7vw, 78px);
  background: var(--cream);
  border-top: 5px solid var(--gold);
  gap: clamp(44px, 7vw, 88px);
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
}

.process-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  padding: 17px 0;
  border-top: 1px solid var(--line-dark);
  gap: 20px;
  grid-template-columns: 48px minmax(0, 1fr);
}

.process-steps li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.process-steps li > span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.process-steps h3 {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.process-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

/* Regions */

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

.region-grid {
  display: grid;
  max-width: 970px;
  margin-inline: auto;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.region-grid article {
  position: relative;
  padding: clamp(36px, 5vw, 56px);
  overflow: hidden;
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 0 var(--radius-medium) 0 var(--radius-medium);
}

.region-grid article::after {
  position: absolute;
  right: -45px;
  bottom: -65px;
  width: 180px;
  height: 145px;
  border: 1px solid rgba(53, 105, 95, 0.15);
  content: "";
  transform: rotate(-14deg);
}

.region-country {
  margin-bottom: 24px;
  color: var(--copper-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.region-grid h3 {
  font-size: 1.75rem;
}

.region-grid article > p:not(.region-country) {
  color: var(--muted);
}

.region-phone {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 44px;
  max-width: 100%;
  align-items: center;
  margin: 28px 0 20px;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.7vw, 2rem);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-underline-offset: 6px;
}

/* FAQ */

.section-faq {
  background: var(--cream);
}

.faq-layout {
  display: grid;
  align-items: start;
  gap: clamp(52px, 8vw, 110px);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading > p:not(.eyebrow) {
  color: var(--muted);
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 58px 24px 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 22px;
  height: 2px;
  background: var(--copper);
  content: "";
  transition: transform 160ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 740px;
  padding: 0 54px 24px 0;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Final CTA */

.final-cta {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.final-cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(50px, 8vw, 100px);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta-grid > div:first-child > p:last-child {
  margin-bottom: 0;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions > a {
  display: grid;
  min-height: 94px;
  align-items: center;
  padding: 20px 26px;
  color: var(--navy-deep);
  background: var(--white);
  border-left: 5px solid var(--copper);
  border-radius: var(--radius-small);
  gap: 4px;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

.contact-actions > a:hover {
  background: #fbf4e6;
  transform: translateX(4px);
}

.contact-actions span {
  color: var(--copper-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-actions strong {
  font-family: var(--serif);
  font-size: 1.14rem;
  overflow-wrap: anywhere;
}

.direct-contact {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.direct-contact a {
  min-width: 0;
  padding: 22px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.direct-contact span,
.direct-contact strong {
  display: block;
}

.direct-contact span {
  margin-bottom: 3px;
  color: #d9c69f;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.direct-contact strong {
  overflow-wrap: anywhere;
  font-size: 0.92rem;
}

/* Footer */

.site-footer {
  padding: 70px 0 24px;
  color: #55625d;
  background: #e9e3d9;
  border-top: 1px solid var(--line-dark);
}

.footer-grid {
  display: grid;
  gap: 38px;
  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(0, 0.8fr)
    minmax(0, 1fr)
    minmax(0, 0.7fr);
}

.brand--footer {
  margin-bottom: 22px;
}

.footer-brand > p {
  max-width: 430px;
  margin-bottom: 0;
  font-size: 0.82rem;
}

.site-footer h2 {
  margin-bottom: 18px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer nav,
.site-footer .footer-grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.site-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #40504a;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

.site-footer .footer-grid > div > p {
  margin-bottom: 7px;
  font-size: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  margin-top: 50px;
  border-top: 1px solid var(--line-dark);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.72rem;
}

/* Legal pages */

.legal-home-link {
  min-height: 46px;
  padding-inline: 18px;
}

.legal-hero {
  padding: clamp(72px, 9vw, 118px) 0;
  background:
    linear-gradient(90deg, rgba(244, 240, 231, 0.99), rgba(231, 237, 231, 0.88)),
    repeating-linear-gradient(0deg, transparent 0 47px, rgba(53, 105, 95, 0.04) 47px 48px);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 6vw, 4.7rem);
}

.legal-hero > .container > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.legal-content {
  background: var(--white);
}

.legal-grid {
  display: grid;
  gap: clamp(48px, 8vw, 110px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-grid article {
  min-width: 0;
}

.legal-grid h2 {
  padding-top: 26px;
  margin: 34px 0 18px;
  border-top: 1px solid var(--line);
  font-size: clamp(1.55rem, 2.7vw, 2.05rem);
}

.legal-grid h2:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.legal-grid p {
  color: var(--muted);
}

.legal-grid a {
  color: var(--navy);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

.site-footer--compact {
  padding-top: 24px;
}

.site-footer--compact .footer-bottom {
  margin-top: 0;
}

@media (max-width: 1120px) {
  .header-inner {
    min-height: 82px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100dvh - 82px);
    align-items: stretch;
    padding: 18px 24px 30px;
    overflow-y: auto;
    background: var(--cream-light);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line-dark);
    box-shadow: var(--shadow-soft);
    gap: 0;
  }

  .main-nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .main-nav a {
    display: flex;
    min-height: 52px;
    align-items: center;
    padding: 11px 6px !important;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav .nav-cta {
    justify-content: center;
    margin-top: 16px;
    color: var(--white) !important;
    border: 0;
  }

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

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

  .way-card--primary {
    grid-column: 1 / -1;
  }

  .way-card {
    min-height: 330px;
  }

  .way-card--primary {
    min-height: 310px;
  }

  .way-number {
    margin-bottom: 34px;
  }

  .seller-grid {
    gap: 70px;
  }

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-media {
    width: min(100%, 720px);
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .split-layout,
  .support-shell,
  .economy-grid,
  .seller-grid,
  .buyer-grid,
  .process-shell,
  .faq-layout,
  .final-cta-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-media {
    width: min(100%, 720px);
    margin-inline: auto;
  }

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

  .trust-grid > div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .trust-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

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

  .support-shell {
    border-radius: var(--radius-medium) 0 var(--radius-medium) 0;
  }

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

  .entry-grid article:nth-child(n) {
    margin-top: 0;
  }

  .workday {
    grid-template-columns: minmax(0, 1fr);
  }

  .seller-media,
  .buyer-copy,
  .faq-heading {
    position: static;
  }

  .seller-media {
    width: min(100%, 720px);
  }

  .seller-media img {
    aspect-ratio: 16 / 10;
  }

  .buyer-needs article:nth-child(n) {
    transform: none;
  }

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

  .footer-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .legal-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  body {
    font-size: 17px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .section {
    padding: 76px 0;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .header-inner {
    min-height: 76px;
    gap: 12px;
  }

  .brand {
    max-width: calc(100% - 58px);
    flex: 1 1 auto;
    gap: 9px;
  }

  .brand img {
    width: 40px;
    height: 32px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    max-width: 215px;
    overflow: hidden;
    font-size: 0.7rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .main-nav {
    top: 76px;
    max-height: calc(100dvh - 76px);
    padding-inline: 16px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-points {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-media {
    padding: 0 0 44px 12px;
  }

  .hero-media::before {
    inset: 20px 11px 14px 0;
  }

  .hero-image-frame {
    border-width: 5px;
  }

  .hero-media figcaption {
    width: calc(100% - 26px);
  }

  .trust-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .trust-grid > div:first-child {
    border-top: 0;
  }

  .ways-grid,
  .task-flow,
  .support-grid,
  .entry-grid,
  .buyer-needs,
  .types-grid,
  .region-grid,
  .direct-contact,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .way-card--primary {
    grid-column: auto;
  }

  .way-card {
    min-height: 320px;
    padding: 30px;
  }

  .question-panel,
  .support-shell,
  .workday,
  .process-shell {
    padding: 30px 24px;
  }

  .task-flow li {
    min-height: auto;
    padding: 28px;
  }

  .task-flow li:nth-child(n) {
    background: var(--cream-light);
  }

  .task-flow li:nth-child(even) {
    background: var(--white);
  }

  .entry-grid article {
    padding: 28px;
  }

  .workday {
    margin-top: 48px;
  }

  .workday li {
    gap: 14px;
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .seller-media::before {
    inset: 18px -10px -14px 14px;
  }

  .seller-media figcaption {
    width: calc(100% - 20px);
    margin-left: 20px;
  }

  .motive-list article {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .buyer-needs article {
    min-height: auto;
    padding: 28px;
  }

  .types-grid article {
    min-height: 220px;
    padding: 28px;
  }

  .region-grid article {
    padding: 32px 26px;
  }

  .faq-list summary {
    padding-right: 46px;
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .contact-actions > a {
    padding: 18px 20px;
  }

  .seller-content > .button,
  .buyer-copy .button {
    width: 100%;
  }

  .direct-contact a {
    padding: 18px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

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

@media (max-width: 430px) {
  .brand-copy small {
    display: none;
  }

  .hero-media figcaption {
    padding: 14px 16px;
  }

  .hero-media figcaption strong {
    font-size: 0.98rem;
  }

  .workday li {
    grid-template-columns: minmax(0, 1fr);
  }

  .region-phone {
    font-size: 1.35rem;
  }
}

@media (max-width: 360px) {
  .brand-copy strong {
    font-size: 0.96rem;
  }
}

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