:root {
  --ink: #18211e;
  --muted: #5d6964;
  --paper: #f6f0e6;
  --paper-deep: #eee3d3;
  --green: #173d32;
  --green-soft: #dbe7df;
  --clay: #b46f4f;
  --blue-gray: #d9e1e3;
  --line: rgba(24, 33, 30, 0.12);
  --line-strong: rgba(24, 33, 30, 0.2);
  --white: #fffaf2;
  --shadow: 0 24px 80px rgba(32, 42, 37, 0.16);
  --shadow-soft: 0 18px 45px rgba(32, 42, 37, 0.1);
  --radius: 8px;
  font-family: "Aptos", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 15%, rgba(180, 111, 79, 0.13), transparent 30rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.94), rgba(238, 227, 211, 0.92)),
    var(--paper);
  font-family: "Aptos", "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(24, 33, 30, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 33, 30, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0.75rem;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0.75rem auto 0;
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(24, 33, 30, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 10px 30px rgba(32, 42, 37, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 242, 0.18);
}

.brand-mark::after {
  position: absolute;
  right: -0.28rem;
  bottom: 0.24rem;
  width: 0.62rem;
  height: 1px;
  content: "";
  background: var(--clay);
  transform: rotate(-32deg);
  transform-origin: center;
}

.brand-mark span {
  position: absolute;
  width: 0.36rem;
  height: 0.56rem;
  background: var(--paper);
  border-radius: 999px;
  transform: rotate(38deg);
}

.brand-mark span:nth-child(1) {
  top: 0.48rem;
  left: 0.48rem;
}

.brand-mark span:nth-child(2) {
  top: 0.76rem;
  left: 0.86rem;
  opacity: 0.82;
}

.brand-mark span:nth-child(3) {
  top: 1.04rem;
  left: 1.22rem;
  opacity: 0.62;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 0.3rem;
  color: var(--muted);
  font-size: 0.94rem;
  padding: 0.22rem;
  border: 1px solid rgba(24, 33, 30, 0.08);
  border-radius: var(--radius);
  background: rgba(246, 240, 230, 0.72);
}

.nav a {
  padding: 0.46rem 0.72rem;
  border-radius: 6px;
}

.nav a,
.header-action {
  transition: color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.header-action:hover {
  color: var(--green);
}

.nav a:hover {
  background: rgba(23, 61, 50, 0.07);
}

.header-action {
  padding: 0.72rem 1rem;
  color: var(--white);
  border: 1px solid rgba(23, 61, 50, 0.2);
  border-radius: var(--radius);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(23, 61, 50, 0.16);
}

.header-action:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(2.2rem, 5vw, 5.8rem);
  align-items: center;
  width: min(1220px, calc(100% - 40px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: clamp(2.2rem, 5.4vw, 5rem) 0 3.3rem;
}

.hero::after {
  position: absolute;
  right: 22%;
  bottom: 1.2rem;
  width: 34%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(23, 61, 50, 0.36), transparent);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  margin-bottom: 1.2rem;
  padding: 0.46rem 0.68rem;
  color: var(--green);
  border: 1px solid rgba(23, 61, 50, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 10px 28px rgba(32, 42, 37, 0.08);
  font-size: 0.84rem;
  font-weight: 760;
}

.status-pill span {
  width: 0.52rem;
  height: 0.52rem;
  background: var(--clay);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(180, 111, 79, 0.13);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 540;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 1.35rem;
  font-size: clamp(4.2rem, 7.4vw, 7.4rem);
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.25rem, 4.7vw, 4.7rem);
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
}

.hero-subcopy {
  max-width: 35rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.84rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 760;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.08), transparent),
    var(--green);
  box-shadow: 0 16px 36px rgba(23, 61, 50, 0.24);
}

.button-secondary {
  color: var(--green);
  background: rgba(255, 250, 242, 0.82);
  border-color: var(--line);
}

.trust-row {
  margin-top: 1.65rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.trust-row span::before {
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  background: var(--clay);
  border-radius: 999px;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  padding: 0.76rem;
  border: 1px solid rgba(24, 33, 30, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.74), rgba(238, 227, 211, 0.24)),
    rgba(255, 250, 242, 0.38);
  box-shadow: var(--shadow-soft);
}

.hero-visual::before {
  position: absolute;
  inset: 0.76rem;
  z-index: 1;
  pointer-events: none;
  content: "";
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(23, 61, 50, 0.2), transparent 30%, transparent 72%, rgba(24, 33, 30, 0.18));
  mix-blend-mode: multiply;
}

.hero-visual > img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: min(68vh, 660px);
  min-height: 540px;
  object-fit: cover;
  border: 1px solid rgba(24, 33, 30, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(24, 33, 30, 0.18);
}

.panel {
  z-index: 2;
  position: absolute;
  padding: 1rem;
  border: 1px solid rgba(255, 250, 242, 0.7);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.9);
  box-shadow: 0 18px 60px rgba(24, 33, 30, 0.18);
  backdrop-filter: blur(18px);
}

