
:root {
  --paper: #f7f2e9;
  --paper-soft: #fcfaf6;
  --paper-deep: #e8ddcf;
  --ink: #1d1f1a;
  --muted: #686961;
  --olive: #586548;
  --olive-dark: #48523e;
  --line: rgba(60, 61, 51, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-soft);
  font-family: "Inter", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 84px;
  padding: 0 clamp(22px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(252,250,246,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: 128px;
  display: block;
}

.desktop-nav {
  display: flex;
  gap: 38px;
  align-items: center;
  font-size: 14px;
}

.desktop-nav a {
  padding: 32px 0 28px;
  position: relative;
}

.desktop-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  background: var(--olive);
}

.header-cta,
.primary-cta,
.mobile-menu-cta {
  background: var(--olive);
  color: #fff;
}

.header-cta {
  justify-self: end;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.mobile-menu-toggle,
.mobile-menu-panel,
.mobile-menu-backdrop {
  display: none;
}

/* HERO */
.sales-hero {
  position: relative;
  min-height: calc(100vh - 84px);
  min-height: calc(100dvh - 84px);
  padding: 72px clamp(24px, 7vw, 110px) 86px;
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(560px, 1.16fr);
  gap: clamp(46px, 7vw, 110px);
  align-items: start;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 10%, rgba(255,255,255,.86), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(88,101,72,.12), transparent 26%),
    linear-gradient(135deg, #fbf8f2 0%, #f0e9dd 55%, #e8dece 100%);
}

.sales-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(70,65,55,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70,65,55,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, rgba(0,0,0,.7), transparent 78%);
}

.eyebrow,
.mini-label,
.card-kicker {
  margin: 0 0 14px;
  color: var(--olive);
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero-copy,
.hero-media,
.final-cta-inner {
  position: relative;
  z-index: 2;
}

.hero-copy h1,
.section-copy h2,
.journal-card h3,
.section-heading h2,
.privacy-row h3,
.final-cta h2 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(72px, 7.6vw, 116px);
  line-height: .9;
  letter-spacing: -.055em;
}

.hero-lines {
  max-width: 610px;
  margin-top: 34px;
  padding-left: 20px;
  border-left: 1px solid rgba(88,101,72,.24);
}

.hero-lines p {
  margin: 0 0 12px;
  color: #494c45;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.45;
}

.hero-actions {
  margin-top: 34px;
}

.primary-cta {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.hero-actions p,
.purchase-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-media {
  min-height: 680px;
}

.hero-photo {
  position: absolute;
  right: 12px;
  top: 0;
  width: 62%;
  height: 62%;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(20,22,18,.10), rgba(20,22,18,.34)),
    url('assets/hero-image.jpg') center/cover no-repeat;
  box-shadow: 0 32px 64px rgba(60,54,43,.18);
  animation: floatSlow 9s ease-in-out infinite;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.0) 0%, rgba(255,255,255,.06) 100%);
}

.hero-journal-card {
  position: absolute;
  left: 0;
  bottom: 16px;
  width: min(84%, 640px);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: 0 34px 72px rgba(65,58,45,.16);
  backdrop-filter: blur(14px);
  animation: floatSlow 10s ease-in-out infinite reverse;
}

.card-top {
  height: 62px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.card-top p,
.card-top > span {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.card-top p {
  justify-self: center;
}

.card-dots,
.topbar-dots {
  display: flex;
  gap: 7px;
}

.card-dots span,
.topbar-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(88,101,72,.36);
}

.card-body {
  min-height: 430px;
  display: grid;
  grid-template-columns: 190px 1fr;
}

.body-sidebar {
  padding: 24px 16px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: start;
  gap: 9px;
}

.body-sidebar span {
  padding: 11px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 12px;
}

.body-sidebar span.active {
  color: var(--olive-dark);
  background: rgba(88,101,72,.11);
}

.body-panel {
  padding: 28px;
}

.body-panel h2 {
  margin: 12px 0 22px;
  font-family: "Instrument Serif", serif;
  font-size: clamp(38px, 3vw, 52px);
  font-weight: 400;
  line-height: .95;
}

.field-line {
  height: 12px;
  width: 100%;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(88,101,72,.15);
}

.field-line.medium { width: 78%; }
.field-line.short { width: 56%; }

.reflection-box {
  height: 120px;
  margin-top: 26px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(88,101,72,.05), rgba(88,101,72,.11)),
    #f0e7db;
}

