:root {
  --paper: #f2f2ef;
  --surface: #e9e9e5;
  --ink: #262626;
  --muted: #737373;
  --line: #cececa;
  --white: #ffffff;
  --max: 70rem;
  --pad: clamp(1.1rem, 4vw, 2.2rem);
  --font: "Futura PT", Futura, "Avenir Next", Avenir, "Century Gothic", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 10pt;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
a { font: inherit; }

a { color: inherit; }

button { color: inherit; }

h1,
h2,
p,
dl,
dd,
figure { margin: 0; }

h1,
h2 {
  font-size: 14pt;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 600; /* Futura PT Demi */
}

p,
dt,
dd,
a,
button {
  font-size: 10pt;
}

.shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.hero {
  background: var(--paper);
}

.hero__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #d9d9d5;
}

.hero__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.1rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.section-index,
.price__label,
.hero__availability,
.price__availability {
  color: var(--muted);
  font-weight: 500; /* Futura PT Medium */
  letter-spacing: 0.035em;
}

.hero__meta h1 { margin-top: 0.25rem; }

.hero__availability {
  white-space: nowrap;
  text-align: right;
}

.intro,
.visual,
.story,
.price,
.contact {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.section-index {
  margin-bottom: 1.4rem;
}

.intro__copy,
.story__grid,
.contact__inner {
  display: grid;
  gap: 1rem;
}

.intro__copy p,
.prose,
.contact__inner > div > p {
  color: #4e4e4e;
  font-weight: 400; /* Futura PT Book */
}

.intro__copy p { margin-top: 0.85rem; }

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.facts div {
  min-height: 4.3rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.facts div:nth-child(odd) {
  padding-right: 0.8rem;
  border-right: 1px solid var(--line);
}

.facts div:nth-child(even) { padding-left: 0.8rem; }

.facts dt {
  color: var(--muted);
  font-weight: 400;
}

.facts dd {
  margin-top: 0.15rem;
  font-weight: 500;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-head .section-index { margin: 0; }

.carousel {
  position: relative;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--surface);
  outline: none;
  touch-action: pan-y;
}

.carousel__viewport:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

.carousel__track {
  display: flex;
  width: 100%;
  transition: transform 520ms cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  display: grid;
  place-items: center;
  background: var(--surface);
}

.carousel__slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #efefec;
}

.carousel__slide--video {
  aspect-ratio: 3 / 4;
  padding: 0;
  background: #171717;
}

.video-frame {
  height: 100%;
  width: auto;
  max-width: 100%;
  aspect-ratio: 9 / 16;
  display: grid;
  place-items: center;
  background: #171717;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.carousel__controls {
  min-height: 3.6rem;
  display: grid;
  grid-template-columns: 2.9rem 1fr 2.9rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.carousel__counter {
  text-align: center;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.carousel__button {
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.carousel__button span {
  width: 0.72rem;
  height: 0.72rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.carousel__button--prev span { transform: rotate(-135deg); }
.carousel__button--next span { transform: rotate(45deg); }

.carousel__button:hover,
.carousel__button:focus-visible {
  background: rgba(0, 0, 0, 0.05);
}

.story__grid h2,
.contact__inner h2 { max-width: 25rem; }

.prose {
  display: grid;
  gap: 1rem;
}

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

.price__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--ink);
}

.price__value {
  margin-top: 0.2rem;
  font-size: 14pt;
}

.price__copy {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  color: #4e4e4e;
}

.price__included {
  display: grid;
  gap: 0.55rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.price__included span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 10pt;
}

.price__included span::before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}

.price__action {
  margin-top: 1.25rem;
}

.contact__inner > div > p { margin-top: 0.85rem; }

.contact__actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.45rem;
}

.button {
  min-height: 3.25rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
}

.button--secondary {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.copy-status {
  min-height: 1.4em;
  color: var(--muted);
  text-align: center;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  padding-bottom: calc(1.2rem + env(safe-area-inset-bottom));
  color: var(--muted);
}

@media (min-width: 44rem) {
  body { font-size: 11pt; }

  p,
  dt,
  dd,
  a,
  button { font-size: 11pt; }

  .hero__meta { padding-top: 1.4rem; padding-bottom: 1.4rem; }

  .intro,
  .visual,
  .story,
  .price,
  .contact {
    padding-top: 4.6rem;
    padding-bottom: 4.6rem;
  }

  .intro {
    display: grid;
    grid-template-columns: 0.75fr 1.65fr;
    column-gap: 3rem;
  }

  .intro .section-index { grid-column: 1; }
  .intro__copy { grid-column: 2; grid-row: 1 / span 2; }
  .facts { grid-column: 1 / -1; margin-top: 3rem; grid-template-columns: repeat(4, 1fr); }
  .facts div { border-right: 1px solid var(--line); }
  .facts div:nth-child(even) { padding-left: 0.8rem; }
  .facts div:last-child { border-right: 0; }

  .carousel {
    width: min(100%, 48rem);
    margin-inline: auto;
  }

  .carousel__slide img,
  .carousel__slide--video {
    aspect-ratio: 4 / 5;
  }


  .story__grid,
  .contact__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
    gap: 4rem;
  }

.contact__actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.45rem;
}

.contact__actions img {
  width: 40px !important;
  height: 40px !important;
  max-width: none;
  object-fit: contain;
  flex: 0 0 40px;
}

@media (min-width: 64rem) {
  body { font-size: 12pt; }

  p,
  dt,
  dd,
  a,
  button { font-size: 12pt; }

  .eyebrow,
  .section-index,
  .price__label,
  .hero__availability,
  .price__availability,
  .carousel__counter,
  .price__included span,
  .copy-status { font-size: 10pt; }

  .hero__image {
    max-height: 44rem;
    object-fit: cover;
  }
}

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