:root {
  --cream: #f7f1e6;
  --cream-2: #efe5d4;
  --white: #fffdf8;
  --ink: #262017;
  --muted: #6d6358;
  --gold: #b9924d;
  --gold-2: #d6b36a;
  --navy: #0b1735;
  --blush: #d9a6a7;
  --sage: #8d9a86;
  --line: rgba(185, 146, 77, .28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Noto Serif JP", serif;
  line-height: 1.9;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(247, 241, 230, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  text-decoration: none;
  display: grid;
  gap: 1px;
  min-width: max-content;
}

.brand span,
.section-kicker,
.nav a {
  font-family: "Montserrat", sans-serif;
  letter-spacing: .24em;
}

.brand span {
  font-size: 12px;
  color: var(--gold);
}

.brand strong {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .08em;
}

.brand-set-name {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
  font-size: .65em;
  font-weight: 400;
  letter-spacing: .05em;
}

.product-core {
  display: inline-block;
  padding: .08em .46em .12em;
  border: 1px solid rgba(185, 146, 77, .48);
  color: var(--gold);
  background: rgba(185, 146, 77, .08);
  letter-spacing: .04em;
}

.product-type {
  display: inline-block;
  color: var(--ink);
  letter-spacing: .12em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 42px);
  color: var(--muted);
  font-size: 12px;
}

.nav a {
  text-decoration: none;
}

.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 10px 18px;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

@media (min-width: 1200px) {
  .hero-bg {
    object-position: center 38%;
  }
  .hero-inner {
    padding-top: 60px;
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 253, 248, .88) 0, rgba(255, 253, 248, .6) 520px, rgba(255, 253, 248, 0) 820px);
}

.hero-inner {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(22px, 7vw, 96px);
  padding-top: 92px;
}

.hero-product-title {
  display: inline-block;
  margin: 0 0 16px;
  padding: 10px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 253, 248, .45);
  color: var(--ink);
  font-size: clamp(15px, 2.2vw, 20px);
  line-height: 1.65;
  letter-spacing: .08em;
}

.hero-product-title .product-core {
  margin-top: 6px;
  margin-right: 10px;
  padding: .08em .55em .12em;
  border-color: rgba(185, 146, 77, .7);
  background: rgba(185, 146, 77, .12);
  font-weight: 600;
}

.hero-product-title .product-type {
  color: var(--ink);
  font-size: .92em;
  letter-spacing: .16em;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 400;
}

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

h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 94px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: .02em;
}

.lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2.1vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  text-decoration: none;
  letter-spacing: .08em;
  border: 1px solid var(--gold);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

.button.primary {
  background: var(--gold);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 253, 248, .68);
  color: var(--gold);
}

.wrap {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

section:not(.hero) {
  padding: clamp(72px, 9vw, 126px) 0;
}

.section-band {
  background: var(--white);
}

.two-col,
.route-layout,
.price-wrap {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(31px, 4.6vw, 54px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: .03em;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
}

.body-text p,
.route-copy p,
.price-main p,
.final-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature {
  background: var(--white);
  border: 1px solid var(--line);
}

.feature img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feature div {
  padding: 28px;
}

.feature span,
.flow-list span {
  display: inline-block;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 14px;
}

.feature p,
.flow-list p {
  color: var(--muted);
  margin: 12px 0 0;
}

.route-image {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.note {
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(239, 229, 212, .5);
  font-size: 15px !important;
}

.price-section {
  background: var(--navy);
  color: var(--white);
}

.price-section .section-kicker,
.price-section h2 {
  color: var(--gold-2);
}

.price-section p {
  color: rgba(255, 253, 248, .78);
}

.price-panel {
  margin: 34px 0 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(214, 179, 106, .45);
}

.price-panel div {
  padding: 26px;
}

.price-panel div + div {
  border-left: 1px solid rgba(214, 179, 106, .45);
}

.price-panel span {
  display: block;
  color: rgba(255, 253, 248, .62);
  letter-spacing: .18em;
  font-size: 13px;
  margin-bottom: 10px;
}

.price-panel strong {
  display: block;
  color: var(--white);
  font-size: clamp(26px, 3.3vw, 40px);
  line-height: 1.25;
  font-weight: 500;
}

.price-panel .set-price {
  background: rgba(185, 146, 77, .16);
}

.included {
  background: rgba(255, 253, 248, .08);
  border: 1px solid rgba(214, 179, 106, .45);
  padding: clamp(28px, 4vw, 44px);
}

.included h3 {
  color: var(--white);
  margin-bottom: 18px;
}

.included ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.included li {
  color: rgba(255, 253, 248, .82);
  padding-left: 24px;
  position: relative;
}

.included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .8em;
  width: 9px;
  height: 9px;
  background: var(--gold-2);
}

.target-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.target-list p {
  margin: 0;
  min-height: 138px;
  display: flex;
  align-items: center;
  padding: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--ink);
}

.flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.flow-list li {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.final-cta {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.final-cta > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(247, 241, 230, .96), rgba(247, 241, 230, .76) 50%, rgba(247, 241, 230, .18));
}

.final-copy {
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(22px, 7vw, 96px);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 92vh;
    align-items: flex-start;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(255, 253, 248, .72) 0%, rgba(255, 253, 248, .4) 45%, rgba(255, 253, 248, .05) 85%);
  }

  .hero-inner {
    margin: 0 auto;
    padding-top: 132px;
  }

  .two-col,
  .route-layout,
  .price-wrap,
  .feature-grid,
  .target-list,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .target-list p {
    min-height: auto;
  }

  .price-panel {
    grid-template-columns: 1fr;
  }

  .price-panel div + div {
    border-left: 0;
    border-top: 1px solid rgba(214, 179, 106, .45);
  }

  .final-copy {
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand span {
    font-size: 10px;
  }

  .brand strong {
    font-size: 17px;
  }

  .nav-cta {
    padding: 8px 12px;
    letter-spacing: .12em !important;
  }

  .hero-inner {
    width: calc(100% - 28px);
  }

  h1 {
    font-size: 43px;
  }

  .button {
    width: 100%;
  }

  .feature div,
  .included {
    padding: 24px;
  }
}