.floating-note {
  position: absolute;
  padding: 16px 16px 18px;
  width: 200px;
  border-radius: 18px;
  background: rgba(255,253,248,.86);
  border: 1px solid rgba(60,61,51,.08);
  box-shadow: 0 18px 36px rgba(65,58,45,.10);
  backdrop-filter: blur(12px);
}

.floating-note span {
  display: block;
  margin-bottom: 18px;
  color: var(--olive);
  font-size: 10px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.floating-note p {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: 23px;
  line-height: 1.06;
}

.note-left {
  left: 12px;
  top: 56px;
  transform: rotate(-7deg);
  animation: floatQuick 6.4s ease-in-out infinite;
}

.note-right {
  right: -8px;
  bottom: 84px;
  transform: rotate(8deg);
  animation: floatQuick 7s ease-in-out infinite reverse;
}

.hero-badge {
  position: absolute;
  right: 62px;
  top: 36px;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--olive);
  color: #fff;
  box-shadow: 0 16px 34px rgba(72,82,62,.22);
  animation: pulseSoft 5s ease-in-out infinite;
}

.hero-badge strong {
  font-family: "Instrument Serif", serif;
  font-size: 34px;
  line-height: 1;
}

.hero-badge span {
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* SECTION 2 */
.inside-section {
  padding: 11vh clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(560px, 1.32fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
  background:
    linear-gradient(180deg, #f8f3eb 0%, #eee5d8 100%);
}

.section-copy h2 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(50px, 5vw, 78px);
  line-height: .97;
  letter-spacing: -.045em;
}

.section-copy h2 span {
  color: var(--olive);
  font-style: italic;
}

.digital-journal {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 28px 56px rgba(65,58,45,.10);
  overflow: hidden;
}

.journal-topbar {
  height: 64px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.journal-topbar p,
.journal-topbar > span {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.journal-topbar p {
  justify-self: center;
}

.journal-layout {
  min-height: 560px;
  display: grid;
  grid-template-columns: 220px 1fr;
}

.journal-tabs {
  padding: 22px 14px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: start;
  gap: 8px;
}

.journal-tabs button {
  border: 0;
  padding: 12px 13px;
  border-radius: 14px;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}

.journal-tabs button.active {
  background: rgba(88,101,72,.11);
  color: var(--olive-dark);
}

.journal-cards {
  position: relative;
  min-height: 560px;
  padding: 26px;
}

.journal-card {
  position: absolute;
  inset: 26px;
  padding: 34px;
  border-radius: 24px;
  background: #fcfaf6;
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}

.journal-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.journal-card h3 {
  margin: 14px 0 12px;
  font-size: clamp(38px, 3vw, 52px);
  line-height: .98;
}

.journal-card > p:not(.card-kicker) {
  max-width: 520px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.mock-field {
  min-height: 82px;
  padding: 18px;
  margin-bottom: 14px;
  border-radius: 18px;
  background: #eee7dc;
  color: #625f58;
  font-size: 13px;
}

.mock-field.light {
  background: #f3ede5;
}

.journal-controls {
  padding: 0 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.journal-dots {
  display: flex;
  gap: 8px;
}

.journal-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(88,101,72,.20);
  cursor: pointer;
}

.journal-dots button.active {
  background: var(--olive);
}

.play-toggle {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.70);
  color: var(--olive-dark);
  cursor: pointer;
  font-size: 11px;
}

/* PRIVACY */
.privacy-section {
  padding: 11vh clamp(24px, 7vw, 110px);
  background: var(--paper-soft);
}

.section-heading.centered {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 76px);
  line-height: .97;
  letter-spacing: -.045em;
}

.privacy-list {
  border-top: 1px solid var(--line);
}

.privacy-row {
  display: grid;
  grid-template-columns: 60px minmax(240px, .8fr) minmax(320px, 1.25fr);
  gap: clamp(24px, 4vw, 64px);
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line);
}

.privacy-row > span {
  color: var(--olive);
  font-size: 11px;
  letter-spacing: .08em;
}

.privacy-row h3 {
  margin: 0;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.02;
}

.privacy-row p {
  margin: 2px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* FINAL CTA */
.final-cta {
  position: relative;
  min-height: 86vh;
  min-height: 86dvh;
  padding: 76px 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #ece2d4;
}

.cta-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24,27,22,.22), rgba(24,27,22,.48)),
    url('assets/hero-image.jpg') center/cover no-repeat;
  transform: scale(1.06);
  animation: slowZoom 16s ease-in-out infinite alternate;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.14), transparent 32%),
    linear-gradient(180deg, rgba(247,242,233,.20), rgba(40,43,36,.26));
}

