:root {
  --ink: #171411;
  --muted: #6f665d;
  --paper: #fbf8f2;
  --rice: #f3eadf;
  --line: rgba(23, 20, 17, 0.12);
  --vermillion: #b73b2f;
  --plum: #63314a;
  --teal: #1e6763;
  --gold: #b88535;
  --night: #111927;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(31, 24, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: rgba(183, 59, 47, 0.22);
}

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

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

.site-header {
  align-items: center;
  background: rgba(251, 248, 242, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 20, 17, 0.08);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 52px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  font-family: "Playfair Display", serif;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  margin-top: 2px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 26px;
  justify-content: center;
}

.desktop-nav a {
  color: rgba(23, 20, 17, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--vermillion);
}

.nav-cta,
.button,
.package-body a {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  text-transform: uppercase;
}

.nav-cta,
.button.primary {
  background: var(--vermillion);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.button.dark {
  background: var(--ink);
  color: var(--white);
}

.button.light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.hero {
  min-height: 96vh;
  overflow: hidden;
  position: relative;
}

.hero picture,
.hero img,
.hero-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 12, 13, 0.82) 0%, rgba(12, 12, 13, 0.58) 34%, rgba(12, 12, 13, 0.12) 68%),
    linear-gradient(180deg, rgba(12, 12, 13, 0.18) 0%, rgba(12, 12, 13, 0.64) 100%);
  z-index: 1;
}

.hero-content {
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 96vh;
  padding: 120px clamp(20px, 7vw, 96px) 62px;
  position: relative;
  width: min(760px, 100%);
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

h1 {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  margin-bottom: 24px;
  max-width: 740px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.45;
  max-width: 590px;
}

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

.quick-facts {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 42px 0 0;
  max-width: 700px;
}

.quick-facts div {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding-left: 16px;
}

.quick-facts dt {
  font-size: 18px;
  font-weight: 800;
}

.quick-facts dd {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.4;
  margin: 4px 0 0;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.intro-band {
  background: var(--ink);
  color: var(--white);
  padding-bottom: 34px;
  padding-top: 34px;
  text-align: center;
}

.intro-band p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.18;
  margin: 0;
}

.intro-band span {
  color: #f1c36f;
  display: inline-block;
}

.section-heading {
  margin: 0 auto 38px;
  max-width: 860px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  margin-bottom: 0;
}

.section-heading.split {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  max-width: 1180px;
  text-align: left;
}

.section-heading.split p:last-child {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 6px;
}

.feature-grid,
.package-grid,
.story-grid,
.faq-grid {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 1180px;
}

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

.feature-card,
.story-grid article,
.faq-grid details {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card {
  min-height: 214px;
  padding: 28px;
}

.feature-card svg {
  color: var(--vermillion);
  height: 28px;
  margin-bottom: 28px;
  width: 28px;
}

.feature-card h3,
.package-body h3,
.spot-grid h3 {
  font-size: 20px;
  line-height: 1.18;
  margin-bottom: 10px;
}

.feature-card p,
.package-body p,
.spot-grid p,
.story-grid p,
.faq-grid p {
  color: var(--muted);
  line-height: 1.62;
  margin-bottom: 0;
}

.packages-section {
  background: var(--rice);
}

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

.package-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(31, 24, 18, 0.08);
  min-height: 480px;
  overflow: hidden;
}

.package-card.featured {
  outline: 2px solid var(--vermillion);
}

.package-card.premium {
  outline: 2px solid var(--teal);
}

.package-media {
  aspect-ratio: 4 / 3;
  background-position: center;
  background-size: cover;
}

.package-media.solo {
  background-image: linear-gradient(rgba(99, 49, 74, 0.08), rgba(99, 49, 74, 0.08)), url("assets/images/gallery-gyoen.png");
}

.package-media.couple {
  background-image: url("assets/images/hero-shinjuku-kimono.png");
}

.package-media.family {
  background-image: url("assets/images/gallery-family.png");
}

.package-media.photo {
  background-image: url("assets/images/gallery-neon.png");
}

.package-body {
  display: flex;
  flex-direction: column;
  min-height: 244px;
  padding: 22px;
}

.badge {
  align-self: flex-start;
  background: rgba(183, 59, 47, 0.1);
  color: var(--vermillion);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 14px;
  padding: 7px 10px;
  text-transform: uppercase;
}

.package-card.premium .badge {
  background: rgba(30, 103, 99, 0.1);
  color: var(--teal);
}

.package-body strong {
  display: block;
  font-size: 26px;
  margin: auto 0 18px;
}

.package-body a {
  background: var(--ink);
  color: var(--white);
  width: 100%;
}

.tour-section {
  background: var(--night);
  color: var(--white);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 72px);
}

