:root {
  --ivory: #f7f5f1;
  --stone: #e8e3db;
  --sand: #c4bbab;
  --espresso: #2b201a;
  --charcoal: #1a1a1a;
  --sea: #a9c1be;
  --bronze: #b88a5a;
  --white: #fffdf9;
  --muted: #6f655d;
  --line: rgba(43, 32, 26, 0.14);
  --shadow: 0 24px 70px rgba(43, 32, 26, 0.14);
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--espresso);
  font-family: "Hanken Grotesk", "Neue Haas Grotesk Text", Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--espresso);
  color: var(--ivory);
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 0 76px;
  background: rgba(247, 245, 241, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: min-height 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  box-shadow: 0 12px 40px rgba(43, 32, 26, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  height: 64px;
  overflow: hidden;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 46px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a,
.login-link {
  color: var(--charcoal);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible,
.legal-card a:hover,
.legal-card a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-dark {
  background: var(--espresso);
  color: var(--ivory);
}

.button-light {
  border-color: rgba(43, 32, 26, 0.35);
  background: rgba(255, 253, 249, 0.76);
}

.button-bronze {
  background: var(--bronze);
  color: var(--ivory);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--espresso);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 245, 241, 0.98) 0%, rgba(247, 245, 241, 0.88) 30%, rgba(247, 245, 241, 0.12) 68%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 48px));
  padding: 120px 0 84px 76px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #6d3f28;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 28px;
  font-size: clamp(4rem, 9vw, 8.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5vw, 5.5rem);
}

h3 {
  font-size: 20px;
  line-height: 1.15;
}

.hero-copy p:not(.eyebrow) {
  max-width: 440px;
  margin-bottom: 30px;
  color: #332923;
  font-size: 17px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.feature-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.feature-bar article {
  min-height: 150px;
  padding: 34px 42px;
  border-right: 1px solid var(--line);
}

.feature-bar article:last-child {
  border-right: 0;
}

.feature-bar .icon,
.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border: 1px solid rgba(184, 138, 90, 0.5);
  border-radius: 999px;
  color: #7b4d2f;
  font-size: 11px;
  font-weight: 800;
}

.feature-bar h2,
.feature-bar h3 {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
}

.feature-bar p,
.section p,
.site-footer p,
.site-footer a,
.site-footer label {
  color: var(--muted);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 76px;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 38px;
}

.home-landing .section-heading,
.home-landing .section-heading h2,
.home-landing .section-heading p,
.home-landing .shot-step,
.home-landing .shot-step h3,
.home-landing .shot-step p {
  text-align: center;
}

.home-landing .section-heading {
  margin-inline: auto;
}

.home-landing .shot-step {
  justify-self: center;
  max-width: 280px;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 34px;
}

.phone {
  position: relative;
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  border: 7px solid #25201c;
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.38);
  transform: translateX(-50%);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-step h3 {
  margin: 22px 0 8px;
  font-size: 17px;
}

.phone-step p {
  font-size: 14px;
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1.4fr);
  gap: 70px;
  align-items: center;
}

.stacked-phones {
  position: relative;
  min-height: 610px;
}

.phone.large {
  width: min(330px, 68vw);
}

.phone.offset {
  position: absolute;
  left: 205px;
  top: 90px;
  transform: rotate(-3deg);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.5);
}

.capability-grid article {
  min-height: 238px;
  padding: 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-grid article:nth-child(2n),
.capability-grid article:last-child {
  border-right: 0;
}

.capability-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.capability-grid a,
.route-copy a,
.record-copy a,
.journal-card a {
  color: #6d3f28;
  font-weight: 800;
}

.image-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--espresso);
  color: var(--ivory);
}

.image-card div {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
}

.image-card p,
.image-card a {
  color: rgba(247, 245, 241, 0.86);
}

.route-section {
  display: grid;
  grid-template-columns: 0.75fr 1.4fr;
  gap: 70px;
  align-items: center;
  background: linear-gradient(90deg, rgba(232, 227, 219, 0.45), rgba(247, 245, 241, 0));
}

.route-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline-card,
.record-panel,
.property-card,
.price-card,
.export-card,
.prepared-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 18px 50px rgba(43, 32, 26, 0.08);
}

.timeline-card {
  display: grid;
  gap: 7px;
  padding: 28px;
}

.timeline-card strong {
  font-size: 17px;
}

.timeline-card span,
.timeline-card small {
  color: var(--muted);
}

.map-line {
  height: 2px;
  border-top: 2px dashed rgba(184, 138, 90, 0.65);
}

.route-visual .shot-solo {
  max-width: 340px;
}

.home-landing {
  padding-top: 0;
}

.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.home-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px;
}

.home-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 44px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.66);
}