.final-cta-inner {
  max-width: 880px;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 34px;
  background: rgba(252,250,246,.16);
  backdrop-filter: blur(18px);
  text-align: center;
  color: #fff;
  box-shadow: 0 30px 70px rgba(28,31,24,.16);
}

.final-cta .eyebrow {
  color: rgba(255,255,255,.82);
}

.final-cta h2 {
  margin: 0 auto;
  max-width: 780px;
  font-size: clamp(56px, 6vw, 96px);
  line-height: .93;
  letter-spacing: -.05em;
}

.final-subheading {
  max-width: 620px;
  margin: 24px auto 0;
  color: rgba(255,255,255,.84);
  font-size: 16px;
  line-height: 1.7;
}

.cta-actions {
  margin-top: 32px;
}

.final-cta .purchase-note {
  color: rgba(255,255,255,.76);
}

/* FOOTER */
.site-footer {
  padding: 38px clamp(24px, 6vw, 96px) 46px;
  border-top: 1px solid var(--line);
  background: #ece3d6;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  align-items: start;
}

.site-footer img {
  width: 126px;
  display: block;
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 10px;
  font-size: 13px;
}

.footer-contact {
  justify-self: end;
}

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.insta-icon {
  width: 15px;
  height: 15px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
  position: relative;
}

.insta-icon::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1.3px solid currentColor;
  border-radius: 50%;
}

.insta-icon::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 2px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
}

/* MOTION */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes floatQuick {
  0%, 100% { transform: translateY(0px) rotate(-6deg); }
  50% { transform: translateY(-8px) rotate(-6deg); }
}

@keyframes pulseSoft {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(3deg) scale(1.04); }
}