.visual-caption {
  top: 1.6rem;
  right: 1.6rem;
  width: 17rem;
}

.visual-caption span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-label {
  margin-bottom: 0.72rem;
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.empty-listing {
  top: 6.6rem;
  left: -1rem;
  width: 13.4rem;
}

.ghost-line {
  height: 0.68rem;
  margin-bottom: 0.7rem;
  background: rgba(24, 33, 30, 0.12);
  border-radius: 999px;
}

.ghost-line.long {
  width: 86%;
}

.ghost-line.medium {
  width: 58%;
}

.ghost-row {
  display: flex;
  gap: 0.42rem;
}

.ghost-row span {
  width: 1.15rem;
  height: 1.15rem;
  border: 1px dashed rgba(23, 61, 50, 0.32);
  border-radius: 999px;
}

.profile-card {
  right: -0.9rem;
  bottom: 14%;
  width: 18.4rem;
}

.profile-top {
  display: flex;
  align-items: center;
  gap: 0.78rem;
}

.profile-logo {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
  font-weight: 800;
}

.profile-top p {
  margin: 0.12rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.rating {
  display: flex;
  gap: 0.28rem;
  margin: 1rem 0;
}

.rating span {
  width: 0.82rem;
  height: 0.82rem;
  background: var(--clay);
  clip-path: polygon(50% 0, 62% 35%, 100% 35%, 69% 56%, 81% 92%, 50% 70%, 19% 92%, 31% 56%, 0 35%, 38% 35%);
}

.profile-card a {
  display: inline-flex;
  padding: 0.6rem 0.8rem;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 760;
}

.enquiry-card {
  right: 18%;
  bottom: 2rem;
  width: 16rem;
}

.enquiry-card span {
  display: block;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-line {
  z-index: 1;
  position: absolute;
  top: 16%;
  left: -6%;
  width: 60%;
  height: 58%;
  pointer-events: none;
  border: 0;
  border-left: 7px dotted rgba(255, 250, 242, 0.64);
  border-bottom: 7px dotted rgba(255, 250, 242, 0.5);
  border-radius: 0 0 0 72%;
  transform: rotate(-24deg);
  filter: drop-shadow(0 8px 20px rgba(24, 33, 30, 0.2));
}

section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.readiness {
  position: relative;
  padding: clamp(4rem, 7vw, 7.5rem) 0;
}

.readiness::before {
  position: absolute;
  top: 3.3rem;
  right: 0;
  width: 44%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(180, 111, 79, 0.5), transparent);
}

.section-heading {
  max-width: 48rem;
}

.ready-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 2.2rem;
}

.ready-card {
  position: relative;
  overflow: hidden;
  min-height: 16rem;
  padding: 1.35rem;
  border: 1px solid rgba(24, 33, 30, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(255, 250, 242, 0.58)),
    rgba(255, 250, 242, 0.68);
  box-shadow: 0 14px 36px rgba(32, 42, 37, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ready-card::after {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 7rem;
  height: 7rem;
  content: "";
  border: 1px solid rgba(23, 61, 50, 0.12);
  border-radius: 999px;
}

.ready-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 61, 50, 0.26);
  box-shadow: 0 22px 52px rgba(32, 42, 37, 0.1);
}

.card-index {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  color: rgba(24, 33, 30, 0.25);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.ready-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.ready-icon {
  position: relative;
  width: 3rem;
  height: 3rem;
  margin-bottom: 2.2rem;
  border-radius: var(--radius);
  background: var(--green-soft);
}

.ready-icon::before,
.ready-icon::after {
  position: absolute;
  content: "";
}

.ready-icon.found::before {
  inset: 0.75rem;
  border: 2px solid var(--green);
  border-radius: 999px;
}

.ready-icon.found::after {
  right: 0.56rem;
  bottom: 0.56rem;
  width: 0.72rem;
  height: 2px;
  background: var(--green);
  transform: rotate(45deg);
}

.ready-icon.trusted::before {
  inset: 0.55rem 0.75rem;
  border: 2px solid var(--green);
  border-top-width: 0.45rem;
  border-radius: 4px;
}

.ready-icon.trusted::after {
  left: 1.1rem;
  bottom: 0.78rem;
  width: 0.82rem;
  height: 0.5rem;
  border-right: 2px solid var(--clay);
  border-bottom: 2px solid var(--clay);
  transform: rotate(45deg);
}

.ready-icon.contacted::before {
  inset: 0.72rem 0.58rem 0.86rem;
  border: 2px solid var(--green);
  border-radius: 5px;
}

.ready-icon.contacted::after {
  right: 0.88rem;
  bottom: 0.72rem;
  width: 0.66rem;
  height: 0.66rem;
  background: var(--green-soft);
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
}

.proof,
.pricing,
.contact {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(2rem, 5vw, 5.2rem);
  align-items: center;
  padding: clamp(4rem, 7vw, 7.5rem) 0;
  border-top: 1px solid var(--line);
}

.proof-copy,
.pricing-copy,
.contact-copy {
  max-width: 33rem;
}

.proof-copy p,
.pricing-copy p,
.contact-copy p {
  color: var(--muted);
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1.6rem;
}

.proof-metrics span {
  padding: 0.72rem 0.76rem;
  color: var(--green);
  border: 1px solid rgba(23, 61, 50, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.72);
  font-size: 0.84rem;
  font-weight: 760;
}

.site-preview {
  overflow: hidden;
  border: 1px solid rgba(24, 33, 30, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.76);
  box-shadow: 0 28px 80px rgba(32, 42, 37, 0.16);
}

.preview-toolbar {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.preview-toolbar span {
  width: 0.68rem;
  height: 0.68rem;
  background: var(--blue-gray);
  border-radius: 999px;
}

.preview-toolbar p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.78rem;
}

.preview-body {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 1rem;
  min-height: 25.5rem;
  padding: 1rem;
  background:
    linear-gradient(rgba(23, 61, 50, 0.7), rgba(23, 61, 50, 0.62)),
    url("/assets/ormavo-storefront.png") center/cover;
}

.preview-copy,
.preview-listing {
  align-self: end;
  padding: 1.2rem;
  color: var(--white);
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: var(--radius);
  background: rgba(24, 33, 30, 0.35);
  backdrop-filter: blur(12px);
}

.preview-copy span,
.preview-listing p {
  color: #f0c5a8;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.3vw, 3.6rem);
  font-weight: 540;
  line-height: 1;
}

.preview-copy p {
  max-width: 22rem;
  color: rgba(255, 250, 242, 0.84);
}

.preview-copy button {
  min-height: 2.8rem;
  padding: 0.72rem 1rem;
  color: var(--green);
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
}

.preview-listing {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.9);
}

.preview-listing strong,
.preview-listing span {
  display: block;
}

.preview-listing span {
  margin-top: 0.6rem;
  color: var(--muted);
}

.process {
  padding: clamp(4rem, 7vw, 7.5rem) 0;
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 13.5rem;
  padding: 1.35rem;
  border: 1px solid rgba(24, 33, 30, 0.12);
  border-top: 2px solid var(--clay);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.54);
}

