:root {
  --ink: #17382f;
  --muted: #5e7068;
  --line: #d9e6d5;
  --paper: #fffaf0;
  --surface: #fffef9;
  --cream: #fff2b8;
  --mint: #eaf8ee;
  --green: #4b9f5b;
  --deep-green: #256846;
  --coral: #df6452;
  --gold: #ffdc4f;
  --blue: #4f88c9;
  --sky: #eaf5ff;
  --deep: #153f31;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(42, 84, 58, 0.12);
  --shadow-strong: 0 22px 52px rgba(33, 68, 45, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffaf0 0, #fff5c8 360px, #f4fbf0 760px, #fffef9 100%),
    var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Yu Gothic UI", "Noto Sans JP", sans-serif;
  line-height: 1.75;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button {
  font: inherit;
}

svg {
  width: 1.12em;
  height: 1.12em;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex: 0 0 auto;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.38);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(255, 255, 251, 0.94);
  box-shadow: 0 12px 34px rgba(49, 94, 65, 0.11);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--gold);
  background: var(--deep-green);
  box-shadow: 0 8px 18px rgba(22, 77, 48, 0.16);
}

.brand-name,
.brand-sub {
  display: block;
  line-height: 1.1;
}

.brand-name {
  font-weight: 950;
  white-space: nowrap;
}

.brand-sub {
  margin-top: 4px;
  font-size: 0.72rem;
  opacity: 0.78;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 30px);
  font-size: 0.93rem;
  font-weight: 850;
}

.nav a {
  position: relative;
  opacity: 0.94;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(37, 104, 70, 0.35);
  background: rgba(255, 254, 249, 0.48);
  font-weight: 950;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 74svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: #f7f0cf;
}

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

.hero-image {
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(1.03) contrast(0.98);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 254, 249, 0.97) 0%, rgba(255, 250, 223, 0.9) 44%, rgba(255, 250, 223, 0.18) 82%),
    linear-gradient(0deg, rgba(244, 251, 240, 0.56) 0%, rgba(244, 251, 240, 0) 52%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1140px, calc(100% - 36px));
  margin: 76px auto 24px;
  padding: clamp(32px, 4.5vw, 54px) 0 clamp(30px, 4vw, 50px);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--deep-green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--deep-green);
}

h1 {
  max-width: 790px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.05vw, 3.55rem);
  line-height: 1.13;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.48);
}

.mobile-title {
  display: none;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: #48645b;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero-actions,
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 950;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #23321f;
  background: var(--gold);
  border-color: rgba(134, 99, 0, 0.16);
  box-shadow: 0 14px 30px rgba(255, 216, 90, 0.35), inset 0 -2px 0 rgba(128, 91, 0, 0.12);
}

.button-secondary {
  color: var(--deep-green);
  border: 1px solid rgba(45, 117, 80, 0.32);
  background: rgba(255, 254, 249, 0.86);
  backdrop-filter: blur(10px);
}

.button-secondary.light {
  color: var(--deep-green);
  border-color: rgba(45, 117, 80, 0.28);
  background: rgba(255, 255, 251, 0.9);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(45, 117, 80, 0.2);
  border-radius: 999px;
  background: rgba(255, 254, 249, 0.82);
  color: var(--deep-green);
  font-size: 0.88rem;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(44, 82, 56, 0.08);
}

.notice-band {
  color: var(--ink);
  border-top: 1px solid rgba(37, 104, 70, 0.12);
  border-bottom: 1px solid rgba(37, 104, 70, 0.12);
  background: linear-gradient(90deg, #ffdf55 0%, #fff2a8 34%, #eef9e7 100%);
}

.notice-inner {
  width: min(1140px, calc(100% - 36px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.notice-inner strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--white);
  background: var(--deep-green);
  white-space: nowrap;
}

.section {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(66px, 8.5vw, 110px) 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 660px;
}

.section-heading h2,
.feature-copy h2,
.shop-copy h2,
.reserve-inner h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading h2::after,
.feature-copy h2::after,
.shop-copy h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 5px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--deep-green));
}