@keyframes slowZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.11); }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .sales-hero,
  .inside-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lines {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .hero-media {
    min-height: 620px;
  }

  .hero-photo {
    width: 70%;
  }

  .hero-journal-card {
    left: 50%;
    transform: translateX(-50%);
  }

  .section-copy {
    text-align: center;
  }

  .section-copy h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .privacy-row {
    grid-template-columns: 50px 1fr;
  }

  .privacy-row p {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .site-header {
    display: flex;
    justify-content: space-between;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255,255,255,.74);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-menu-toggle span {
    width: 15px;
    height: 1.5px;
    background: var(--ink);
  }

  .header-cta {
    margin-left: 10px;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 30;
    background: rgba(20,20,16,.42);
    backdrop-filter: blur(3px);
  }

  .mobile-menu-backdrop.is-open {
    display: block;
  }

  .mobile-menu-panel {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 31;
    width: min(86vw, 360px);
    height: 100dvh;
    padding: 24px;
    background: #f6f0e6;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .3s ease;
  }

  .mobile-menu-panel.is-open {
    transform: translateX(0);
  }

  .mobile-menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--olive);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .mobile-menu-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(88,101,72,.10);
    font-size: 25px;
  }

  .mobile-menu-links {
    display: grid;
    margin-top: 28px;
  }

  .mobile-menu-links a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: "Instrument Serif", serif;
    font-size: 34px;
  }

  .mobile-menu-cta {
    margin-top: auto;
    min-height: 48px;
    border-radius: 999px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  body.menu-open { overflow: hidden; }

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

  .footer-contact {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 72px;
    padding: 0 18px;
  }

  .brand img {
    width: 108px;
  }

  .header-cta {
    display: none;
  }

  .sales-hero {
    min-height: auto;
    padding: 58px 18px 54px;
    gap: 36px;
  }

  .sales-hero::before {
    background-size: 34px 34px;
  }

  .hero-copy h1 {
    font-size: clamp(56px, 17vw, 78px);
  }

  .hero-lines {
    margin-top: 26px;
    padding-left: 14px;
  }

  .hero-lines p {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .hero-media {
    min-height: 440px;
  }

  .hero-photo {
    width: 74%;
    height: 48%;
    right: 4px;
    border-radius: 22px;
  }

  .floating-note {
    width: 138px;
    padding: 12px;
    border-radius: 14px;
  }

  .floating-note span {
    margin-bottom: 10px;
  }

  .floating-note p {
    font-size: 16px;
  }

  .note-left {
    left: -2px;
    top: 12px;
  }

  .note-right {
    right: -4px;
    bottom: 52px;
  }

  .hero-badge {
    width: 78px;
    height: 78px;
    right: 22px;
    top: 16px;
  }

  .hero-badge strong {
    font-size: 25px;
  }

  .hero-badge span {
    font-size: 9px;
  }

  .hero-journal-card {
    width: 100%;
    left: 0;
    bottom: 0;
    transform: none;
    border-radius: 22px;
  }

  .card-top {
    height: 52px;
    padding: 0 14px;
  }

  .card-body {
    min-height: 0;
    display: block;
  }

  .body-sidebar {
    padding: 12px;
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .body-sidebar span {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 9px 11px;
  }

  .body-panel {
    padding: 20px 18px;
  }

  .body-panel h2 {
    font-size: 32px;
  }

  .reflection-box {
    height: 86px;
  }

  .inside-section,
  .privacy-section {
    padding: 74px 18px;
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .digital-journal {
    border-radius: 22px;
  }

  .journal-topbar {
    height: 54px;
    padding: 0 14px;
  }

  .journal-layout {
    min-height: 0;
    display: block;
  }

  .journal-tabs {
    padding: 12px;
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .journal-tabs button {
    flex: 0 0 auto;
    padding: 9px 11px;
    white-space: nowrap;
    font-size: 11px;
  }

  .journal-cards {
    min-height: 400px;
    padding: 14px;
  }

  .journal-card {
    inset: 14px;
    padding: 22px 18px;
  }

  .journal-card h3 {
    font-size: 34px;
  }

  .privacy-row {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .privacy-row h3 {
    font-size: 25px;
  }

  .privacy-row p {
    font-size: 13px;
  }

  .final-cta {
    min-height: 72vh;
  min-height: 72dvh;
    padding: 64px 18px;
  }

  .final-cta-inner {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .final-cta h2 {
    font-size: clamp(44px, 14vw, 66px);
  }

  .final-subheading {
    font-size: 14px;
  }

  .site-footer {
    padding: 30px 20px 38px;
  }
}


/* =========================
   V4 HERO + FINAL CTA REFINEMENTS
========================= */
.hero-copy .eyebrow {
  display: none;
}

.hero-copy h1 {
  max-width: 720px;
}

.hero-lines {
  max-width: 640px;
  margin-top: 30px;
  padding: 18px 0 0 20px;
  border-left: 1px solid rgba(88,101,72,.24);
}

.hero-lines p {
  font-size: clamp(18px, 1.42vw, 22px);
  letter-spacing: -.01em;
}

.hero-lines em {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 1.08em;
  color: var(--olive-dark);
}

.hero-media {
  min-height: 720px;
}

.hero-photo-frame {
  position: absolute;
  right: 0;
  top: 14px;
  width: 72%;
  height: 66%;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 34px 70px rgba(60,54,43,.18);
  z-index: 1;
}

.hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(20,22,18,.10), rgba(20,22,18,.34)),
    url('assets/hero-image.jpg') center/cover no-repeat;
  animation: floatSlow 9s ease-in-out infinite;
}

.hero-photo-caption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(248,244,236,.72);
  backdrop-filter: blur(10px);
  color: var(--olive-dark);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-journal-card {
  bottom: 0;
  width: min(82%, 620px);
  z-index: 3;
}

.note-left {
  left: -2px;
  top: 76px;
}

.note-right {
  right: 10px;
  bottom: 112px;
}

.hero-badge {
  right: 42px;
  top: 46px;
  z-index: 4;
}

.final-cta {
  min-height: 92vh;
  min-height: 92dvh;
}

.cta-photo {
  background:
    linear-gradient(180deg, rgba(24,27,22,.18), rgba(24,27,22,.38)),
    url('assets/hero-image.jpg') center center / cover no-repeat;
  filter: saturate(1.02);
}

.cta-photo-tag {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 2;
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(252,250,246,.22);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.final-cta-inner {
  max-width: 760px;
  background: rgba(252,250,246,.20);
}

.final-cta h2 {
  max-width: 700px;
}

@media (max-width: 1100px) {
  .hero-media {
    min-height: 640px;
  }

  .hero-photo-frame {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 720px);
    height: 58%;
  }

  .hero-journal-card {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .hero-lines {
    margin-top: 22px;
    padding-top: 14px;
    padding-left: 14px;
  }

  .hero-lines p {
    font-size: 16px;
  }

  .hero-media {
    min-height: 500px;
  }

  .hero-photo-frame {
    width: 100%;
    height: 46%;
    border-radius: 24px;
    top: 0;
  }

  .hero-photo {
    border-radius: 24px;
  }

  .hero-photo-caption {
    left: 14px;
    bottom: 12px;
    padding: 8px 11px;
    font-size: 9px;
  }

  .hero-journal-card {
    width: 100%;
    bottom: 0;
    border-radius: 22px;
  }

  .note-left {
    top: 8px;
    left: -4px;
  }

  .note-right {
    right: -4px;
    bottom: 54px;
  }

  .hero-badge {
    right: 18px;
    top: 18px;
  }

  .cta-photo-tag {
    left: 14px;
    top: 14px;
    padding: 8px 11px;
    font-size: 9px;
  }

  .final-cta {
    min-height: 76vh;
  min-height: 76dvh;
  }
}


/* =========================
   V5 — REAL STOCK IMAGE HERO + FINAL CTA
========================= */
.hero-photo {
  background:
    linear-gradient(180deg, rgba(15,18,14,.06), rgba(15,18,14,.28)),
    url('assets/journal-hero-real.jpg') center 42% / cover no-repeat;
  animation: heroPhotoDrift 14s ease-in-out infinite alternate;
}

.hero-photo-frame {
  width: 78%;
  height: 72%;
  right: -2%;
  top: 4px;
  border-radius: 42px;
}

.hero-journal-card {
  width: min(76%, 590px);
  left: -2%;
  bottom: 12px;
}

.hero-photo-caption {
  background: rgba(247,243,235,.82);
  color: var(--olive-dark);
}

.final-cta {
  min-height: 94vh;
  min-height: 94dvh;
}

.cta-photo {
  background:
    linear-gradient(90deg, rgba(14,18,13,.60) 0%, rgba(14,18,13,.34) 44%, rgba(14,18,13,.18) 100%),
    url('assets/journal-cta-real.jpg') center 58% / cover no-repeat;
  animation: finalImageDrift 18s ease-in-out infinite alternate;
  filter: saturate(.92) contrast(1.02);
}

.final-cta-inner {
  margin-left: clamp(0px, 5vw, 80px);
  margin-right: auto;
  max-width: 720px;
  text-align: left;
  background: rgba(18,22,17,.30);
  border-color: rgba(255,255,255,.16);
}

.final-cta h2,
.final-subheading {
  margin-left: 0;
  margin-right: 0;
}

.cta-actions {
  text-align: left;
}

.cta-photo-tag {
  left: auto;
  right: 28px;
}

@keyframes heroPhotoDrift {
  from { transform: scale(1.015) translateY(0); }
  to { transform: scale(1.055) translateY(-8px); }
}

@keyframes finalImageDrift {
  from { transform: scale(1.03) translateY(0); }
  to { transform: scale(1.085) translateY(-10px); }
}

@media (max-width: 1100px) {
  .hero-photo-frame {
    width: min(94%, 760px);
    height: 62%;
  }

  .hero-journal-card {
    left: 50%;
    width: min(82%, 620px);
  }

  .final-cta-inner {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .final-cta h2,
  .final-subheading {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-actions {
    text-align: center;
  }
}

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

  .hero-photo-frame {
    width: 100%;
    height: 58%;
    right: auto;
    left: 0;
    transform: none;
    border-radius: 24px;
  }

  .hero-photo {
    background-position: 62% 42%;
  }

  .hero-journal-card {
    left: 0;
    transform: none;
    width: 100%;
    bottom: 0;
  }

  .final-cta {
    min-height: 78vh;
  min-height: 78dvh;
  }

  .cta-photo {
    background:
      linear-gradient(180deg, rgba(14,18,13,.24) 0%, rgba(14,18,13,.58) 100%),
      url('assets/journal-cta-real.jpg') 55% center / cover no-repeat;
  }

  .final-cta-inner {
    align-self: end;
    margin-top: auto;
    text-align: center;
    background: rgba(18,22,17,.38);
  }

  .cta-photo-tag {
    right: 14px;
  }
}


/* =========================
   V8 — REFINED HERO + FINAL CTA / MOBILE SAFE
========================= */

/* HERO */
.hero-media {
  min-height: 720px;
}

.hero-photo-frame {
  position: absolute;
  right: 0;
  top: 8px;
  width: 76%;
  height: 68%;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 34px 70px rgba(60,54,43,.18);
  z-index: 1;
}

.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(14,18,14,.06), rgba(14,18,14,.24)),
    url('assets/journal-hero-real.jpg') center 40% / cover no-repeat;
  animation: heroPhotoDriftV8 13s ease-in-out infinite alternate;
}

.hero-photo-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(248,244,236,.78);
  backdrop-filter: blur(10px);
  color: var(--olive-dark);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-journal-card {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: min(78%, 590px);
  z-index: 3;
}

@keyframes heroPhotoDriftV8 {
  from { transform: scale(1.01) translateY(0px); }
  to { transform: scale(1.045) translateY(-6px); }
}

/* FINAL CTA */
.final-cta {
  min-height: 860px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 70px 24px;
}

.cta-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,16,12,.12) 0%, rgba(12,16,12,.24) 54%, rgba(12,16,12,.42) 100%),
    url('assets/journal-cta-real.jpg') center 58% / cover no-repeat;
  transform: scale(1.03);
  animation: finalPhotoDriftV8 18s ease-in-out infinite alternate;
  filter: saturate(.92) contrast(1.02);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.10));
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 4vw, 50px);
  border-radius: 32px;
  text-align: center;
  color: #fff;
  background: rgba(18,22,17,.30);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 28px 64px rgba(10,12,10,.18);
  backdrop-filter: blur(16px);
}

