:root {
  --ivory: #f7f0e6;
  --rice: #fbf8f1;
  --travertine: #ded0bf;
  --sand: #c7b49f;
  --ink: #171716;
  --lacquer: #0f1513;
  --jade: #49695e;
  --jade-soft: #d7e3dd;
  --porcelain: #eef4f2;
  --brass: #b69a64;
  --plum: #5a3942;
  --line-dark: rgba(23, 23, 22, 0.16);
  --line-light: rgba(251, 248, 241, 0.18);
  --shadow: 0 28px 90px rgba(15, 21, 19, 0.18);
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--rice);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--lacquer);
  color: var(--rice);
}

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

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 18px;
  right: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 68px;
  padding: 10px 12px;
  border: 1px solid rgba(251, 248, 241, 0.5);
  border-radius: 8px;
  color: var(--rice);
  background: rgba(15, 21, 19, 0.44);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 248, 241, 0.9);
  border-color: rgba(23, 23, 22, 0.12);
  box-shadow: 0 14px 50px rgba(15, 21, 19, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--lacquer);
  background: var(--brass);
  font-family: var(--font-display);
  font-weight: 700;
}

.brand-name,
.brand-role {
  display: block;
  white-space: nowrap;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1;
}

.brand-role {
  margin-top: 2px;
  color: currentColor;
  opacity: 0.7;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.site-nav a,
.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 750;
}

.site-nav a {
  padding: 9px 12px;
  opacity: 0.82;
}

.site-nav a:hover {
  opacity: 1;
  background: rgba(183, 154, 100, 0.14);
}

.header-action {
  padding: 9px 15px;
  color: var(--lacquer);
  background: var(--brass);
}

.hero {
  position: relative;
  min-height: 90svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: end;
  gap: 44px;
  padding: 132px 6vw 62px;
  color: var(--rice);
  background: var(--lacquer);
}

.hero-image,
.hero-tint,
.hero-edge {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-tint {
  background:
    linear-gradient(90deg, rgba(15, 21, 19, 0.94) 0%, rgba(15, 21, 19, 0.78) 34%, rgba(15, 21, 19, 0.24) 70%),
    linear-gradient(0deg, rgba(15, 21, 19, 0.88) 0%, rgba(15, 21, 19, 0.08) 46%);
}

.hero-edge {
  pointer-events: none;
  border: 18px solid rgba(251, 248, 241, 0.06);
}

.hero-content,
.hero-dossier {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1,
.promise-copy h2,
.section-heading h2,
.journey-intro h2,
.story-copy h2,
.aftercare-copy h2,
.trust-copy h2,
.cta-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  font-size: 6.4rem;
}

.hero-line {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--jade-soft);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.18;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(251, 248, 241, 0.82);
  font-size: 1.08rem;
}

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

.button {
  border: 1px solid currentColor;
  padding: 12px 18px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--lacquer);
  border-color: var(--brass);
  background: var(--brass);
}

.button-secondary {
  color: currentColor;
  border-color: rgba(251, 248, 241, 0.48);
  background: rgba(251, 248, 241, 0.08);
}

.site-header.is-scrolled .button-secondary,
.cta-section .button-secondary {
  border-color: var(--line-dark);
  background: rgba(73, 105, 94, 0.08);
}

.hero-dossier {
  align-self: end;
  display: grid;
  gap: 0;
  border: 1px solid rgba(251, 248, 241, 0.2);
  border-radius: 8px;
  background: rgba(15, 21, 19, 0.5);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.dossier-label,
.hero-dossier div {
  margin: 0;
  padding: 18px;
}

.dossier-label {
  color: var(--brass);
  border-bottom: 1px solid rgba(251, 248, 241, 0.14);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-dossier div + div {
  border-top: 1px solid rgba(251, 248, 241, 0.14);
}

.hero-dossier span {
  display: block;
  color: rgba(251, 248, 241, 0.58);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero-dossier strong {
  display: block;
  margin-top: 4px;
  color: var(--rice);
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.25;
}

.promise-section,
.role-section,
.journey-section,
.trust-section,
.cta-section {
  padding: 110px 6vw;
}

.promise-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 72px;
  align-items: start;
  background: var(--rice);
}

.promise-copy h2 {
  max-width: 850px;
  font-size: 4.6rem;
}

.promise-text {
  display: grid;
  gap: 20px;
  padding-top: 36px;
  color: rgba(23, 23, 22, 0.78);
  font-size: 1.06rem;
}

.promise-text p {
  margin: 0;
}

.role-section {
  background: linear-gradient(90deg, var(--porcelain), var(--ivory));
}

.section-heading,
.journey-intro {
  max-width: 880px;
  margin-bottom: 48px;
}

.section-heading h2,
.journey-intro h2,
.story-copy h2,
.aftercare-copy h2,
.trust-copy h2,
.cta-copy h2 {
  font-size: 4rem;
}

.section-heading p:last-child,
.journey-intro p:last-child,
.story-copy p,
.aftercare-copy p,
.trust-list p,
.cta-copy p {
  max-width: 680px;
  color: rgba(23, 23, 22, 0.72);
}

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

.role-panel {
  min-height: 420px;
  padding: 34px;
  border-radius: 8px;
  border: 1px solid var(--line-dark);
}

.role-positive {
  color: var(--rice);
  background: var(--jade);
}

.role-boundary {
  color: var(--rice);
  background: var(--lacquer);
}

.panel-index {
  margin: 0 0 54px;
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 4.8rem;
  line-height: 1;
}

.role-panel h3,
.concierge-grid h3,
.journey-detail h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.08;
}

.role-panel ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.role-panel li {
  position: relative;
  padding-left: 22px;
  color: rgba(251, 248, 241, 0.82);
}

.role-panel li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brass);
}