.home-bar span {
  min-height: 82px;
  padding: 28px 18px;
  border-right: 1px solid var(--line);
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
}

.home-bar span:last-child {
  border-right: 0;
}

.home-device-story,
.property-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.home-features-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 64px;
  align-items: center;
}

.home-features-intro {
  padding-top: 136px;
}

.home-features-visual {
  display: grid;
  gap: 34px;
}

.home-stack {
  position: relative;
  min-height: 840px;
}

.home-stack-card {
  position: absolute;
  margin: 0;
  width: min(230px, 26vw);
}

.home-stack-card img {
  width: 100%;
}

.home-stack-card.back-left {
  left: 6%;
  top: -4%;
  z-index: 1;
}

.home-stack-card.back-right {
  right: 8%;
  top: 2%;
  z-index: 1;
}

.home-stack-card.front-left {
  left: 14%;
  bottom: 8%;
  z-index: 2;
}

.home-stack-card.front-right {
  right: 14%;
  bottom: 2%;
  z-index: 2;
}

.home-features-copy {
  max-width: 430px;
  align-self: start;
  padding-top: 72px;
}

.home-features-copy h1,
.home-features-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 4.8vw, 5.2rem);
}

.home-features-copy p:not(.eyebrow) {
  max-width: 40ch;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 16px;
}

.home-feature-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
}

.home-feature-lines p {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.record-panel {
  min-height: 250px;
  padding: 34px;
}

.record-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.moving-section {
  background: var(--stone);
}

.move-flow {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr 80px 1fr;
  align-items: center;
  gap: 16px;
}

.move-flow div {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(43, 32, 26, 0.18);
  border-radius: 14px;
  background: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  text-align: center;
}

.move-flow span {
  height: 2px;
  background: linear-gradient(90deg, var(--bronze), transparent);
}

.property-grid {
  grid-template-columns: repeat(4, 1fr);
}

.property-card {
  min-height: 280px;
  padding: 32px;
}

.property-card span {
  color: var(--bronze);
  font-weight: 800;
}

.records-section {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 54px;
}

.export-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.export-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 36px;
}

.export-card h3 {
  margin-bottom: 10px;
}

.export-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.export-card img {
  aspect-ratio: 1.2;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 20px;
}

.matter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.matter-grid span {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.prepared-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.prepared-card {
  padding: 48px;
}

.prepared-card.dark {
  background: var(--espresso);
  color: var(--ivory);
}

.prepared-card.dark p {
  color: rgba(247, 245, 241, 0.72);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  min-height: 310px;
  padding: 38px;
}

.price-card.featured {
  background: var(--espresso);
  color: var(--ivory);
}

.price-card.featured p {
  color: rgba(247, 245, 241, 0.76);
}

.price {
  margin: 26px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  color: inherit;
}

.journal-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.journal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-card div {
  padding: 68px;
}

.final-cta {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--ivory);
  text-align: center;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(43, 32, 26, 0.34), rgba(43, 32, 26, 0.58)), url("/assets/journal-record.jpg") center/cover;
}

.final-cta div:last-child {
  position: relative;
  z-index: 1;
  padding: 52px 24px;
}

.final-cta h2 {
  margin-bottom: 12px;
}

.final-cta p {
  color: rgba(247, 245, 241, 0.84);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.7fr) 1.2fr;
  gap: 50px;
  padding: 70px 76px 36px;
  background: #181512;
  color: var(--ivory);
}

.site-footer img {
  width: 190px;
  margin-bottom: 22px;
}