.final-cta .eyebrow {
  color: rgba(255,255,255,.78);
}

.final-cta h2 {
  margin: 0 auto;
  max-width: 660px;
  font-size: clamp(56px, 5.9vw, 92px);
  line-height: .93;
  letter-spacing: -.05em;
}

.final-subheading {
  max-width: 560px;
  margin: 22px auto 0;
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height: 1.68;
}

.cta-actions {
  margin-top: 30px;
  text-align: center;
}

.final-cta .primary-cta {
  background: #f4efe6;
  color: var(--olive-dark);
}

.final-cta .purchase-note {
  color: rgba(255,255,255,.78);
}

@keyframes finalPhotoDriftV8 {
  from { transform: scale(1.02) translateY(0px); }
  to { transform: scale(1.06) translateY(-8px); }
}

/* TABLET */
@media (max-width: 1100px) {
  .hero-media {
    min-height: 660px;
  }

  .hero-photo-frame {
    width: min(94%, 760px);
    height: 60%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .hero-journal-card {
    left: 50%;
    transform: translateX(-50%);
    width: min(84%, 620px);
  }

  .final-cta {
    min-height: 760px;
  }

  .cta-photo {
    background-position: center 56%;
  }

  .final-cta-inner {
    width: min(720px, 100%);
  }
}

/* MOBILE — ensure both images stay clearly visible */
@media (max-width: 640px) {
  .hero-media {
    min-height: 560px;
    display: block;
  }

  .hero-photo-frame {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    transform: none;
    width: 100%;
    height: 48%;
    border-radius: 24px;
  }

  .hero-photo {
    border-radius: 24px;
    background-position: 58% 36%;
    animation: none;
  }

  .hero-photo-caption {
    left: 12px;
    bottom: 12px;
    padding: 8px 11px;
    font-size: 9px;
  }

  .hero-journal-card {
    left: 0;
    transform: none;
    width: 100%;
    bottom: 0;
    border-radius: 22px;
  }

  .final-cta {
    min-height: 700px;
    padding: 0;
    align-items: flex-end;
  }

  .cta-photo {
    background:
      linear-gradient(180deg, rgba(12,16,12,.04) 0%, rgba(12,16,12,.16) 38%, rgba(12,16,12,.56) 100%),
      url('assets/journal-cta-real.jpg') center 46% / cover no-repeat;
    transform: none;
    animation: none;
  }

  .final-cta-inner {
    width: calc(100% - 28px);
    margin: 0 14px 14px;
    padding: 26px 20px;
    border-radius: 24px;
    text-align: center;
    background: rgba(15,20,15,.42);
    backdrop-filter: blur(12px);
  }

  .final-cta h2 {
    max-width: 100%;
    font-size: clamp(44px, 11vw, 60px);
  }

  .final-subheading {
    margin-top: 18px;
    font-size: 14px;
  }

  .cta-actions {
    margin-top: 22px;
  }

  .final-cta .primary-cta {
    width: 100%;
  }
}


/* =========================
   V9 — MOBILE HERO IMAGE FIX
========================= */
@media (max-width: 640px) {
  .sales-hero {
    padding-top: 42px;
    gap: 28px;
  }

  .hero-media {
    min-height: 620px;
  }

  .hero-photo-frame {
    width: 100%;
    height: 58%;
    border-radius: 24px;
  }

  .hero-photo {
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(14,18,14,.02), rgba(14,18,14,.16)),
      url('assets/journal-hero-real.jpg') 68% 34% / cover no-repeat;
    animation: none;
  }

  .hero-photo-caption {
    left: 12px;
    bottom: 12px;
    font-size: 9px;
    padding: 8px 10px;
    background: rgba(248,244,236,.82);
  }

  .hero-journal-card {
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    border-radius: 20px;
  }

  .card-top {
    height: 50px;
    padding: 0 12px;
  }

  .card-top p,
  .card-top > span {
    font-size: 11px;
  }

  .card-dots span {
    width: 7px;
    height: 7px;
  }

  .card-body {
    display: block;
    min-height: 0;
  }

  .body-sidebar {
    display: none;
  }

  .body-panel {
    padding: 18px 16px 18px;
  }

  .body-panel h2 {
    margin: 8px 0 16px;
    font-size: 28px;
    line-height: 0.98;
    max-width: 11ch;
  }

  .field-line {
    height: 10px;
    margin-bottom: 10px;
  }

  .field-line.medium { width: 82%; }
  .field-line.short { width: 62%; }

  .reflection-box {
    height: 74px;
    margin-top: 18px;
    border-radius: 18px;
  }
}


