@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/CormorantGaramond-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/CormorantGaramond-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("fonts/Lora-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("fonts/Lora-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("fonts/SourceSans3-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("fonts/SourceSans3-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #30271f;
  --paper: #f4ede1;
  --ivory: #fffaf1;
  --sage: #65735f;
  --sage-deep: #3d493b;
  --saffron: #b8753c;
  --saffron-deep: #8d5428;
  --night: #17140f;
  --line: #d5c3aa;
  --muted: #70665c;
  --shadow: 0 22px 52px rgba(52, 37, 24, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

body.dialog-open {
  overflow: hidden;
}

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

h1,
h2,
h3,
.serif,
.price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(58px, 7.2vw, 96px);
  line-height: 0.98;
  margin: 12px 0 22px;
}

h2 {
  font-size: clamp(40px, 4.7vw, 67px);
  line-height: 1.02;
  margin: 9px 0 22px;
}

h3 {
  font-size: 28px;
  line-height: 1.1;
  margin: 8px 0 11px;
}

p {
  max-width: 68ch;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-160%);
  background: #fff;
  color: var(--ink);
  padding: 10px 14px;
}

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

.inner {
  width: min(1160px, 90vw);
  margin: 0 auto;
}

.narrow {
  width: min(780px, 88vw);
  margin: 0 auto;
}

.kicker {
  color: var(--saffron);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero {
  min-height: 94vh;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 13, 10, 0.97) 0%, rgba(15, 13, 10, 0.82) 45%, rgba(15, 13, 10, 0.08) 76%),
    url("assets/bs_identity_v1_calibration_hero.png") 68% center / cover;
}

.hero-copy {
  max-width: 670px;
  padding: 88px 0 100px;
}

.hero .lead {
  color: #f4eadc;
  font: 400 clamp(22px, 2.4vw, 30px) / 1.42 "Lora", Georgia, serif;
}

.hero .body-copy {
  color: #ece1d3;
  max-width: 58ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 29px;
}

.cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--saffron);
  border-radius: 4px;
  background: var(--saffron);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.cta:hover,
.cta:focus-visible {
  background: var(--saffron-deep);
  border-color: var(--saffron-deep);
  transform: translateY(-1px);
}

.cta.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}

.cta.secondary:hover,
.cta.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.cta.paper-secondary {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.cta[aria-disabled="true"] {
  opacity: 0.72;
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 24px;
  color: #dfd2c1;
  font-size: 14px;
}

section {
  padding: 88px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 66px;
  align-items: center;
}

.portrait {
  aspect-ratio: 4 / 5;
  max-height: 680px;
  box-shadow: var(--shadow);
}

.sage {
  background: var(--sage);
  color: #fff;
}

.night {
  background: var(--night);
  color: #fff;
}

.rhythm {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.rhythm article {
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  padding: 24px 0 0;
}

.step-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #d9ab78;
  border-radius: 50%;
  color: #f3c99b;
  font-weight: 600;
}

.journey-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(278px, 31%);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px 1px 24px;
}

.journey-card {
  scroll-snap-align: start;
  background: var(--ivory);
  border: 1px solid var(--line);
}

.journey-card img {
  aspect-ratio: 4 / 5;
}

.journey-card div {
  padding: 22px;
}

.journey-card span {
  color: var(--saffron-deep);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.preview-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 30px;
}

.preview-intro p {
  color: #d8cec0;
}

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

.preview-item {
  margin: 0;
  background: #f9f1e4;
  color: var(--ink);
  border: 1px solid #4a443a;
}

.preview-button {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: #111;
  cursor: zoom-in;
}

.preview-button img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.preview-item figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
}

.meet-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.meet-main {
  min-height: 690px;
}

.meet-main img {
  height: 100%;
}

.meet-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
  background: var(--ivory);
  border: 1px solid var(--line);
}

.scene-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.scene-strip img {
  aspect-ratio: 4 / 5;
}

.proof-band {
  background: #e7dac7;
}

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

.proof-item {
  min-height: 170px;
  padding: 26px 20px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-value {
  display: block;
  color: var(--saffron-deep);
  font: 600 46px / 1 "Cormorant Garamond", Georgia, serif;
  margin-bottom: 10px;
}

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

.receive-list li {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.receive-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.price {
  color: var(--saffron);
  font-size: 72px;
  line-height: 1;
  margin: 18px 0 10px;
}

.offer-note,
.small {
  color: var(--muted);
  font-size: 14px;
}

.offer-panel {
  border: 1px solid var(--line);
  background: var(--ivory);
  padding: 38px;
}

.checkout-status {
  margin-top: 18px;
  padding: 13px 15px;
  border-left: 3px solid var(--saffron);
  background: #f3e7d4;
  font-size: 14px;
}

.checkout-status[data-ready="true"] {
  border-left-color: var(--sage);
  background: #e5eee2;
}

.feedback-panel {
  background: var(--sage-deep);
  color: #fff;
}

.feedback-panel p {
  color: #e8e1d6;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 19px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.closing {
  min-height: 82vh;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 14, 11, 0.96), rgba(16, 14, 11, 0.68) 54%, rgba(16, 14, 11, 0.12)),
    url("assets/bs_identity_v1_closing.png") center / cover;
}

.closing-copy {
  max-width: 610px;
}

.closing-copy p:not(.price) {
  color: #ebe0d2;
}

footer {
  padding: 36px 0;
  background: #0e0d0b;
  color: #d8cec0;
  text-align: center;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 8px;
}

.mobile-cta {
  display: none;
}

.preview-dialog {
  width: min(1080px, 94vw);
  max-height: 94vh;
  border: 1px solid #6d6458;
  padding: 0;
  background: #111;
  color: #fff;
}

.preview-dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
}

.dialog-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
}

.dialog-close {
  width: 40px;
  height: 40px;
  border: 1px solid #777;
  background: transparent;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.preview-dialog img {
  max-height: calc(94vh - 64px);
  object-fit: contain;
}

.legal-page main {
  width: min(800px, 88vw);
  margin: 0 auto;
  padding: 62px 0 88px;
}

.legal-page h1 {
  font-size: clamp(48px, 7vw, 74px);
}

.legal-page h2 {
  font-size: 34px;
  margin-top: 42px;
}

.back-link {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--saffron-deep);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

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

@media (max-width: 800px) {
  body {
    padding-bottom: 72px;
  }

  section {
    padding: 64px 0;
  }

  .hero {
    min-height: 90vh;
    background-position: 62% center;
  }

  .hero-copy {
    max-width: 91%;
    padding: 70px 0 82px;
  }

  .split,
  .meet-grid,
  .rhythm {
    grid-template-columns: 1fr;
  }

  .journey-scroll {
    grid-auto-columns: 84%;
  }

  .preview-intro {
    display: block;
  }

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

  .meet-main {
    min-height: 540px;
  }

  .meet-copy,
  .offer-panel {
    padding: 30px;
  }

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

  .scene-strip img:last-child {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    background: #15130f;
    color: #fff;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.3);
  }

  .mobile-cta .cta {
    min-height: 44px;
    padding: 9px 14px;
    white-space: nowrap;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 55px;
  }

  h2 {
    font-size: 40px;
  }

  .cta-row .cta {
    width: 100%;
  }

  .micro-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

  .proof-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .scene-strip img:nth-child(n + 2) {
    display: none;
  }
}

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

  .cta {
    transition: none;
  }
}