.section-heading p,
.feature-copy p,
.shop-copy p,
.reserve-inner p,
.service-card p,
.flow-list p,
.faq-list p,
.site-footer p,
.photo-grid figcaption span {
  color: var(--muted);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.intro-photo {
  max-width: 680px;
  margin: 28px 0 0;
}

.intro-photo img {
  aspect-ratio: 16 / 10;
  object-position: center;
  box-shadow: 0 16px 34px rgba(49, 94, 65, 0.1);
}

.intro-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

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

.intro-metrics div {
  min-height: 128px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 26px rgba(49, 94, 65, 0.07);
}

.intro-metrics span {
  display: block;
  margin-bottom: 8px;
  color: var(--deep-green);
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  font-weight: 950;
  line-height: 1.1;
}

.intro-metrics p {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(49, 94, 65, 0.07);
}

.service-card::before,
.link-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--deep-green));
}

.card-icon,
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 8px;
}

.service-card h3,
.flow-list h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.38;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(62px, 8vw, 102px) max(18px, calc((100vw - 1140px) / 2));
  background:
    linear-gradient(135deg, rgba(255, 250, 224, 0.98), rgba(236, 248, 232, 0.96) 62%, rgba(255, 254, 249, 0.94)),
    var(--mint);
}

.feature-image img,
.photo-grid img,
.shop-photo-stack img {
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(37, 104, 70, 0.12);
  box-shadow: var(--shadow-strong);
}

.feature-image img {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.season-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.season-list a {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 58px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 249, 0.92);
  box-shadow: 0 8px 20px rgba(49, 94, 65, 0.06);
}

.season-list span {
  color: var(--deep-green);
  font-weight: 950;
}

.season-list strong {
  line-height: 1.35;
}

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

.service-card {
  min-height: 230px;
  padding: 24px;
}

.service-icon {
  color: var(--deep-green);
  background: var(--mint);
}

.howto-band {
  padding: clamp(64px, 8vw, 104px) max(18px, calc((100vw - 1140px) / 2));
  color: var(--ink);
  background:
    linear-gradient(135deg, #fffdf3 0%, #eaf8ee 54%, #fff1a6 100%),
    var(--mint);
}

.howto-band .eyebrow {
  color: var(--deep-green);
}

.howto-band .section-heading h2 {
  color: var(--ink);
}

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

.flow-list li {
  min-height: 220px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 254, 249, 0.9);
  box-shadow: 0 10px 24px rgba(49, 94, 65, 0.06);
}

.flow-list span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--deep-green);
  font-weight: 950;
}

.flow-list p {
  color: var(--muted);
}

.checks-section {
  padding-bottom: clamp(44px, 7vw, 78px);
}

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

.photo-grid figure {
  margin: 0;
}

.photo-grid img {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.photo-grid figure {
  padding: 8px;
  border: 1px solid rgba(37, 104, 70, 0.1);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(49, 94, 65, 0.06);
}

.photo-grid figcaption {
  display: grid;
  gap: 4px;
  min-height: 116px;
  padding: 16px 8px 4px;
}

.photo-grid figcaption strong {
  font-size: 1.06rem;
  line-height: 1.35;
}

.shop-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(28px, 5vw, 58px);
}

