:root {
  --ink: #11110f;
  --charcoal: #1f211c;
  --moss: #4f6d45;
  --leaf: #7fa66c;
  --tatami: #d9c493;
  --paper: #f7f3e8;
  --warm: #b77b42;
  --soft: #e8ddc8;
  --white: #fffaf0;
  --shadow: 0 24px 70px rgba(20, 18, 14, 0.22);
  --wagara:
    linear-gradient(30deg, rgba(183, 123, 66, 0.11) 12%, transparent 12.5%, transparent 87%, rgba(183, 123, 66, 0.11) 87.5%, rgba(183, 123, 66, 0.11)),
    linear-gradient(150deg, rgba(183, 123, 66, 0.11) 12%, transparent 12.5%, transparent 87%, rgba(183, 123, 66, 0.11) 87.5%, rgba(183, 123, 66, 0.11)),
    linear-gradient(30deg, rgba(183, 123, 66, 0.11) 12%, transparent 12.5%, transparent 87%, rgba(183, 123, 66, 0.11) 87.5%, rgba(183, 123, 66, 0.11)),
    linear-gradient(150deg, rgba(183, 123, 66, 0.11) 12%, transparent 12.5%, transparent 87%, rgba(183, 123, 66, 0.11) 87.5%, rgba(183, 123, 66, 0.11)),
    linear-gradient(60deg, rgba(79, 109, 69, 0.07) 25%, transparent 25.5%, transparent 75%, rgba(79, 109, 69, 0.07) 75%, rgba(79, 109, 69, 0.07)),
    linear-gradient(60deg, rgba(79, 109, 69, 0.07) 25%, transparent 25.5%, transparent 75%, rgba(79, 109, 69, 0.07) 75%, rgba(79, 109, 69, 0.07));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image: var(--wagara);
  background-position: 0 0, 0 0, 36px 63px, 36px 63px, 0 0, 36px 63px;
  background-size: 72px 126px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(17, 17, 15, 0.72), rgba(17, 17, 15, 0));
}

.brand,
.ghost-link,
.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.ghost-link {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid rgba(255, 250, 240, 0.48);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(20px, 6vw, 86px) 76px;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/yukata-garden.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 18, 12, 0.88) 0%, rgba(13, 18, 12, 0.56) 42%, rgba(13, 18, 12, 0.1) 100%),
    linear-gradient(0deg, rgba(17, 17, 15, 0.72) 0%, rgba(17, 17, 15, 0.08) 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d7edc9;
}

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

h1 {
  margin: 0;
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.94;
  font-weight: 500;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.7vw, 4.6rem);
  line-height: 1;
  font-weight: 500;
}

h3 {
  margin: 8px 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

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

.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 250, 240, 0.58);
}

.secondary.dark {
  color: var(--ink);
  border-color: rgba(17, 17, 15, 0.3);
}

.hero-note {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: 76px;
  z-index: 3;
  width: min(260px, 32vw);
  padding: 20px;
  border-left: 1px solid rgba(255, 250, 240, 0.45);
  color: rgba(255, 250, 240, 0.82);
}

.hero-note span,
.hero-note strong {
  display: block;
}

.hero-note strong {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.1;
}

.band,
.split-section,
.instructor-section,
.merch-section,
.bonus-section,
.location-section,
.final-cta {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 86px);
}

.intro,
.split-section,
.instructor-section,
.sessions,
.pricing-policy,
.bonus-section {
  background-color: rgba(247, 243, 232, 0.92);
  background-image: var(--wagara);
  background-position: 0 0, 0 0, 36px 63px, 36px 63px, 0 0, 36px 63px;
  background-size: 72px 126px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(30px, 7vw, 88px);
  align-items: end;
  background: var(--paper);
}

.intro p:last-child {
  margin: 0;
  max-width: 620px;
  color: #4d4b43;
  font-size: 1.05rem;
}

.split-section,
.bonus-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(360px, 1.4fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.roadmap-copy p {
  max-width: 590px;
  color: #545147;
}

.shop-sticker {
  display: inline-flex;
  max-width: 360px;
  margin-top: 28px;
  padding: 14px 18px;
  border: 2px solid rgba(79, 109, 69, 0.42);
  border-radius: 999px;
  color: #4f6d45;
  background: rgba(255, 250, 240, 0.86);
  box-shadow: 0 12px 32px rgba(20, 18, 14, 0.1);
  font-family: "Bradley Hand", "Segoe Print", "Comic Sans MS", cursive;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  font-weight: 800;
  line-height: 1.22;
  transform: rotate(-2deg);
}

.roadmap-image-wrap {
  overflow: hidden;
  border: 10px solid rgba(255, 250, 240, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.roadmap-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.image-stack {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  min-height: 0;
}

.image-stack img,
.bonus-image img,
.location-section img,
.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-stack img:first-child {
  width: 100%;
  height: 300px;
  object-position: center 4%;
  box-shadow: var(--shadow);
}

.image-stack img:last-child {
  width: 100%;
  height: 430px;
  border: 12px solid var(--paper);
  box-shadow: var(--shadow);
}

.section-copy p {
  max-width: 610px;
  color: #545147;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.day-flow {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.day-flow article {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(17, 17, 15, 0.16);
}

.day-flow strong {
  display: block;
  color: #34332e;
  font-size: 1.06rem;
  font-weight: 900;
}

.day-flow p {
  margin: 4px 0 0;
  color: #5c5a50;
  font-size: 0.95rem;
}

.feature-list li {
  padding: 15px 0;
  border-top: 1px solid rgba(17, 17, 15, 0.16);
  color: #34332e;
  font-weight: 700;
}

.instructor-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  background: #f1eadb;
}

.instructor-copy p:not(.section-kicker) {
  max-width: 620px;
  color: #545147;
}

.handnote {
  display: inline-flex;
  margin-top: 18px;
  color: #7f5540;
  font-family: "Bradley Hand", "Segoe Print", "Comic Sans MS", cursive;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.25;
  transform: rotate(-1.5deg);
}

.instructor-card {
  position: relative;
  overflow: hidden;
  border: 12px solid var(--white);
  box-shadow: var(--shadow);
  background: var(--white);
}

.instructor-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 0.8fr 0.94fr 1.05fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--charcoal);
}