.journey-section {
  background: var(--rice);
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(320px, 1.08fr);
  gap: 34px;
  align-items: start;
}

.journey-map {
  position: sticky;
  top: 112px;
  display: grid;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(251, 248, 241, 0.78);
}

.journey-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  padding: 16px 20px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.journey-step:last-child {
  border-bottom: 0;
}

.journey-step:hover,
.journey-step.is-active {
  color: var(--rice);
  background: var(--lacquer);
}

.journey-step span {
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.journey-step strong {
  font-weight: 750;
}

.journey-detail {
  min-height: 486px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 46px;
  border-radius: 8px;
  color: var(--rice);
  background:
    linear-gradient(0deg, rgba(15, 21, 19, 0.86), rgba(15, 21, 19, 0.5)),
    url("/assets/img/process-planning.png") center / cover;
  box-shadow: var(--shadow);
}

.detail-meta {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.journey-detail h3 {
  max-width: 520px;
  font-size: 3rem;
}

.journey-detail p:last-child {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(251, 248, 241, 0.82);
}

.image-story,
.aftercare-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 0;
  align-items: stretch;
  min-height: 760px;
}

.story-media,
.aftercare-image {
  min-height: 560px;
}

.story-media img,
.aftercare-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy,
.aftercare-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 92px 6vw;
  background: var(--ivory);
}

.text-rail {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.text-rail p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.concierge-section {
  padding: 118px 6vw;
  color: var(--rice);
  background:
    linear-gradient(90deg, rgba(73, 105, 94, 0.24) 1px, transparent 1px),
    var(--lacquer);
  background-size: 84px 84px;
}

.section-heading-dark p:last-child,
.section-heading-dark h2 {
  color: var(--rice);
}

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

.concierge-grid article {
  min-height: 330px;
  padding: 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.concierge-grid span {
  display: block;
  margin-bottom: 80px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.concierge-grid p {
  margin: 18px 0 0;
  color: rgba(251, 248, 241, 0.72);
}

.aftercare-section {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.aftercare-image {
  order: 2;
}

.aftercare-copy {
  order: 1;
  background: var(--porcelain);
}

blockquote {
  margin: 34px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line-dark);
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.22;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 54px;
  color: var(--rice);
  background: var(--jade);
}

.trust-copy h2,
.trust-list p {
  color: var(--rice);
}

.trust-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(251, 248, 241, 0.22);
}

.trust-list p {
  max-width: none;
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid rgba(251, 248, 241, 0.22);
}

.trust-list strong {
  color: var(--brass);
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
  background: var(--rice);
}

.cta-copy {
  max-width: 850px;
}

.cta-actions {
  justify-content: flex-end;
  min-width: 310px;
}

.cta-section .button-secondary {
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px 6vw;
  color: rgba(251, 248, 241, 0.72);
  background: var(--lacquer);
}

.footer-brand {
  color: var(--rice);
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-decoration: none;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 14px;
}

.site-footer nav a {
  text-decoration: none;
}

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

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

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

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-dossier {
    max-width: 620px;
  }

  .promise-section,
  .journey-layout,
  .trust-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

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

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .brand-role {
    display: none;
  }

  .header-action {
    padding: 9px 11px;
  }

  .hero {
    min-height: 88svh;
    padding: 118px 22px 42px;
  }

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

  .hero-line {
    font-size: 1.55rem;
  }

  .promise-section,
  .role-section,
  .journey-section,
  .trust-section,
  .cta-section,
  .concierge-section {
    padding: 78px 22px;
  }

  .promise-copy h2,
  .section-heading h2,
  .journey-intro h2,
  .story-copy h2,
  .aftercare-copy h2,
  .trust-copy h2,
  .cta-copy h2 {
    font-size: 3rem;
  }

  .role-grid,
  .image-story,
  .aftercare-section {
    grid-template-columns: 1fr;
  }

  .story-copy,
  .aftercare-copy {
    padding: 64px 22px;
  }

  .aftercare-image,
  .aftercare-copy {
    order: initial;
  }

  .story-media,
  .aftercare-image {
    min-height: 390px;
  }

  .journey-map {
    position: relative;
    top: auto;
  }

  .journey-detail {
    min-height: 420px;
    padding: 30px;
  }

  .journey-detail h3 {
    font-size: 2.45rem;
  }

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

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    white-space: normal;
    font-size: 1rem;
  }

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

  .hero-line {
    font-size: 1.32rem;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .role-panel {
    min-height: 0;
    padding: 26px;
  }

  .panel-index {
    margin-bottom: 32px;
    font-size: 3.8rem;
  }

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

  .concierge-grid article {
    min-height: 250px;
  }

  .concierge-grid span {
    margin-bottom: 42px;
  }

  .journey-step {
    grid-template-columns: 46px 1fr;
    min-height: 68px;
    padding: 14px 16px;
  }

  blockquote {
    font-size: 1.55rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

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