/* ============ Wedding LP — riverside original wedding ============ */
.page-wedding {
  --wd-ink: #2c2824;
  --wd-ink-soft: #5a534c;
  --wd-mist: #f7f4f0;
  --wd-pearl: #f0ebe5;
  --wd-sage: #7a8776;
  --wd-sage-deep: #4a5548;
  --wd-blush: #c4a39a;
  --wd-blush-soft: rgba(196, 163, 154, 0.18);
  --wd-champagne: #e8d9c8;
  --wd-line: rgba(44, 40, 36, 0.12);
  --wd-serif: "Cormorant Garamond", "Times New Roman", serif;
  --wd-mincho: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --wd-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  background: var(--wd-mist);
  color: var(--wd-ink);
  font-family: var(--wd-mincho);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

.page-wedding #header.over-hero {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-wedding #header.over-hero .logo {
  color: #fff;
}

.page-wedding #header.over-hero .nav-toggle-bar {
  background: #fff;
}

.page-wedding #header:not(.over-hero) {
  background: rgba(246, 244, 241, 0.92);
  border-bottom-color: var(--wd-line);
  box-shadow: none;
}

.page-wedding #header:not(.over-hero) .logo {
  color: var(--wd-ink);
}

.page-wedding #header.over-hero + .nav-menu a:not(.nav-contact):not(.nav-drawer-logo):not(.nav-sns) {
  color: rgba(255, 255, 255, 0.94);
}

.page-wedding #header.over-hero + .nav-menu a:not(.nav-contact):not(.nav-drawer-logo):not(.nav-sns):hover {
  color: #fff;
}

.page-wedding #header.over-hero + .nav-menu .nav-contact {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.page-wedding #header.over-hero + .nav-menu .nav-contact:hover {
  background: #fff;
  color: var(--ink) !important;
  border-color: #fff;
}

.page-wedding #header.over-hero + .nav-menu .nav-sns {
  color: #fff;
}

/* ---- Hero ---- */
.wd-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.wd-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wd-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: wdHeroZoom 18s var(--ease) forwards;
}

@keyframes wdHeroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.wd-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(44, 40, 36, 0.28) 0%, rgba(44, 40, 36, 0.12) 38%, rgba(44, 40, 36, 0.62) 100%);
  pointer-events: none;
}

.wd-hero-inner {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 48px));
  padding: 0 0 88px;
  text-align: center;
}

.wd-hero-brand {
  margin: 0 auto 28px;
  opacity: 0;
  animation: wdFadeUp 1s 0.2s var(--ease) forwards;
}

.wd-hero-brand .logo {
  height: 28px;
  width: auto;
  margin: 0 auto;
  color: #fff;
}

.wd-hero-en {
  font-family: var(--wd-serif);
  font-size: clamp(11px, 1.6vw, 13px);
  letter-spacing: 0.52em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 22px;
  opacity: 0;
  animation: wdFadeUp 1s 0.35s var(--ease) forwards;
}

.wd-hero-title {
  font-family: var(--wd-mincho);
  font-size: clamp(28px, 5.2vw, 48px);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.55;
  margin: 0 0 20px;
  opacity: 0;
  animation: wdFadeUp 1.1s 0.5s var(--ease) forwards;
}

.wd-hero-lead {
  font-family: var(--wd-sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34em;
  margin: 0 auto 36px;
  opacity: 0;
  animation: wdFadeUp 1.1s 0.65s var(--ease) forwards;
}

.wd-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--wd-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 8px;
  opacity: 0;
  animation: wdFadeUp 1.1s 0.8s var(--ease) forwards;
  transition: border-color 0.35s var(--ease), opacity 0.35s var(--ease);
}

.wd-hero-cta:hover {
  border-bottom-color: #fff;
  opacity: 0.85;
}

.wd-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  transform: translateX(-50%);
  font-family: var(--wd-serif);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.55);
}