.gallery-strip img {
  min-height: 360px;
}

.gallery-strip .gallery-small {
  min-height: 320px;
  height: 86%;
}

.sessions {
  background: #eef1df;
}

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

.date-note {
  max-width: 560px;
  margin: 18px 0 0;
  color: #5f6f55;
  font-size: 1.08rem;
  font-weight: 800;
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.session {
  min-height: 245px;
  padding: 28px;
  border: 2px solid rgba(79, 109, 69, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 18px 48px rgba(20, 18, 14, 0.08);
}

.session span {
  color: #69765c;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.session p {
  margin: 16px 0 0;
  color: #4d4b43;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-weight: 800;
  line-height: 1;
}

.session h3 {
  margin-top: 18px;
  font-size: clamp(1.85rem, 2.4vw, 2.8rem);
}

.merch-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  background-color: rgba(247, 243, 232, 0.94);
  background-image: var(--wagara);
  background-position: 0 0, 0 0, 36px 63px, 36px 63px, 0 0, 36px 63px;
  background-size: 72px 126px;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.7);
  color: #414137;
  font-size: 0.92rem;
  font-weight: 800;
}

.shirt-note {
  overflow: hidden;
  border: 10px solid rgba(255, 250, 240, 0.88);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.shirt-note img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.goods-copy {
  grid-column: 1 / -1;
  padding-left: 0;
  border-left: 0;
}

.goods-copy p {
  color: #545147;
}

.shop-panel {
  margin-top: 20px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 18px 52px rgba(20, 18, 14, 0.08);
}

.goods-hero-image {
  width: 100%;
  margin-top: 24px;
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(20, 18, 14, 0.08);
}

.pricing-policy {
  background: #eef1df;
}

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

.policy-card {
  min-height: 245px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 18px 52px rgba(20, 18, 14, 0.08);
}

.policy-card p,
.policy-card li {
  color: #5a6153;
  font-weight: 650;
}

.policy-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.policy-card li::marker {
  color: #d989a3;
}

.price-card {
  background: var(--charcoal);
}

.price-card h3,
.price-card p {
  color: var(--white);
}

.price-card .handnote {
  margin: 0 0 4px;
  color: #d7edc9;
  font-size: 1.3rem;
}

.price-line {
  margin-top: 18px;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.35;
}

.bonus-section {
  grid-template-columns: minmax(280px, 0.76fr) minmax(280px, 1fr);
  background: var(--paper);
}

.bonus-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.highlight {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 17, 15, 0.18);
  color: var(--ink);
  font-weight: 800;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: stretch;
  color: var(--white);
  background: var(--charcoal);
}

.location-section img {
  min-height: 560px;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-copy p {
  color: rgba(255, 250, 240, 0.74);
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(rgba(247, 243, 232, 0.85), rgba(247, 243, 232, 0.92)),
    url("assets/guests.png") center / cover;
}

.final-cta h2 {
  max-width: 850px;
  margin: 0 auto;
}

.final-cta .hero-actions {
  justify-content: center;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 86px);
  color: rgba(255, 250, 240, 0.76);
  background: var(--ink);
  font-size: 0.9rem;
}

.footer a {
  color: var(--white);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

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

  .nav-links {
    display: none;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(420px, 100%);
    margin-top: 42px;
  }

  .intro,
  .split-section,
  .instructor-section,
  .merch-section,
  .bonus-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .session-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .gallery-strip img,
  .gallery-strip .gallery-small {
    min-height: 300px;
    height: 100%;
  }

  .goods-copy {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(17, 17, 15, 0.15);
    padding-top: 24px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .ghost-link {
    padding: 9px 12px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 92vh;
    padding: 110px 18px 46px;
  }

  .hero-bg {
    background-position: 63% center;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }

  .button {
    width: 100%;
  }

  .image-stack {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .image-stack img:first-child,
  .image-stack img:last-child {
    width: 100%;
    height: 260px;
    border: 0;
  }

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

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

  .session {
    min-height: 170px;
  }

  .location-section img {
    min-height: 330px;
  }

  .footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
