:root {
  --red: #fc403a;
  --red-dark: #d93631;
  --ink: #082f34;
  --ink-deep: #052327;
  --ink-soft: #315158;
  --andaman: #075764;
  --mist: #e4ece8;
  --mist-dark: #cbdad5;
  --shell: #f4f5f1;
  --white: #ffffff;
  --line: rgba(8, 47, 52, 0.17);
  --muted: #667b7f;
  --verified: #267c67;
  --font-display: "Geologica", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-data: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --container: 1360px;
  --radius: 8px;
  --control-radius: 6px;
}

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

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

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

body.menu-open {
  overflow: hidden;
}

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

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

button,
select,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(252, 64, 58, 0.42);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: var(--control-radius);
  color: var(--white);
  background: var(--ink);
  font-weight: 600;
}

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

.container {
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(244, 245, 241, 0.97);
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 36px rgba(13, 43, 46, 0.06);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  width: max-content;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand img {
  width: 124px;
  height: auto;
}

.brand span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.main-navigation {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.main-navigation a,
.site-footer nav a {
  transition: color 180ms ease;
}

.main-navigation a:hover,
.site-footer nav a:hover {
  color: var(--red);
}

.menu-button {
  display: none;
}

.header-tools,
.language-switch {
  display: flex;
  align-items: center;
}

.header-tools { gap: 14px; }
.language-switch { gap: 3px; padding: 3px; border: 1px solid var(--line); border-radius: 999px; }
.language-switch a { min-width: 34px; padding: 6px 8px; border-radius: 999px; text-align: center; font: 500 10px var(--font-data); }
.language-switch a.is-active { color: var(--white); background: var(--ink); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 0;
  border-radius: var(--control-radius);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

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

.button-primary:hover {
  background: var(--red-dark);
}

.button-light {
  color: var(--white);
  background: var(--red);
}

.button-light:hover {
  color: var(--white);
  background: var(--red-dark);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: max-content;
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: var(--red);
  transition: transform 180ms ease;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--shell);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 44%;
  background: linear-gradient(110deg, rgba(228, 236, 232, 0.58), rgba(244, 245, 241, 0));
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: minmax(620px, 1fr) auto;
  column-gap: 24px;
  min-height: 752px;
  padding-top: 42px;
}

.hero-copy {
  z-index: 3;
  grid-column: 1 / 7;
  grid-row: 1;
  align-self: center;
  max-width: 660px;
  padding: 6px 0 76px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--red);
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--red);
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(52px, 5.5vw, 82px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

h1 span {
  color: var(--red);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 4.1vw, 58px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 30px;
}

.hero-note {
  max-width: 540px;
  margin-bottom: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #526d72;
  font-size: 13px;
  line-height: 1.65;
}

.hero-media {
  position: relative;
  z-index: 1;
  grid-column: 7 / -1;
  grid-row: 1;
  align-self: stretch;
  width: calc(100% + max(40px, (100vw - var(--container)) / 2));
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--mist-dark);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  height: auto;
  background:
    linear-gradient(90deg, rgba(5, 35, 39, 0.38), transparent 30%),
    linear-gradient(to top, rgba(5, 35, 39, 0.7), transparent 42%);
  content: "";
  pointer-events: none;
}

.hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 52px;
  left: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: var(--white);
}