@keyframes wdFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---- Shared ---- */
.wd-section {
  padding: clamp(72px, 10vw, 120px) 0;
}

.wd-wrap {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.wd-wrap-narrow {
  width: min(720px, calc(100% - 48px));
  margin: 0 auto;
}

.wd-en {
  font-family: var(--wd-serif);
  font-size: 12px;
  letter-spacing: 0.42em;
  color: var(--wd-blush);
  font-weight: 500;
  margin-bottom: 16px;
}

.wd-heading {
  font-size: clamp(24px, 3.6vw, 34px);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.7;
  margin: 0 0 28px;
}

.wd-body {
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 2.35;
  letter-spacing: 0.06em;
  color: var(--wd-ink-soft);
  font-weight: 500;
}

.wd-body p + p {
  margin-top: 1.6em;
}

.wd-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.wd-reveal.on {
  opacity: 1;
  transform: none;
}

/* ---- Story ---- */
.wd-story {
  background: var(--wd-mist);
  text-align: center;
}

.wd-story .wd-heading {
  max-width: 14em;
  margin-left: auto;
  margin-right: auto;
}

.wd-story .wd-body {
  max-width: 36em;
  margin: 0 auto;
}

.wd-divider {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--wd-blush);
  margin: 0 auto 36px;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.wd-reveal.on .wd-divider {
  opacity: 1;
  transform: scaleX(1);
}

/* ---- Atmosphere full-bleed ---- */
.wd-atmosphere {
  position: relative;
  min-height: clamp(420px, 68vw, 640px);
  display: grid;
  place-items: end stretch;
  overflow: hidden;
  color: #fff;
}

.wd-atmosphere-bg {
  position: absolute;
  inset: 0;
}

.wd-atmosphere-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wd-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(44, 40, 36, 0.68) 100%);
  pointer-events: none;
}

.wd-atmosphere-copy {
  position: relative;
  z-index: 1;
  padding: 48px 28px 56px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.wd-atmosphere-copy p {
  font-size: clamp(18px, 2.8vw, 26px);
  letter-spacing: 0.14em;
  line-height: 1.9;
  font-weight: 700;
  max-width: 16em;
}

/* ---- Features ---- */
.wd-reasons {
  background: var(--wd-pearl);
}

.wd-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
  margin-top: 52px;
}

.wd-feature-photo {
  margin: 0 0 18px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #ddd;
  border-radius: var(--radius);
}

.wd-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transition: transform 1.1s var(--ease);
}

.wd-feature:hover .wd-feature-photo img {
  transform: scale(1.04);
}

.wd-feature h3 {
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  line-height: 1.6;
}

.wd-feature p {
  font-family: var(--wd-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: var(--wd-ink-soft);
}

/* ---- The Day (gallery + cinematic strip) ---- */
.wd-day {
  background:
    linear-gradient(180deg, #3a342f 0%, #322d28 42%, #2c2824 100%);
  color: #fff;
  padding-top: clamp(72px, 10vw, 120px);
  padding-bottom: 8px;
  position: relative;
}

.wd-day::before {
  content: "";
  position: absolute;
  left: 50%;
  top: clamp(28px, 4vw, 40px);
  width: min(120px, 30vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--wd-blush), transparent);
  opacity: 0.7;
  pointer-events: none;
}

.wd-day .wd-en {
  color: var(--wd-champagne);
}

.wd-day .wd-heading {
  color: #fff;
}

.wd-day .wd-body {
  color: rgba(255, 248, 242, 0.78);
}

.wd-day .wd-divider {
  background: var(--wd-blush);
  opacity: 0.85;
}

.wd-day-head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.wd-day-lead {
  max-width: 32em;
  margin: 0 auto;
}

.wd-day-stage {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 8px;
  padding: 0 8px;
  margin-bottom: 8px;
  align-items: stretch;
}

.wd-day-main,
.wd-day-side figure,
.wd-day-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #3a342f;
}

.wd-day-main {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
}