.tour-copy {
  align-self: center;
  max-width: 560px;
}

.tour-copy h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  margin-bottom: 22px;
}

.tour-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.72;
  margin-bottom: 28px;
}

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

.spot-grid article {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  min-height: 224px;
  padding: 26px;
}

.spot-grid span {
  color: #f1c36f;
  display: block;
  font-weight: 800;
  margin-bottom: 54px;
}

.spot-grid h3 {
  color: var(--white);
  max-width: 320px;
}

.spot-grid p {
  color: rgba(255, 255, 255, 0.62);
}

.masonry-gallery {
  align-items: stretch;
  display: grid;
  gap: 16px;
  grid-auto-flow: dense;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  margin: 0 auto;
  max-width: 1180px;
}

.masonry-gallery figure {
  background: var(--rice);
  border-radius: 8px;
  margin: 0;
  min-height: 340px;
  overflow: hidden;
}

.masonry-gallery figure.tall {
  grid-row: span 2;
  min-height: 700px;
}

.masonry-gallery img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.quote-tile {
  align-items: start;
  background: var(--plum) !important;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
}

.quote-tile blockquote {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.16;
  margin: 0 0 18px;
}

.quote-tile figcaption {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.stories-section {
  background: #efe6da;
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

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

.story-grid article {
  background: rgba(255, 255, 255, 0.58);
  min-height: 190px;
  padding: 26px;
}

.story-grid span {
  display: block;
  font-weight: 800;
  margin-bottom: 22px;
}

.flow-list {
  counter-reset: flow;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  list-style: none;
  margin: 0 auto;
  max-width: 1180px;
  padding: 0;
}

.flow-list li {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  min-height: 144px;
  padding: 20px 14px;
  position: relative;
  text-align: center;
}

.flow-list li::before {
  color: rgba(23, 20, 17, 0.28);
  content: counter(flow, decimal-leading-zero);
  counter-increment: flow;
  font-size: 12px;
  font-weight: 800;
  left: 12px;
  position: absolute;
  top: 10px;
}

.flow-list svg {
  color: var(--teal);
  height: 28px;
  width: 28px;
}

.flow-list span {
  font-size: 13px;
  font-weight: 800;
}

.faq-section {
  background: var(--rice);
}

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

.faq-grid details {
  padding: 24px 26px;
}

.faq-grid summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  color: var(--vermillion);
  content: "+";
  float: right;
  font-size: 24px;
  line-height: 1;
}

.faq-grid details[open] summary::after {
  content: "−";
}

.faq-grid p {
  margin-top: 16px;
}

.booking-section {
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  min-height: 620px;
}

.booking-media {
  background-image: linear-gradient(rgba(17, 25, 39, 0.08), rgba(17, 25, 39, 0.34)), url("assets/images/hero-shinjuku-kimono.png");
  background-position: center;
  background-size: cover;
}

.booking-content {
  align-self: center;
  padding: clamp(42px, 7vw, 84px);
}

.booking-content h2 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.04;
  margin-bottom: 22px;
}

.booking-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.site-footer {
  align-items: center;
  background: #0d0c0b;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 72px);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

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

  .tour-section,
  .booking-section,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

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

  .flow-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-media {
    min-height: 360px;
  }
}

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

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 13px;
    max-width: 156px;
  }

  .brand-mark {
    height: 38px;
    width: 38px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero,
  .hero-content {
    min-height: 92vh;
  }

  .hero img {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 12, 13, 0.84) 0%, rgba(12, 12, 13, 0.52) 62%, rgba(12, 12, 13, 0.2) 100%),
      linear-gradient(180deg, rgba(12, 12, 13, 0.16) 0%, rgba(12, 12, 13, 0.72) 100%);
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-content {
    padding: 108px 18px 34px;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .quick-facts {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .feature-grid,
  .package-grid,
  .spot-grid,
  .story-grid,
  .faq-grid,
  .masonry-gallery,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2,
  .tour-copy h2,
  .booking-content h2 {
    font-size: clamp(32px, 11vw, 46px);
  }

  .package-card {
    min-height: auto;
  }

  .masonry-gallery figure,
  .masonry-gallery figure.tall {
    min-height: 420px;
  }

  .spot-grid article {
    min-height: 180px;
  }

  .spot-grid span {
    margin-bottom: 34px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