.site-footer nav,
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer h2 {
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.newsletter div {
  display: flex;
  margin-top: 10px;
  border: 1px solid rgba(247, 245, 241, 0.26);
  border-radius: 8px;
  overflow: hidden;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  height: 48px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: var(--ivory);
}

.newsletter button {
  width: 56px;
  border: 0;
  background: var(--sand);
  color: var(--espresso);
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  margin: 30px 0 0;
  text-align: center;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.legal-page {
  min-height: 100vh;
  background: var(--ivory);
}

.legal-main {
  max-width: 920px;
  margin: 0 auto;
  padding: 90px 24px;
}

.legal-main h1 {
  font-size: clamp(3.2rem, 8vw, 6rem);
}

.legal-card {
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}

.legal-card section {
  padding: 34px;
  border-bottom: 1px solid var(--line);
}

.legal-card section:last-child {
  border-bottom: 0;
}

.legal-card h2 {
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

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

  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 49;
    display: none;
    flex-direction: column;
    gap: 1px;
    padding: 16px 24px 24px;
    background: rgba(247, 245, 241, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu.is-open {
    display: flex;
  }

  .mobile-menu a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 800;
    text-transform: uppercase;
  }

  .phone-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-bar,
  .home-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .route-section,
  .records-section,
  .split-showcase,
  .home-hero,
  .journal-card,
  .home-features-layout {
    grid-template-columns: 1fr;
  }

  .route-visual {
    grid-template-columns: 1fr;
  }

  .map-line {
    height: 60px;
    width: 2px;
    margin-left: 30px;
    border-top: 0;
    border-left: 2px dashed rgba(184, 138, 90, 0.65);
  }

  .home-device-story,
  .property-grid,
  .export-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-stack {
    min-height: 720px;
  }

  .home-stack-card {
    width: min(220px, 34vw);
  }

  .move-flow {
    grid-template-columns: 1fr;
  }

  .move-flow span {
    width: 2px;
    height: 54px;
    justify-self: center;
  }

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

@media (max-width: 720px) {
  .brand img {
    width: 178px;
  }

  .hero {
    min-height: 720px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(247, 245, 241, 0.94) 0%, rgba(247, 245, 241, 0.84) 42%, rgba(247, 245, 241, 0.1) 100%);
  }

  .hero-copy {
    width: 100%;
    padding: 78px 24px 42px;
  }

  .section {
    padding: 56px 24px;
  }

  .feature-bar,
  .phone-grid,
  .home-bar,
  .home-device-story,
  .property-grid,
  .export-cards,
  .matter-grid,
  .prepared-section,
  .pricing-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-bar article,
  .home-bar span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .phone-step {
    max-width: 280px;
    margin: 0 auto;
  }

  .stacked-phones {
    min-height: 820px;
  }

  .phone.large,
  .phone.offset {
    position: relative;
    left: auto;
    top: auto;
    width: min(310px, 82vw);
    margin: 0 auto 28px;
    transform: none;
  }

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

  .capability-grid article,
  .capability-grid article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .home-hero > div,
  .journal-card div {
    padding: 34px 24px;
  }

  .home-stack {
    min-height: 980px;
  }

  .home-stack-card {
    width: min(214px, 58vw);
  }

  .home-stack-card.back-left {
    left: 0;
    top: -4%;
  }

  .home-stack-card.back-right {
    right: 0;
    top: 4%;
  }

  .home-stack-card.front-left {
    left: 8%;
    bottom: 16%;
  }

  .home-stack-card.front-right {
    right: 8%;
    bottom: 0;
  }

  .home-feature-lines {
    grid-template-columns: 1fr;
  }

  .matter-grid span,
  .move-flow div {
    min-height: 92px;
    font-size: 23px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* App Store device screenshots (already framed in-image) */
.shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  filter: drop-shadow(0 24px 50px rgba(43, 32, 26, 0.16));
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 30px;
  align-items: start;
}

.shot-grid.is-home {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* Downward pyramid: 3 cards on top, 2 centered below */
.shot-grid.is-pyramid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.shot-grid.is-pyramid > .shot-step {
  grid-column: span 2;
}

.shot-grid.is-pyramid > .shot-step:nth-child(4) {
  grid-column: 2 / span 2;
}

.shot-grid.is-pyramid > .shot-step:nth-child(5) {
  grid-column: 4 / span 2;
}

.shot-step h3 {
  margin: 18px 0 6px;
  font-size: 17px;
}

.shot-step p {
  font-size: 14px;
  color: var(--muted, #6f655b);
}

.shot-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: center;
}

.shot-duo .shot:nth-child(2) {
  margin-top: 46px;
}

.shot-solo {
  max-width: 320px;
  margin: 0 auto;
}

/* Home teaser band on the travel landing page */
.home-teaser {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  padding: 64px 6vw;
  margin: 0 6vw 90px;
  border-radius: 28px;
  background: var(--espresso);
  color: var(--ivory);
}

.home-teaser .shot-solo {
  max-width: 260px;
}

.home-teaser h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 14px 0 16px;
}

.home-teaser p {
  max-width: 46ch;
  opacity: 0.86;
}

.home-teaser .button {
  margin-top: 22px;
}

.legal-card section ul {
  margin: 10px 0 0 18px;
  padding: 0;
}

.legal-card section li {
  margin-bottom: 7px;
}

.legal-card section p + p {
  margin-top: 12px;
}

@media (max-width: 1160px) {
  .shot-grid.is-home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .shot-grid,
  .shot-grid.is-home,
  .shot-grid.is-pyramid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .shot-grid.is-pyramid > .shot-step,
  .shot-grid.is-pyramid > .shot-step:nth-child(4),
  .shot-grid.is-pyramid > .shot-step:nth-child(5) {
    grid-column: auto;
  }
  .home-teaser {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .home-teaser .shot-solo {
    margin: 0 auto 24px;
  }
}