.hero-media figcaption span {
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-media figcaption strong {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-family: var(--font-data);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proofline {
  position: absolute;
  z-index: 4;
  top: 106px;
  bottom: 184px;
  left: calc(50% + 2px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 22px;
  color: var(--white);
}

.proofline::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 5px;
  width: 1px;
  background: rgba(255, 255, 255, 0.48);
  content: "";
}

.proofline span {
  position: relative;
  display: block;
}

.proofline i {
  position: absolute;
  top: 50%;
  left: -22px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

.proofline b {
  display: inline-block;
  padding: 7px 9px;
  background: rgba(5, 35, 39, 0.82);
  font-family: var(--font-data);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.selection-bar {
  position: relative;
  z-index: 4;
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 22px;
  margin-top: -34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 22px 58px rgba(8, 47, 52, 0.12);
}

.selection-intro {
  grid-column: 1 / -1;
  display: flex;
  gap: 24px;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.selection-intro span,
.selection-group legend span {
  color: var(--red);
  font-family: var(--font-data);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selection-intro strong {
  max-width: 680px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.selection-value {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--shell);
}

.selection-value p {
  min-height: 76px;
  margin: 0;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.selection-value p:last-child {
  border-right: 0;
}

.selection-value b,
.selection-value span {
  display: block;
}

.selection-value b {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 12px;
}

.selection-value span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.selection-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.selection-group legend {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.selection-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.selection-options label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.selection-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.selection-options label span {
  display: flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4d686d;
  background: var(--shell);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.selection-options label:hover span {
  border-color: rgba(252, 64, 58, 0.42);
  color: var(--ink);
  transform: translateY(-1px);
}

.selection-options input:checked + span {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.selection-options input:focus-visible + span {
  outline: 3px solid rgba(252, 64, 58, 0.34);
  outline-offset: 2px;
}

.selection-action {
  grid-column: 1 / -1;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.selection-action p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.selection-submit {
  min-width: 294px;
  margin: 0;
}

.anchor-alias {
  position: absolute;
  top: -104px;
}

.collections {
  position: relative;
}

.method-strip {
  padding: 78px 0 0;
}

.method-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-strip-grid p {
  min-height: 116px;
  margin: 0;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.55;
}

.method-strip-grid p:first-child {
  padding-left: 0;
}

.method-strip-grid p:last-child {
  padding-right: 0;
  border-right: 0;
}

.method-strip-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-family: var(--font-data);
  font-size: 11px;
}

.deadline-offer {
  padding: 34px 0;
  color: var(--white);
  background: var(--red);
}

.deadline-offer[hidden] {
  display: none;
}

.deadline-offer-grid {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 250px;
  gap: 32px;
  align-items: center;
}

.deadline-offer-date {
  display: grid;
  justify-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  font-family: var(--font-data);
  text-transform: uppercase;
}

.deadline-offer-date strong {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 500;
  line-height: 0.95;
}

.deadline-offer-date span {
  font-size: 10px;
  letter-spacing: 0.06em;
}

.deadline-offer-copy h2 {
  max-width: 780px;
  margin: 8px 0 10px;
  color: var(--white);
  font-size: clamp(25px, 2.7vw, 40px);
}

.deadline-offer-copy > p:last-child {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
}

.deadline-offer-action {
  display: grid;
  gap: 10px;
  text-align: center;
}

.deadline-offer-action small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.hot-lots {
  color: var(--white);
  background: #0b2d2d;
}

.hot-lots-head {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}

.hot-lots-head h2 {
  max-width: 800px;
  margin: 8px 0 0;
  color: var(--white);
}

.hot-lots-head > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.65;
}

.hot-lots-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hot-lot {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.025);
}

.hot-lot-featured {
  background: linear-gradient(145deg, rgba(252, 64, 58, 0.25), rgba(255, 255, 255, 0.035));
}

.hot-lot-tag {
  color: #ffc44f;
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hot-lot h3 {
  margin: 26px 0 12px;
  color: var(--white);
  font-size: 22px;
}

.hot-lot strong {
  color: #ffc44f;
  font-size: 24px;
  line-height: 1.25;
}

.hot-lot p {
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.65;
}

.hot-lot a {
  margin-top: auto;
  color: var(--white);
  font-weight: 650;
}

.hot-lots-foot {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 0;
}

.hot-lots-foot p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
  line-height: 1.55;
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2 {
  max-width: 840px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 480px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.section-heading-compact {
  align-items: end;
}

.section-heading-compact .text-link {
  justify-self: end;
  margin-bottom: 8px;
}

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

.route-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.route-card:hover {
  transform: translateY(-4px);
  border-color: rgba(252, 64, 58, 0.55);
  box-shadow: 0 20px 50px rgba(13, 43, 46, 0.08);
}

.route-card-dark {
  color: var(--ink);
  border-color: var(--line);
  border-top: 3px solid var(--red);
  background: var(--white);
}

.route-index {
  margin-bottom: 40px;
  color: var(--red);
  font-family: var(--font-data);
  font-size: 12px;
}

.route-status {
  margin-bottom: 14px;
  color: var(--red);
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-card h3 {
  margin-bottom: 18px;
  font-size: 27px;
}

.route-card p:not(.route-status) {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
}

.route-card-dark p:not(.route-status) {
  color: var(--muted);
}

.route-card strong {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
}

.route-card strong span {
  margin-left: 8px;
  color: var(--red);
}

.collections {
  background: var(--white);
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, minmax(300px, 1fr));
  gap: 24px;
}

.collection-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.collection-card-large {
  grid-row: 1 / 3;
  min-height: 644px;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.collection-card:hover img {
  transform: scale(1.015);
}

.collection-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 21, 23, 0.85) 0, rgba(4, 21, 23, 0.12) 72%);
  content: "";
}

.collection-overlay {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  color: var(--white);
}

.collection-overlay p {
  margin-bottom: 8px;
  color: #b9cdca;
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-overlay h3 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: 28px;
}

.collection-card:not(.collection-card-large) .collection-overlay h3 {
  max-width: 450px;
  font-size: 22px;
}

.collection-overlay span {
  font-size: 13px;
  font-weight: 600;
}

.decision-preview {
  color: var(--white);
  background: var(--ink-deep);
}

.decision-preview .section-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.decision-preview .section-heading h2 {
  color: var(--white);
}

.decision-preview-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, 250px);
  gap: 18px;
}

.decision-preview-item {
  position: relative;
  grid-column: 8 / 13;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #103d42;
}

.decision-preview-item-wide {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.decision-preview-item-plan:nth-of-type(3) {
  grid-column: 8 / 10;
}

.decision-preview-item-plan:nth-of-type(4) {
  grid-column: 10 / 13;
}

.decision-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.decision-preview-item-plan img {
  padding: 14px;
  object-fit: contain;
  background: #f2f0eb;
}

.decision-preview-item:hover img {
  transform: scale(1.018);
}

.decision-preview-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(3, 25, 28, 0.84));
  content: "";
  pointer-events: none;
}

.decision-preview-item figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  gap: 5px;
}

.decision-preview-item figcaption span {
  color: #ffaaa6;
  font-family: var(--font-data);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.decision-preview-item figcaption strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.decision-preview-item-wide figcaption strong {
  max-width: 620px;
  font-size: clamp(24px, 2.6vw, 38px);
}

.property-desk {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.property-desk-note {
  max-width: 470px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

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

.property-card {
  grid-column: span 4;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--shell);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.property-card-featured {
  grid-column: span 6;
}

.property-card:hover {
  border-color: rgba(252, 64, 58, 0.45);
  box-shadow: 0 18px 48px rgba(8, 47, 52, 0.09);
  transform: translateY(-3px);
}

.property-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--mist);
}

.property-card-featured .property-media {
  aspect-ratio: 16 / 10;
}

.property-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(4, 21, 23, 0.72));
  content: "";
}

.property-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.property-card:hover .property-media img {
  transform: scale(1.018);
}

.property-media > span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: var(--white);
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.property-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.property-location {
  margin-bottom: 10px;
  color: var(--red);
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.property-body h3 {
  margin-bottom: 18px;
  font-size: 27px;
}

.property-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 18px;
  border-block: 1px solid var(--line);
}

.property-metrics span {
  min-height: 76px;
  padding: 14px 14px 14px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.property-metrics span + span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.property-metrics b {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 14px;
}

.property-body > p:not(.property-location) {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.property-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.property-benefits li {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #49666a;
  background: var(--white);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.25;
}

.property-body .property-analytics {
  margin: 0 0 22px;
  padding: 15px 16px;
  border-left: 2px solid var(--red);
  color: var(--muted);
  background: var(--white);
  font-size: 11px;
  line-height: 1.55;
}

.property-analytics b {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-family: var(--font-data);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.property-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.property-actions a {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.property-actions a:first-child {
  color: var(--ink);
}

.project-family-links {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.6fr);
  gap: 34px;
  margin-top: 30px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--shell);
}

.project-family-links-copy h3 {
  max-width: 460px;
  margin: 8px 0 12px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}

.project-family-links-copy > p:last-child {
  max-width: 500px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.project-family-links nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  border-top: 1px solid var(--line);
}

.project-family-links nav a {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.project-family-links nav a:nth-child(even) {
  padding-right: 0;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.project-family-links nav strong {
  font-size: 14px;
}

.project-family-links nav span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.project-family-links nav a:hover strong {
  color: var(--red);
}

.hot-offers {
  background: var(--shell);
}

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

.hot-offer-grid article {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  background: var(--white);
}

.hot-offer-grid span {
  color: var(--red);
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hot-offer-grid h3 {
  margin: 60px 0 16px;
  font-size: 26px;
}

.hot-offer-grid p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.hot-offer-grid a {
  margin-top: auto;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.early-trust { padding: 44px 0; border-block: 1px solid var(--line); background: var(--white); }
.early-trust-heading { display: grid; grid-template-columns: .45fr 1.4fr auto; gap: 30px; align-items: end; margin-bottom: 28px; }
.early-trust-heading .eyebrow { margin: 0; }
.early-trust-heading h2 { max-width: 700px; margin: 0; font-size: clamp(28px, 3vw, 42px); }
.early-trust-heading > a { color: var(--red); font-size: 13px; font-weight: 700; }
.early-trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--line); }
.early-trust-grid article { padding: 24px; border-right: 1px solid var(--line); }
.early-trust-grid article:last-child { border-right: 0; }
.early-trust-grid strong { display: block; margin-bottom: 10px; font: 500 18px/1.25 var(--font-display); }
.early-trust-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.buyer-triggers { border-block: 1px solid var(--line); background: var(--white); }
.market-pulse { overflow: hidden; color: #f8f5ed; background: #102b2a; }
.market-pulse-compact { padding-block: clamp(58px, 7vw, 92px); }
.market-pulse-head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: 48px; align-items: end; margin-bottom: 30px; }
.market-pulse .eyebrow { color: #efbd58; }
.market-pulse h2 { max-width: 720px; margin-bottom: 0; color: #fff; }
.market-pulse-head > p { margin: 0; color: rgba(255,255,255,.7); line-height: 1.6; }
.market-pulse-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid rgba(255,255,255,.16); }
.market-pulse-cards article { display: flex; min-height: 270px; flex-direction: column; padding: 28px; border-right: 1px solid rgba(255,255,255,.16); }
.market-pulse-cards article:last-child { border-right: 0; }
.market-pulse-cards .market-pulse-now { background: linear-gradient(145deg, rgba(239,189,88,.15), rgba(255,255,255,.02)); }
.market-pulse-cards article > span { color: rgba(255,255,255,.58); font: 500 10px var(--font-data); letter-spacing: .08em; text-transform: uppercase; }
.market-pulse-cards strong { margin: 28px 0 14px; color: #efbd58; font: 500 clamp(32px, 3.8vw, 54px)/1 var(--font-display); letter-spacing: -.04em; }
.market-pulse-cards p { margin: 0 0 22px; color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.55; }
.market-pulse-cards a { margin-top: auto; color: #fff; font-size: 12px; font-weight: 700; }
.market-pulse-action { display: flex; gap: 28px; align-items: center; justify-content: space-between; padding: 26px 28px; border: 1px solid rgba(239,189,88,.48); border-top: 0; }
.market-pulse-action p { max-width: 760px; margin: 0; color: rgba(255,255,255,.78); line-height: 1.55; }
.market-pulse-action strong { color: #fff; }
.market-pulse-action .button { flex: 0 0 auto; }

@media (max-width: 900px) {
  .early-trust-heading,
  .market-pulse-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .early-trust-grid,
  .market-pulse-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .early-trust-grid article:nth-child(2), .market-pulse-cards article:nth-child(2) { border-right: 0; }
  .early-trust-grid article:nth-child(-n+2), .market-pulse-cards article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .market-pulse-cards article:nth-child(-n+2) { border-bottom-color: rgba(255,255,255,.16); }
}

@media (max-width: 600px) {
  .early-trust-grid,
  .market-pulse-cards { grid-template-columns: 1fr; }
  .market-pulse-action { align-items: flex-start; flex-direction: column; }
  .early-trust-grid article,
  .market-pulse-cards article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .market-pulse-cards article { border-bottom-color: rgba(255,255,255,.16); }
  .early-trust-grid article:last-child,
  .market-pulse-cards article:last-child { border-bottom: 0; }
}

.buyer-trigger-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.buyer-trigger-grid article {
  min-height: 260px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.buyer-trigger-grid article:last-child {
  border-right: 0;
}

.buyer-trigger-grid span {
  color: var(--red);
  font-family: var(--font-data);
  font-size: 11px;
}

.buyer-trigger-grid h3 {
  margin: 58px 0 14px;
  font-size: 22px;
}

.buyer-trigger-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.passport-section {
  color: var(--ink);
  border-block: 1px solid var(--line);
  background: var(--white);
}

.passport-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 96px;
  align-items: center;
}

.passport-copy h2 {
  max-width: 620px;
}

.passport-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.passport-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--shell);
}

.passport-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.passport-card-head div {
  display: grid;
  gap: 4px;
}

.passport-card-head span,
.passport-card dt {
  color: var(--red);
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.passport-card-head strong {
  font-size: 20px;
  font-weight: 550;
}

.passport-code {
  color: var(--red) !important;
}

.passport-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.passport-card dl div {
  min-height: 128px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.passport-card dl div:nth-child(2n) {
  border-right: 0;
}

.passport-card dt {
  margin-bottom: 12px;
}

.passport-card dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.passport-footnote {
  margin: 0;
  padding: 20px 28px;
  color: var(--muted);
  font-size: 12px;
}

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

.area-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(13, 43, 46, 0.08);
}

.area-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.area-card > div {
  position: relative;
  padding: 26px;
}

.area-card span {
  position: absolute;
  top: 28px;
  right: 26px;
  color: var(--red);
  font-family: var(--font-data);
  font-size: 11px;
}

.area-card h3 {
  max-width: calc(100% - 40px);
  margin-bottom: 10px;
}

.area-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.method {
  background: var(--mist);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 96px;
}

.method-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.method-intro p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
  font-size: 17px;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(13, 43, 46, 0.2);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(13, 43, 46, 0.2);
}

.process-list > li > span {
  color: var(--red);
  font-family: var(--font-data);
  font-size: 12px;
}

.process-list h3 {
  margin-bottom: 8px;
}

.process-list p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.evidence {
  background: var(--white);
}

.evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 96px;
  align-items: start;
}

.evidence-grid h2 {
  max-width: 560px;
}

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

.evidence-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.evidence-list li:first-child {
  padding-top: 0;
}

.evidence-list span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(252, 64, 58, 0.45);
  border-radius: 50%;
  color: var(--red);
  font-size: 18px;
}

.evidence-list p {
  margin: 0;
  color: var(--muted);
}

.evidence-list strong {
  color: var(--ink);
  font-weight: 600;
}

.aftercare {
  padding-top: 0;
}

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

.aftercare-grid article {
  min-height: 240px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.aftercare-grid article:first-child {
  padding-left: 0;
}

.aftercare-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.aftercare-grid span {
  display: block;
  margin-bottom: 64px;
  color: var(--red);
  font-family: var(--font-data);
  font-size: 11px;
}

.aftercare-grid h3 {
  margin-bottom: 10px;
}

.aftercare-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.aftercare-return {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 54px;
  align-items: end;
  margin-top: 38px;
  padding: 38px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  background: var(--white);
}

.aftercare-return h3 {
  max-width: 840px;
  margin-bottom: 12px;
  font-size: 28px;
}

.aftercare-return p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.aftercare-return .text-link {
  white-space: nowrap;
}

.guides {
  background: var(--white);
}

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

.guide-grid a {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 200ms ease, transform 200ms ease;
}

.guide-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(252, 64, 58, 0.55);
}

.guide-grid span {
  margin-bottom: 64px;
  color: var(--red);
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.guide-grid h3 {
  margin-bottom: 14px;
  font-size: 25px;
}

.guide-grid p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
}

.guide-grid strong {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
}

.final-cta {
  padding: 112px 0;
  background: var(--mist);
}

.final-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 80px;
  align-items: end;
  padding: 64px;
  border-radius: var(--radius);
  color: var(--ink);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  background: var(--white);
  box-shadow: 0 22px 58px rgba(8, 47, 52, 0.08);
}

.final-cta-card h2 {
  max-width: 850px;
}

.final-cta-card p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.final-cta-card .button {
  min-width: 190px;
}

.site-footer {
  padding: 58px 0 88px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.brand-footer span {
  border-color: var(--line);
}

.footer-grid > div > p {
  max-width: 340px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  font-size: 13px;
}

.footer-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.mobile-action {
  display: none;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1120px) {
  .buyer-trigger-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .buyer-trigger-grid article:nth-child(2) {
    border-right: 0;
  }

  .buyer-trigger-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .decision-preview-grid {
    grid-template-rows: repeat(2, 220px);
  }

  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .header-grid {
    grid-template-columns: auto 1fr auto;
  }

  .main-navigation {
    gap: 18px;
  }

  .main-navigation a:nth-child(2),
  .main-navigation a:nth-child(5) {
    display: none;
  }

  .hero-grid {
    grid-template-rows: minmax(640px, 1fr) auto;
    column-gap: 16px;
    min-height: 790px;
  }

  .hero-media {
    grid-column: 7 / -1;
    width: calc(100% + 24px);
    min-height: 600px;
  }

  .hero-copy {
    grid-column: 1 / 7;
  }

  .proofline {
    top: 104px;
    bottom: 216px;
    left: calc(50% + 8px);
  }

  .selection-bar {
    gap: 22px 16px;
    padding: 24px;
  }

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

  .method-strip-grid p:nth-child(2) {
    border-right: 0;
  }

  .method-strip-grid p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .passport-grid,
  .method-grid,
  .evidence-grid {
    gap: 56px;
  }
}

@media (max-width: 1024px) and (min-width: 861px) {
  .route-grid {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: 0;
  }

  .route-index {
    margin-bottom: 26px;
  }
}

@media (max-width: 860px) {
  .deadline-offer-grid {
    grid-template-columns: 110px 1fr;
  }

  .deadline-offer-action {
    grid-column: 1 / -1;
  }

  .hot-lots-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .decision-preview-grid {
    grid-template-rows: 360px 220px 230px;
  }

  .decision-preview-item,
  .decision-preview-item-wide {
    grid-column: 1 / 13;
  }

  .decision-preview-item-wide {
    grid-row: 1;
  }

  .decision-preview-item:nth-of-type(2) {
    grid-row: 2;
  }

  .decision-preview-item-plan:nth-of-type(3) {
    grid-column: 1 / 7;
    grid-row: 3;
  }

  .decision-preview-item-plan:nth-of-type(4) {
    grid-column: 7 / 13;
    grid-row: 3;
  }

  .site-header {
    backdrop-filter: none;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .header-grid {
    min-height: 68px;
  }

  .brand img {
    width: 112px;
  }

  .header-cta {
    display: none;
  }

  .header-tools {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-right: 12px;
  }

  .menu-button {
    display: inline-flex;
    grid-column: 3;
    gap: 10px;
    align-items: center;
    justify-self: end;
    min-width: 72px;
    min-height: 44px;
    padding: 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
  }

  .menu-button-label {
    font-size: 12px;
    font-weight: 600;
  }

  .menu-button-lines {
    display: grid;
    gap: 6px;
    width: 20px;
  }

  .menu-button-lines i {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] .menu-button-lines i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-button-lines i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-navigation {
    position: fixed;
    z-index: 90;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: start;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 28px 20px 110px;
    background: var(--shell);
    opacity: 0;
    transform: none;
    transition: visibility 180ms ease, opacity 180ms ease;
  }

  .main-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .main-navigation a,
  .main-navigation a:nth-child(2),
  .main-navigation a:nth-child(5) {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 22px;
  }

  .hero {
    padding-top: 0;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0;
    min-height: auto;
    padding-top: 48px;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    max-width: 680px;
    padding: 0 0 36px;
  }

  .hero-media {
    grid-column: 1;
    grid-row: 2;
    width: calc(100% + 40px);
    min-height: auto;
    margin-left: -20px;
    aspect-ratio: 16 / 10;
    border-radius: 0;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-media figcaption {
    bottom: 18px;
  }

  .proofline {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    grid-column: 1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-self: start;
    justify-self: stretch;
    margin: 20px 18px 0;
    padding: 18px 0 0;
  }

  .proofline::before {
    top: 5px;
    right: 4px;
    bottom: auto;
    left: 4px;
    width: auto;
    height: 1px;
  }

  .proofline span {
    padding-top: 7px;
  }

  .proofline i {
    top: -13px;
    left: 0;
    transform: none;
  }

  .proofline b {
    padding: 6px 7px;
    font-size: 9px;
  }

  .selection-bar {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .selection-intro,
  .selection-action {
    grid-column: 1;
  }

  .selection-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .selection-group {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }

  .selection-action {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding-top: 0;
    border-top: 0;
  }

  .selection-submit {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    margin: 0;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading,
  .passport-grid,
  .method-grid,
  .evidence-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading-compact .text-link {
    justify-self: start;
  }

  .route-grid,
  .area-grid,
  .guide-grid,
  .hot-offer-grid {
    grid-template-columns: 1fr;
  }

  .property-card,
  .property-card-featured {
    grid-column: span 6;
  }

  .route-card {
    min-height: 360px;
  }

  .route-index {
    margin-bottom: 42px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(360px, 1fr));
  }

  .collection-card-large {
    grid-row: auto;
    min-height: 460px;
  }

  .passport-copy {
    padding-bottom: 18px;
  }

  .method-intro {
    position: static;
  }

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

  .aftercare-return {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .aftercare-grid article:nth-child(2) {
    border-right: 0;
  }

  .aftercare-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .aftercare-grid article:nth-child(3) {
    padding-left: 0;
  }

  .final-cta-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px;
  }

  .final-cta-card .button {
    justify-self: start;
  }

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

  .footer-note {
    grid-column: 1 / -1;
  }

  .mobile-action {
    position: fixed;
    z-index: 80;
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: flex;
    visibility: hidden;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: var(--control-radius);
    color: var(--white);
    background: var(--red);
    box-shadow: 0 14px 34px rgba(13, 43, 46, 0.24);
    font-size: 14px;
    font-weight: 650;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .mobile-action.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-footer {
    padding-bottom: 102px;
  }
}

@media (max-width: 560px) {
  .buyer-trigger-grid {
    display: block;
  }

  .buyer-trigger-grid article,
  .buyer-trigger-grid article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .buyer-trigger-grid article:last-child {
    border-bottom: 0;
  }

  .buyer-trigger-grid h3 {
    margin-top: 32px;
  }

  .deadline-offer {
    padding: 28px 0;
  }

  .deadline-offer-grid {
    grid-template-columns: 82px 1fr;
    gap: 18px;
  }

  .deadline-offer-date {
    padding: 12px 8px;
  }

  .deadline-offer-date strong {
    font-size: 42px;
  }

  .deadline-offer-copy h2 {
    font-size: 24px;
  }

  .deadline-offer-copy > p:last-child {
    grid-column: 1 / -1;
    font-size: 13px;
  }

  .hot-lots-grid {
    grid-template-columns: 1fr;
  }

  .hot-lot {
    min-height: 0;
  }

  .hot-lots-foot {
    align-items: stretch;
    flex-direction: column;
  }

  .decision-preview-grid {
    display: flex;
    flex-direction: column;
  }

  .decision-preview-item {
    min-height: 230px;
  }

  .decision-preview-item-wide {
    min-height: 340px;
  }

  .decision-preview-item figcaption {
    right: 16px;
    bottom: 15px;
    left: 16px;
  }

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

  .brand span {
    display: none;
  }

  .brand img {
    width: 108px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-grid {
    padding-top: 34px;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(39px, 11.8vw, 48px);
    line-height: 0.98;
  }

  h2 {
    font-size: 34px;
    line-height: 1.07;
  }

  h3 {
    font-size: 21px;
  }

  .hero-lead {
    margin-bottom: 26px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
  }

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

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

  .proofline {
    display: none;
  }

  .hero-media figcaption {
    right: 20px;
    bottom: 18px;
    left: 20px;
  }

  .hero-media figcaption span {
    display: none;
  }

  .selection-bar {
    grid-template-columns: 1fr;
    margin-top: 16px;
    padding: 20px 18px;
  }

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

  .selection-value {
    grid-template-columns: 1fr;
  }

  .selection-value p,
  .selection-value p:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .selection-value p:last-child {
    border-bottom: 0;
  }

  .selection-options label span {
    height: 100%;
    justify-content: center;
    padding: 9px 10px;
    text-align: center;
  }

  .method-strip {
    padding-top: 60px;
  }

  .method-strip-grid {
    grid-template-columns: 1fr;
  }

  .method-strip-grid p,
  .method-strip-grid p:first-child,
  .method-strip-grid p:last-child {
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-strip-grid p:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    gap: 20px;
  }

  .section-heading > p {
    font-size: 15px;
  }

  .route-card {
    min-height: 340px;
    padding: 26px;
  }

  .route-card h3 {
    font-size: 24px;
  }

  .collection-grid {
    grid-template-rows: repeat(3, minmax(380px, 1fr));
  }

  .collection-card,
  .collection-card-large {
    min-height: 380px;
  }

  .property-card,
  .property-card-featured {
    grid-column: 1 / -1;
  }

  .property-card-featured .property-media,
  .property-media {
    aspect-ratio: 4 / 3;
  }

  .property-body {
    padding: 21px;
  }

  .property-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-family-links {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
  }

  .project-family-links nav {
    grid-template-columns: 1fr;
  }

  .project-family-links nav a,
  .project-family-links nav a:nth-child(even) {
    padding: 14px 0;
    border-left: 0;
  }

  .hot-offer-grid article {
    min-height: 280px;
    padding: 24px;
  }

  .collection-overlay {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .collection-overlay h3,
  .collection-card:not(.collection-card-large) .collection-overlay h3 {
    font-size: 23px;
  }

  .passport-card dl {
    grid-template-columns: 1fr;
  }

  .passport-card dl div,
  .passport-card dl div:nth-child(2n) {
    min-height: 0;
    border-right: 0;
  }

  .passport-card-head {
    gap: 20px;
    padding: 24px;
  }

  .passport-code {
    display: none;
  }

  .process-list li {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .evidence-list li {
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .evidence-list span {
    width: 28px;
    height: 28px;
  }

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

  .aftercare-return {
    padding: 28px 22px;
  }

  .aftercare-grid article,
  .aftercare-grid article:first-child,
  .aftercare-grid article:nth-child(3),
  .aftercare-grid article:last-child {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .aftercare-grid article:last-child {
    border-bottom: 0;
  }

  .aftercare-grid span,
  .guide-grid span {
    margin-bottom: 34px;
  }

  .guide-grid a {
    min-height: 300px;
    padding: 26px;
  }

  .final-cta {
    padding: 72px 0;
  }

  .final-cta-card {
    gap: 26px;
    padding: 34px 26px;
  }

  .final-cta-card .button {
    width: 100%;
  }

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

  .site-footer nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-note {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
.telegram-manager-link{position:fixed;right:22px;bottom:22px;z-index:80;display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 18px;border-radius:999px;background:#d71920;color:#fff!important;font-weight:800;text-decoration:none;box-shadow:0 12px 30px rgba(17,24,39,.22)}
.telegram-manager-link:hover{background:#b91218;transform:translateY(-1px)}
.telegram-manager-link:focus-visible{outline:3px solid #fff;outline-offset:3px}
@media(max-width:700px){.telegram-manager-link{right:14px;bottom:88px;min-height:44px;padding:0 14px;font-size:13px}}

/* ETAGI CLIENT JOURNEY · PDF brief · 2026-08-10 */
.button-outline {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
}

.button-outline:hover {
  border-color: var(--red);
  color: var(--red-dark);
  background: var(--white);
}

.button-ghost-light {
  border: 1px solid rgba(8, 47, 52, 0.28);
  color: var(--ink);
  background: transparent;
}

#rent,
#management,
#purchase,
#projects,
#method,
#phuket {
  scroll-margin-top: 104px;
}

.service-brief {
  background: var(--white);
}

.service-brief-purchase {
  background: var(--mist);
}

.service-brief-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 56px 72px;
  align-items: start;
}

.service-brief-copy {
  position: static;
}

.service-brief-copy h2 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(38px, 4.6vw, 70px);
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.service-brief-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.service-paths {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.service-path {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 3px 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--shell);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-path:hover {
  border-color: rgba(252, 64, 58, 0.58);
  background: var(--white);
  transform: translateX(3px);
}

.service-path span {
  grid-row: 1 / 3;
  color: var(--red);
  font: 500 10px/1.4 var(--font-data);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-path strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
}

.service-path small {
  color: var(--muted);
  font-size: 11px;
}

.service-catalog-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 18px;
}

.service-catalog-links .service-catalog-link {
  margin-top: 0;
}

.brief-form {
  position: static;
  z-index: auto;
  grid-column: auto;
  grid-row: auto;
  display: block;
  margin: 0;
  padding: 34px;
  border-top-width: 1px;
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 20px 56px rgba(8, 47, 52, 0.09);
}

.brief-form-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.brief-form-head > span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font: 500 10px/1.4 var(--font-data);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brief-form-head strong {
  display: block;
  margin-bottom: 8px;
  font: 500 clamp(24px, 3vw, 34px)/1.15 var(--font-display);
  letter-spacing: -0.035em;
}

.brief-form-head p,
.brief-form-action p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.brief-fields {
  display: grid;
  gap: 20px;
}

.brief-fields > label,
.brief-field-pair > label {
  display: grid;
  gap: 7px;
}

.brief-fields label > span,
.brief-choice legend {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.brief-fields input[type="date"],
.brief-fields input[type="number"],
.brief-fields select {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  color: var(--ink);
  background: var(--shell);
}

.brief-fields input:focus,
.brief-fields select:focus {
  border-color: var(--red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(252, 64, 58, 0.13);
}

.brief-field-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.brief-budget-pair {
  grid-template-columns: minmax(0, 1fr) 110px;
}

.brief-choice {
  margin: 0;
  padding: 0;
  border: 0;
}

.brief-choice legend {
  margin-bottom: 9px;
}

.brief-choice > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brief-choice label {
  position: relative;
  cursor: pointer;
}

.brief-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.brief-choice label span {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--shell);
  font-size: 12px;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.brief-choice input:checked + span {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.brief-choice input:focus-visible + span {
  outline: 3px solid rgba(252, 64, 58, 0.35);
  outline-offset: 2px;
}

.brief-form-action {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.brief-form-action .selection-submit {
  min-width: 238px;
}

.commercial-route {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4px 24px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.commercial-route span {
  grid-row: 1 / 3;
  color: var(--red);
  font: 500 10px/1.4 var(--font-data);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.commercial-route strong {
  font: 500 20px/1.25 var(--font-display);
}

.commercial-route small {
  color: var(--muted);
}

.management {
  border-block: 1px solid var(--line);
  background: var(--shell);
}

.honest-empty {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 8px 34px;
  align-items: start;
  min-height: 220px;
  padding: 36px;
  border: 1px dashed rgba(8, 47, 52, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.honest-empty > span {
  grid-row: 1 / 4;
  color: var(--red);
  font: 500 10px/1.4 var(--font-data);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.honest-empty strong {
  font: 500 clamp(22px, 2.7vw, 34px)/1.2 var(--font-display);
  letter-spacing: -0.03em;
}

.honest-empty p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.honest-empty.is-placeholder {
  min-height: 220px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.78), rgba(236, 232, 223, 0.66)),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(8, 47, 52, 0.035) 42px 43px);
}

.priority-inventory {
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.priority-inventory .section-heading h2,
.priority-inventory .inventory-group-head h3,
.priority-inventory .inventory-card h4 {
  color: var(--white);
}

.priority-inventory .section-heading > p,
.priority-inventory .inventory-group-head p {
  color: rgba(255, 255, 255, 0.66);
}

.inventory-group {
  padding: 42px 0 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.inventory-group-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 26px;
}

.inventory-group-head > div {
  display: flex;
  gap: 18px;
  align-items: baseline;
}

.inventory-group-head span {
  color: var(--red);
  font: 500 11px var(--font-data);
}

.inventory-group-head h3 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 48px);
}

.inventory-group-head p {
  margin: 0;
  font-size: 14px;
}

.inventory-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 440px);
  gap: 18px;
  max-width: 100%;
  padding: 0 0 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--red) rgba(255, 255, 255, 0.14);
}

.inventory-track::after {
  width: 1px;
  content: "";
}

.inventory-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #0a363b;
  scroll-snap-align: start;
}

.inventory-card figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
}

.inventory-card .inventory-media-placeholder {
  background:
    radial-gradient(circle at 72% 28%, rgba(242, 61, 72, 0.2), transparent 24%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(5, 35, 39, 0.72));
}

.inventory-card figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 35, 39, 0.78));
  content: "";
}

.inventory-card figure img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.inventory-card figcaption {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
}

.inventory-card-body {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.inventory-status {
  margin-bottom: 12px;
  color: #7fd7c7;
  font: 500 10px var(--font-data);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.inventory-card h4 {
  margin: 0 0 12px;
  font-size: 28px;
}

.inventory-card-body > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.inventory-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
}

.inventory-card dl div {
  padding: 14px 0;
}

.inventory-card dl div + div {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.inventory-card dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.inventory-card dd {
  margin: 4px 0 0;
  color: var(--white);
  font-weight: 700;
}

.inventory-video-missing {
  display: grid;
  gap: 3px;
  margin-bottom: 20px;
  padding: 13px 14px;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: var(--control-radius);
  color: rgba(255, 255, 255, 0.64);
}

.inventory-video-missing strong {
  color: var(--white);
  font-size: 11px;
}

.inventory-video-missing span {
  font-size: 10px;
}

.inventory-actions {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 8px;
  margin-top: auto;
}

.inventory-actions a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--control-radius);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.inventory-actions a:last-child {
  border-color: var(--red);
  background: var(--red);
}

.priority-inventory .honest-empty {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.priority-inventory .honest-empty strong {
  color: var(--white);
}

.priority-inventory .honest-empty p {
  color: rgba(255, 255, 255, 0.65);
}

.inventory-more {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.inventory-more span {
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.52);
  font: 500 10px var(--font-data);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.inventory-more a {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
}

.inventory-more a:hover {
  border-color: var(--red);
  color: var(--white);
}

.youtube-block {
  color: var(--white);
  background: var(--andaman);
}

.youtube-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.2fr);
  gap: 70px;
  align-items: center;
}

.youtube-copy h2 {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(38px, 5vw, 72px);
}

.youtube-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
}

.youtube-channel-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 340px;
  padding: 42px;
  border: 1px dashed rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 25%, rgba(242, 61, 72, 0.18), transparent 30%),
    rgba(5, 35, 39, 0.35);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.youtube-channel-card:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(5, 35, 39, 0.52);
  transform: translateY(-3px);
}

.youtube-play {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  color: var(--red);
  font-size: 26px;
}

.youtube-channel-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font: 500 24px/1.2 var(--font-display);
}

.youtube-channel-card small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.youtube-channel-card .button {
  width: max-content;
  color: var(--andaman);
}

.method-intro .button {
  margin-top: 24px;
}

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

.checklist-grid li {
  min-height: 190px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.checklist-grid li:last-child {
  border-right: 0;
}

.checklist-grid b {
  display: block;
  margin-bottom: 46px;
  color: var(--red);
  font: 500 11px var(--font-data);
  text-transform: uppercase;
}

.checklist-grid span {
  color: var(--ink-soft);
  font-size: 13px;
}

.phuket-lead {
  max-width: 780px;
  margin: -16px 0 38px;
  color: var(--muted);
  font-size: 17px;
}

.guide-heading-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: flex-end;
}

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

.phuket .guide-grid a {
  min-height: 300px;
}

.area-link-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 24px;
}

.area-link-rail span {
  margin-right: 8px;
  color: var(--muted);
  font: 500 10px var(--font-data);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.area-link-rail a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 11px;
}

.area-link-rail a:hover {
  border-color: var(--red);
  color: var(--red-dark);
}

.instagram-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  margin-top: 24px;
  padding: 36px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: var(--shell);
}

.instagram-card h3 {
  margin-bottom: 8px;
  font-size: 30px;
}

.instagram-card p:not(.eyebrow) {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
}

.final-cta-actions {
  display: grid;
  gap: 10px;
  min-width: 230px;
}

@media (max-width: 1240px) {
  .main-navigation {
    gap: 16px;
    font-size: 12px;
  }

  .header-cta {
    display: none;
  }

  .service-brief-grid {
    grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1.28fr);
    gap: 48px;
  }

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

  .checklist-grid li:nth-child(2) {
    border-right: 0;
  }

  .checklist-grid li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 980px) {
  .service-brief-grid,
  .youtube-grid {
    grid-template-columns: 1fr;
  }

  .service-brief-copy {
    position: static;
  }

  .commercial-route {
    grid-template-columns: 190px 1fr;
  }

  .inventory-group-head {
    grid-template-columns: 1fr;
  }

  .youtube-channel-card {
    min-height: 300px;
  }

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

@media (max-width: 700px) {
  .service-brief-copy h2 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .service-path {
    grid-template-columns: 1fr;
  }

  .service-path span {
    grid-row: auto;
  }

  .brief-form {
    padding: 24px 20px;
    border-left-width: 1px;
    border-top: 4px solid var(--red);
  }

  .brief-field-pair,
  .brief-budget-pair,
  .brief-form-action {
    grid-template-columns: 1fr;
  }

  .brief-form-action .selection-submit {
    width: 100%;
    min-width: 0;
  }

  .commercial-route,
  .honest-empty,
  .youtube-channel-card,
  .instagram-card {
    grid-template-columns: 1fr;
  }

  .commercial-route span,
  .honest-empty > span {
    grid-row: auto;
  }

  .inventory-track {
    grid-auto-columns: minmax(285px, 88vw);
  }

  .inventory-card figure,
  .inventory-card figure img {
    min-height: 190px;
  }

  .youtube-channel-card {
    padding: 28px 22px;
  }

  .youtube-channel-card .button {
    grid-column: auto;
    width: 100%;
  }

  .checklist-grid,
  .phuket .guide-grid {
    grid-template-columns: 1fr;
  }

  .checklist-grid li,
  .checklist-grid li:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .checklist-grid li:last-child {
    border-bottom: 0;
  }

  .final-cta-actions {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .header-grid {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
  }

  .header-tools {
    margin-right: 0;
  }

  .menu-button {
    min-width: 44px;
  }

  .menu-button-label {
    display: none;
  }
}
