:root {
  color-scheme: light;
  --paper: #f4eee7;
  --paper-light: #fbf8f3;
  --ink: #181410;
  --muted: #756b62;
  --line: #d2c7bd;
  --clay: #a64f2c;
  --sage: #71806c;
  --display: Georgia, "Times New Roman", serif;
  --body: "Trebuchet MS", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(
      circle at 73% 6%,
      rgb(255 255 255 / 80%),
      transparent 34rem
    ),
    var(--paper);
  color: var(--ink);
  font-family: var(--body);
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 5px;
}

.masthead {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 18px clamp(24px, 5vw, 76px);
}

.house-mark {
  display: grid;
  width: max-content;
  text-decoration: none;
  line-height: 0.8;
}

.house-mark strong {
  font-family: var(--display);
  font-size: 2.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
}

.house-mark span {
  margin-top: 0.7rem;
  margin-left: 0.35rem;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.52em;
}

.masthead p {
  display: grid;
  margin: 0;
  justify-items: end;
  gap: 0.35rem;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.masthead b {
  color: var(--clay);
}

.masthead span {
  color: var(--muted);
}

.intro {
  display: grid;
  min-height: calc(100svh - 94px);
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  overflow: hidden;
  padding: clamp(70px, 9vw, 130px) clamp(24px, 5vw, 76px);
}

.intro-copy {
  position: relative;
  z-index: 1;
  max-width: 670px;
}

.eyebrow {
  margin: 0 0 1.7rem;
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.7rem, 8.5vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.lede {
  max-width: 560px;
  margin: clamp(2.5rem, 5vw, 4.7rem) 0 0;
  color: #554c45;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  margin-top: 2.5rem;
}

.actions a {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  gap: 2.4rem;
  background: var(--ink);
  color: var(--paper-light);
  padding: 0 1.55rem;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.primary:hover {
  background: var(--clay);
  transform: translateY(-2px);
}

.secondary {
  border-bottom: 1px solid var(--ink);
  padding: 0.85rem 0;
}

.showcase {
  position: relative;
  min-height: min(68vw, 760px);
}

.showcase::before {
  position: absolute;
  inset: 5% 2% 0 18%;
  border: 1px solid rgb(166 79 44 / 24%);
  content: "";
  transform: rotate(4deg);
}

.showcase figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #d7cdc2;
  box-shadow: 0 34px 90px rgb(54 38 27 / 19%);
}

.showcase img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.showcase-main {
  inset: 0 10% 6% 4%;
}

.showcase-main img {
  object-position: 68% 54%;
}

.showcase-accent {
  right: 0;
  bottom: 0;
  width: 39%;
  height: 42%;
  border: 9px solid var(--paper);
}

.showcase-accent img {
  object-position: 56% 50%;
}

.showcase figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  background: linear-gradient(transparent, rgb(19 14 10 / 68%));
  color: white;
  padding: 3rem 1.25rem 1.1rem;
}

.showcase figcaption span {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
}

.showcase figcaption strong {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  font-weight: 400;
}

.showcase-accent figcaption strong {
  font-size: clamp(1.2rem, 2vw, 2rem);
}

.demo-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}

.demo-map article {
  min-height: 350px;
  padding: clamp(2rem, 4vw, 4.5rem);
}

.demo-map article + article {
  border-left: 1px solid var(--line);
}

.demo-map article > span {
  color: var(--clay);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.demo-map h2 {
  max-width: 10ch;
  margin: 3rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 400;
  line-height: 0.98;
}

.demo-map p {
  max-width: 34ch;
  min-height: 4.5em;
  color: var(--muted);
  line-height: 1.55;
}

.demo-map a {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
  text-transform: uppercase;
}

.article-links {
  display: flex;
  gap: 1.5rem;
}

.demo-footer {
  display: grid;
  min-height: 180px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2.2rem 4rem;
  border-top: 1px solid var(--line);
  padding: 2rem clamp(24px, 5vw, 76px);
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-note {
  display: grid;
  gap: 0.55rem;
}

.footer-note span {
  color: var(--ink);
}

.footer-note p {
  margin: 0;
}

.compliance-nav {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}

.compliance-nav a {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-underline-offset: 5px;
}

.payment-band {
  display: grid;
  justify-items: end;
  gap: 0.8rem;
}

.payment-band img {
  width: min(100%, 429px);
  height: auto;
  opacity: 0.82;
}

@media (max-width: 900px) {
  .intro {
    grid-template-columns: 1fr;
  }

  .showcase {
    min-height: min(115vw, 720px);
  }

  .demo-map {
    grid-template-columns: 1fr;
  }

  .demo-map article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .masthead {
    min-height: 82px;
  }

  .house-mark strong {
    font-size: 2rem;
  }

  .masthead p span {
    display: none;
  }

  .intro {
    min-height: auto;
    padding-top: 64px;
  }

  h1 {
    font-size: clamp(4rem, 21vw, 6rem);
  }

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

  .showcase {
    min-height: 128vw;
  }

  .showcase-main {
    right: 5%;
  }

  .demo-map article {
    min-height: 300px;
  }

  .demo-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .payment-band {
    justify-items: start;
  }
}

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

  .primary {
    transition: none;
  }
}