/* =========================
   V10 — COMPACT MOBILE HERO PREVIEW
========================= */
.mobile-preview-tabs,
.body-copy {
  display: none;
}

@media (max-width: 640px) {
  .hero-media {
    min-height: 540px;
  }

  .hero-photo-frame {
    height: 62%;
  }

  .hero-photo {
    background-position: 66% 32%;
  }

  .hero-journal-card {
    bottom: 0;
    border-radius: 20px;
  }

  .card-top {
    height: 46px;
  }

  .mobile-preview-tabs {
    display: flex;
    gap: 7px;
    padding: 10px 10px 0;
    overflow-x: auto;
    background: rgba(255,255,255,.80);
    scrollbar-width: none;
  }

  .mobile-preview-tabs::-webkit-scrollbar {
    display: none;
  }

  .mobile-preview-tabs span {
    flex: 0 0 auto;
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--muted);
    background: rgba(88,101,72,.06);
    font-size: 10px;
    white-space: nowrap;
  }

  .mobile-preview-tabs span.active {
    color: var(--olive-dark);
    background: rgba(88,101,72,.14);
  }

  .body-panel {
    padding: 14px 16px 16px;
  }

  .body-panel h2 {
    max-width: none;
    margin: 6px 0 10px;
    font-size: 25px;
    line-height: 1;
  }

  .body-copy {
    display: block;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
  }

  .field-line {
    height: 8px;
    margin-bottom: 8px;
  }

  .reflection-box {
    display: none;
  }

  .hero-photo-caption {
    display: none;
  }
}


