.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: normal;
  word-break: keep-all;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.c-button::after {
  content: "→";
  transition: transform 0.2s ease;
}

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

.c-button:hover::after {
  transform: translateX(4px);
}

.c-button--primary {
  color: var(--color-white);
  background: var(--color-main);
  box-shadow: var(--shadow-button);
}

.c-button--primary:hover {
  background: var(--color-main-dark);
}

.c-button--secondary {
  color: var(--color-white);
  background: var(--color-sub);
  box-shadow: 0 6px 16px rgba(95, 127, 63, 0.18);
}

.c-button--secondary:hover {
  background: var(--color-sub-dark);
}

.c-button--outline {
  color: var(--color-brown);
  background: var(--color-white);
  border-color: var(--color-border);
}

.c-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-card);
  box-shadow: var(--shadow-card);
}

.c-section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.c-section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--color-sub-dark);
  font-weight: 700;
}

.c-section-heading__eyebrow::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 60% 0 60% 0;
  background: var(--color-sub);
  transform: rotate(-18deg);
}

.c-section-heading h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.45rem);
  color: var(--color-brown);
}

.c-grid {
  display: grid;
  gap: 22px;
}

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

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

.c-info-card {
  padding: 26px;
}

.c-info-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.c-info-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--color-sub-light);
  color: var(--color-sub-dark);
  font-weight: 700;
}

.c-card-character {
  width: min(100%, 118px);
  height: 126px;
  margin: -8px 0 12px;
  object-fit: contain;
  object-position: left bottom;
}

.c-card-character--glow {
  width: min(100%, 126px);
  height: 126px;
  margin: -8px 0 12px;
  object-fit: contain;
  object-position: left bottom;
}

.c-list {
  display: grid;
  gap: 16px;
}

.c-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.75;
}

.c-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 12px;
  height: 12px;
  border-radius: 60% 0 60% 0;
  background: var(--color-sub);
  transform: rotate(-22deg);
}

.c-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.c-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--color-sub-light);
  color: var(--color-sub-dark);
  font-weight: 700;
  font-size: 13px;
}

.c-price {
  display: grid;
  gap: 10px;
}

.c-price__main {
  padding: 18px;
  border-radius: var(--radius-md);
  background: #fff0d7;
  color: var(--color-main-dark);
  font-size: 1.25rem;
  font-weight: 700;
}

.c-price__row,
.c-data__row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--color-border);
}

.c-price__row {
  display: grid;
  grid-template-columns: minmax(116px, 140px) minmax(0, 1fr);
  justify-content: initial;
  gap: 12px;
}

.c-price__row dd {
  justify-self: start;
  text-align: left;
}

.c-price__row dt,
.c-data__row dt {
  font-weight: 700;
  color: var(--color-brown);
  overflow-wrap: normal;
  word-break: keep-all;
}

.c-data__row--official {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.c-data__row--official dd {
  white-space: nowrap;
  font-size: clamp(0.68rem, 2.85vw, 0.95rem);
}

.u-nowrap {
  white-space: nowrap;
}

.c-note {
  margin-top: 12px;
  color: var(--color-brown-light);
  font-size: 0.88rem;
}

.c-notice {
  margin: 18px 0;
  padding: 18px 20px;
  display: grid;
  gap: 6px;
  border-color: rgba(235, 126, 36, 0.34);
  background: #fff2df;
  color: var(--color-brown);
}

.c-notice strong {
  color: var(--color-accent);
  font-size: 1.18rem;
}

.c-page-hero {
  position: relative;
  padding: 76px 0 68px;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.9), rgba(255, 247, 232, 0.65));
}

.c-page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
  gap: 42px;
  align-items: center;
}

.c-page-hero h1 {
  margin-top: 10px;
  font-size: clamp(1.8rem, 4.5vw, 3.25rem);
}

.c-page-hero p {
  margin-top: 18px;
  font-size: 1rem;
}

.c-page-hero--video {
  min-height: clamp(280px, 42vw, 460px);
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-brown);
}

.c-page-hero--video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(58, 36, 22, 0.62) 0%, rgba(58, 36, 22, 0.28) 42%, rgba(58, 36, 22, 0.06) 100%);
  pointer-events: none;
}

.c-page-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-page-hero__video-content {
  position: relative;
  z-index: 1;
}

.c-page-hero--video h1 {
  max-width: 8em;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 1;
  text-shadow: 0 8px 28px rgba(51, 31, 18, 0.55), 0 2px 0 rgba(51, 31, 18, 0.24);
}

.c-character {
  width: auto;
  height: min(42vw, 320px);
  max-width: 100%;
  object-fit: contain;
  margin-inline: auto;
}

.c-map-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-card);
}

.c-map-placeholder iframe {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-height: 320px;
  border: 0;
}

.c-contact-cta {
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr minmax(140px, 210px);
  gap: 24px;
  align-items: center;
}

.c-contact-cta .c-character {
  max-height: 240px;
  object-fit: contain;
}

.c-page-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(231, 215, 181, 0.9);
  background: rgba(255, 253, 247, 0.76);
  color: rgba(90, 63, 42, 0.62);
  box-shadow: 0 8px 20px rgba(90, 63, 42, 0.08);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.c-page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.c-page-top:hover,
.c-page-top:focus-visible {
  background: var(--color-main-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-button);
}

@media (max-width: 900px) {
  .c-grid--3,
  .c-grid--2,
  .c-page-hero__inner,
  .c-contact-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .c-info-card,
  .c-contact-cta {
    padding: 22px;
  }

  .c-page-hero {
    padding: 50px 0 52px;
  }

  .c-character {
    height: min(60vw, 240px);
  }

  .c-page-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}