.steps span,
.price-label {
  display: inline-block;
  margin-bottom: 1.7rem;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.pricing {
  grid-template-columns: 1fr 0.78fr;
}

.price-card,
.contact-form {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(24, 33, 30, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.88), rgba(246, 240, 230, 0.7)),
    rgba(255, 250, 242, 0.74);
  box-shadow: var(--shadow-soft);
}

.price-card strong {
  display: block;
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 540;
  line-height: 1.05;
}

.price-intro {
  margin-bottom: 1.2rem;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0 0 1.5rem;
  color: var(--muted);
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 0.55rem;
}

.price-card li::before {
  flex: 0 0 auto;
  width: 0.46rem;
  height: 0.46rem;
  margin-top: 0.52rem;
  content: "";
  background: var(--green);
  border-radius: 999px;
}

.contact {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--green);
  font-weight: 760;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(24, 33, 30, 0.16);
  border-radius: var(--radius);
  outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 61, 50, 0.12);
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 2rem 0 2.5rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a:last-child {
  color: var(--green);
  font-weight: 760;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    top: 0.5rem;
  }

  .nav {
    display: none;
  }

  .hero,
  .proof,
  .pricing,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-visual > img {
    height: 560px;
    min-height: 0;
  }

  .visual-caption {
    top: 1.4rem;
    right: 1.4rem;
  }

  .empty-listing {
    left: 1rem;
  }

  .profile-card {
    right: 1rem;
  }

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

  .preview-body {
    grid-template-columns: 1fr;
  }

  .proof-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header,
  section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .header-action {
    padding: 0.65rem 0.78rem;
  }

  .hero {
    width: min(100% - 28px, 1180px);
    padding-top: 2rem;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .hero-visual {
    min-height: 500px;
    padding: 0.5rem;
  }

  .hero-visual > img {
    height: 520px;
  }

  .visual-caption {
    top: auto;
    right: 1rem;
    bottom: 8.7rem;
    left: 1rem;
    width: auto;
  }

  .empty-listing {
    top: 1rem;
    width: calc(100% - 2rem);
  }

  .profile-card {
    right: 1rem;
    bottom: 5rem;
    width: calc(100% - 2rem);
  }

  .enquiry-card {
    right: 1rem;
    bottom: 1rem;
    width: calc(100% - 2rem);
  }

  .route-line {
    display: none;
  }

  .proof,
  .pricing,
  .contact,
  .process,
  .readiness {
    padding: 3.8rem 0;
  }
}