.shop-details {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.shop-details div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.shop-details dt {
  color: var(--muted);
  font-weight: 850;
}

.shop-details dd {
  margin: 0;
  font-weight: 850;
}

.shop-photo-stack {
  position: relative;
  min-height: 460px;
}

.photo-main {
  aspect-ratio: 4 / 3;
  height: auto;
}

.photo-small {
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: min(45%, 270px);
  aspect-ratio: 4 / 3;
  border: 6px solid var(--paper);
}

.faq-section {
  padding-top: clamp(34px, 6vw, 70px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(49, 94, 65, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
}

.line-section {
  padding-top: clamp(34px, 6vw, 70px);
}

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

.link-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.link-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.25;
}

.link-card p {
  color: var(--muted);
}

.link-card .button {
  margin-top: auto;
}

.line-card {
  background:
    linear-gradient(135deg, rgba(234, 248, 238, 0.96), rgba(255, 255, 251, 0.96)),
    var(--surface);
}

.flyer-card {
  background:
    linear-gradient(135deg, rgba(255, 245, 191, 0.95), rgba(234, 245, 255, 0.84)),
    var(--surface);
}

.reserve-section {
  padding: 0 max(18px, calc((100vw - 1140px) / 2)) clamp(66px, 8.5vw, 110px);
}

.reserve-inner {
  padding: clamp(34px, 6vw, 62px);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 220, 79, 0.72), rgba(234, 248, 238, 0.94) 60%, rgba(255, 254, 249, 0.96)),
    var(--surface);
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--line);
}

.reserve-inner .eyebrow {
  color: var(--deep-green);
}

.reserve-inner p {
  max-width: 760px;
  color: var(--muted);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0 0;
}

.contact-details div {
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(45, 117, 80, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 251, 0.72);
}

.contact-details dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.contact-details dd {
  margin: 0;
  font-weight: 950;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: var(--ink);
  background: #f5fbf1;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 780px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer a {
  font-weight: 900;
  white-space: nowrap;
}

.mobile-action-bar {
  display: none;
}

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

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

  .nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 82px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 254, 245, 0.98);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 12px;
  }

  .nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .intro-section,
  .feature-band,
  .shop-section {
    grid-template-columns: 1fr;
  }

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

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

  .feature-image {
    order: 2;
  }

  .shop-photo-stack {
    min-height: 0;
    padding-right: 30px;
    padding-bottom: 26px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    min-height: 66px;
    padding: 12px 16px;
  }

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

  .brand-name {
    max-width: 11.5em;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-sub {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    object-position: center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 251, 0.93) 0%, rgba(255, 251, 224, 0.82) 62%, rgba(255, 251, 224, 0.36) 100%),
      linear-gradient(0deg, rgba(234, 248, 238, 0.34) 0%, rgba(234, 248, 238, 0) 50%);
  }

  .hero-inner {
    width: min(100% - 28px, 1140px);
    margin-top: 66px;
    padding: 34px 0 24px;
  }

  h1 {
    font-size: clamp(1.88rem, 8.2vw, 2.48rem);
    line-height: 1.18;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: inline;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.68;
    margin-bottom: 22px;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-facts span {
    min-height: 32px;
    font-size: 0.8rem;
  }

  .notice-inner {
    min-height: 96px;
    flex-direction: column;
    gap: 8px;
    padding: 14px 0;
  }

  .section {
    width: min(100% - 28px, 1140px);
  }

  .intro-metrics,
  .service-grid,
  .flow-list,
  .photo-grid,
  .link-card-grid,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .intro-metrics div,
  .service-card,
  .flow-list li,
  .link-card {
    min-height: auto;
  }

  .feature-band,
  .howto-band,
  .reserve-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .photo-grid figcaption {
    min-height: auto;
    padding-bottom: 12px;
  }

  .shop-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .shop-photo-stack {
    padding: 0;
  }

  .photo-small {
    position: static;
    width: 100%;
    margin-top: 14px;
    border: 0;
  }

  .site-footer {
    display: grid;
  }

  .mobile-action-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(37, 104, 70, 0.18);
    border-radius: 8px;
    background: rgba(255, 254, 249, 0.96);
    box-shadow: 0 18px 42px rgba(31, 69, 44, 0.18);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    display: inline-flex;
    min-width: 0;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 8px;
    color: var(--deep-green);
    background: #f3faef;
    font-size: 0.88rem;
    font-weight: 950;
  }

  .mobile-action-bar a:first-child {
    color: #263410;
    background: var(--gold);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
