:root {
  --ink: #171717;
  --muted: #5f6365;
  --line: #dedede;
  --paper: #ffffff;
  --soft: #f4f2ef;
  --brand: #d9364f;
  --brand-dark: #9d1f33;
  --charcoal: #2d3032;
  --olive: #6c765f;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
  overflow-y: auto;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  line-height: 1;
}

.brand-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: lowercase;
}

.brand-main {
  margin-top: 4px;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a,
.header-tel {
  position: relative;
}

.site-nav a::after,
.header-tel::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.header-tel:hover::after {
  transform: scaleX(1);
}

.header-tel {
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  --hero-height: clamp(620px, min(92dvh, 56.25vw), 820px);
  position: relative;
  min-height: var(--hero-height);
  overflow: hidden;
  color: #fff;
  background: #111;
}

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

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

.hero-shade {
  background: rgba(0, 0, 0, 0.54);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: var(--hero-height);
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 128px 0 72px;
  flex-direction: column;
  justify-content: flex-end;
}

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

.hero .eyebrow {
  color: #fff;
}

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

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(54px, 12vw, 148px);
  line-height: 0.92;
  letter-spacing: 0;
}

h1 span,
.hero-copy span {
  display: block;
}

.hero-copy {
  max-width: 1040px;
  margin: 24px 0 0;
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 850;
  line-height: 1.35;
}

.hero-copy span {
  white-space: nowrap;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.primary-button {
  color: #fff;
  background: var(--brand);
}

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

.secondary-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.12);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-facts li {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.notice-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--charcoal);
}

.notice-bar p {
  margin: 0;
  padding: 18px clamp(20px, 4vw, 48px);
  color: #fff;
  background: var(--charcoal);
  font-size: 15px;
}

.notice-bar strong {
  margin-right: 12px;
  color: #ffccd4;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 122px) 0;
}

.split-section,
.access-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.access-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.final-cta p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.feature-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-band {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1120px) / 2));
  background: var(--soft);
}

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

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

.feature-card {
  min-height: 260px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-number {
  display: block;
  margin-bottom: 30px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.feature-card h3,
.menu-row h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
}

.feature-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-strip img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.menu-section {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.menu-list {
  display: grid;
  gap: 10px;
}

.menu-row {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.menu-row p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.menu-row strong {
  color: var(--brand-dark);
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1;
  white-space: nowrap;
}

.menu-row strong.price-pending {
  opacity: 0.58;
  filter: blur(5px);
  user-select: none;
}

.support-list {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.support-list span {
  padding: 8px 12px;
  border-radius: 4px;
  color: #fff;
  background: var(--charcoal);
  font-size: 13px;
  font-weight: 800;
}

.flow-section {
  border-top: 1px solid var(--line);
}

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

.flow-list li {
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.flow-list span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--olive);
  font-weight: 900;
}

.flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.access-section {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1120px) / 2));
  background: #f8f8f8;
}

.info-list {
  display: grid;
  gap: 1px;
  margin: 32px 0 0;
  background: var(--line);
}

.info-list div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  padding: 16px 0;
  background: #f8f8f8;
}

.info-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.info-list dd {
  margin: 0;
  font-weight: 750;
}

.info-list a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.access-button {
  margin-top: 28px;
}

.map-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.access-photo {
  width: 100%;
  aspect-ratio: 759 / 518;
  object-fit: cover;
}

.map-detail {
  padding: 18px 18px 0;
}

.map-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.map-link {
  display: block;
  padding: 15px 18px;
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.final-cta {
  padding: clamp(70px, 9vw, 120px) 20px;
  color: #fff;
  text-align: center;
  background: var(--charcoal);
}

.final-cta .eyebrow {
  color: #ffccd4;
}

.final-cta h2,
.final-cta p {
  max-width: 820px;
  margin-inline: auto;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .primary-button {
  margin-top: 30px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(20px, 4vw, 54px);
  color: #fff;
  background: #111;
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

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

  .split-section,
  .menu-section,
  .access-section {
    grid-template-columns: 1fr;
  }

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

  .support-list {
    grid-column: auto;
  }

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

  .image-strip img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 680px) {
  .hero {
    --hero-height: clamp(620px, 92dvh, 720px);
  }

  .site-header {
    gap: 12px;
    padding-inline: 16px;
  }

  .header-tel {
    display: none;
  }

  .brand-main {
    font-size: 30px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(48px, 15.5vw, 62px);
    line-height: 1;
  }

  .hero-copy {
    font-size: 22px;
  }

  .hero-copy span {
    white-space: normal;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .notice-bar,
  .feature-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .section {
    width: calc(100% - 32px);
  }

  .feature-card,
  .flow-list li {
    min-height: auto;
  }

  .menu-row {
    min-height: 92px;
    padding: 18px 0;
  }

  .menu-row strong {
    font-size: 30px;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .access-photo {
    aspect-ratio: 759 / 518;
  }
}