/* =========================
   V11 — KEEP ORIGINAL MOBILE JOURNAL CARD, REDUCE HEIGHT
========================= */
@media (max-width: 640px) {
  .hero-media {
    min-height: 560px;
  }

  .hero-photo-frame {
    height: 64%;
  }

  .hero-photo {
    background-position: 66% 32%;
  }

  .hero-journal-card {
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    border-radius: 20px;
  }

  .card-top {
    height: 44px;
    padding: 0 11px;
  }

  .card-top p,
  .card-top > span {
    font-size: 10px;
  }

  .card-dots span {
    width: 6px;
    height: 6px;
  }

  .card-body {
    min-height: 0;
    display: block;
  }

  .body-sidebar {
    display: flex;
    padding: 8px 9px;
    gap: 6px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
  }

  .body-sidebar::-webkit-scrollbar {
    display: none;
  }

  .body-sidebar span {
    flex: 0 0 auto;
    padding: 7px 9px;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 9px;
  }

  .body-panel {
    padding: 12px 14px 14px;
  }

  .body-panel h2 {
    max-width: none;
    margin: 5px 0 10px;
    font-size: 23px;
    line-height: 1;
  }

  .field-line {
    height: 7px;
    margin-bottom: 7px;
  }

  .field-line.medium {
    width: 78%;
  }

  .field-line.short {
    width: 56%;
  }

  .reflection-box {
    display: block;
    height: 42px;
    margin-top: 12px;
    border-radius: 14px;
  }

  .hero-photo-caption {
    display: none;
  }
}