.wd-day-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 0;
  min-height: 100%;
}

.wd-day-side figure {
  border-radius: var(--radius);
  min-height: 0;
}

.wd-day-main img,
.wd-day-side img,
.wd-day-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transition: transform 1.2s var(--ease);
}

.wd-day-main:hover img,
.wd-day-side figure:hover img,
.wd-day-tile:hover img {
  transform: scale(1.04);
}

.wd-day-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 0;
  padding: 0 8px;
}

.wd-day-tile {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .wd-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  .wd-day-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .wd-feature-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .wd-day-stage {
    grid-template-columns: 1fr;
  }

  .wd-day-main {
    aspect-ratio: 16 / 10;
  }

  .wd-day-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    height: auto;
    min-height: 0;
  }

  .wd-day-side figure {
    aspect-ratio: 16 / 10;
  }
}

/* ---- Plan / Price ---- */
.wd-plan {
  background: var(--wd-mist);
  text-align: center;
}

.wd-plan-panel {
  position: relative;
  margin-top: 52px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  isolation: isolate;
}

.wd-plan-panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wd-plan-panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
}

.wd-plan-panel-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      165deg,
      rgba(44, 40, 36, 0.78) 0%,
      rgba(58, 52, 47, 0.68) 45%,
      rgba(44, 40, 36, 0.82) 100%
    );
}

.wd-plan-panel-inner {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 7vw, 72px) clamp(24px, 5vw, 56px);
}

.wd-plan-label {
  font-family: var(--wd-serif);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: rgba(184, 149, 142, 0.95);
  margin-bottom: 14px;
}

.wd-plan-name {
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 28px;
  color: #fff;
}

.wd-price {
  font-family: var(--wd-serif);
  font-size: clamp(44px, 7.5vw, 68px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 12px;
  color: #fff;
}

.wd-price small {
  font-family: var(--wd-sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.wd-price-note {
  font-family: var(--wd-sans);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.wd-includes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
}

.wd-include {
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.wd-include:last-child {
  border-right: none;
}

.wd-include h4 {
  font-family: var(--wd-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(184, 149, 142, 0.95);
  margin-bottom: 12px;
}

.wd-include p {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 700px) {
  .wd-includes {
    grid-template-columns: 1fr;
  }

  .wd-include {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 22px 4px;
  }

  .wd-include:last-child {
    border-bottom: none;
  }
}

/* ---- Scene split ---- */
.wd-scene {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: clamp(480px, 70vw, 620px);
  background: var(--wd-ink);
  color: #fff;
}

.wd-scene-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.wd-scene-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wd-scene-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
}

.wd-scene-copy .wd-en {
  color: rgba(184, 149, 142, 0.9);
}

.wd-scene-copy .wd-heading {
  color: #fff;
}

.wd-scene-copy .wd-body {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 2.2;
}

@media (max-width: 860px) {
  .wd-scene {
    grid-template-columns: 1fr;
  }

  .wd-scene-visual {
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }
}

/* ---- CTA ---- */
.wd-cta {
  position: relative;
  padding: clamp(96px, 14vw, 140px) 28px;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.wd-cta-bg {
  position: absolute;
  inset: 0;
}

.wd-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.wd-cta-veil {
  position: absolute;
  inset: 0;
  background: rgba(44, 40, 36, 0.52);
}

.wd-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.wd-cta .wd-heading {
  margin-bottom: 18px;
}

.wd-cta .wd-body {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 48px;
  font-size: 15px;
}

.wd-btn {
  display: inline-block;
  font-family: var(--wd-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  margin: 8px 0 12px;
  padding: 20px 68px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.wd-btn:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.wd-cta-sub {
  margin-top: 22px;
  font-family: var(--wd-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.wd-cta-sub a {
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.wd-cta-sub a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .wd-hero-bg img,
  .wd-hero-brand,
  .wd-hero-en,
  .wd-hero-title,
  .wd-hero-lead,
  .wd-hero-cta {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
